:root {
  --grey-border: #bcb8d0;
  --table-header: #f9f9fa;
  --background-highlighted: #dfe1fa;
  --royal-blue: #2f24a7;
  --dark-grey: #797979;
  --error-red: #d82626;
  --black: #1b1b1b;
  --text-grey: var(--grey-disabled);
  --highlighted-background: #f5f5fa;
  --upload-purple: #f7f5fa;
  --white: #fff;
  --grey-disabled: #ececec;
  --green: #229335;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.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;
  }
}

a {
  text-decoration: none;
}

.section_infringe {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.body {
  padding-top: 0;
  padding-bottom: 40px;
  font-family: Rubik, sans-serif;
}

.wrapper-width-720px {
  border: .5px solid var(--grey-border);
  border-radius: 4px;
  max-width: 720px;
}

.wrapper-width-720px.small {
  max-width: 720px;
}

.wrapper-width-720px.background-white {
  background-color: var(--table-header);
  width: 720px;
}

.step-header {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  padding: 16px 24px;
  display: flex;
}

.step-content-wrapper {
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
}

.icon-medium {
  border-radius: 4px;
  padding: 8px;
}

.icon-medium._32px {
  max-width: 32px;
  padding: 0;
}

.text-wrapper {
  flex: 0 auto;
}

.text-wrapper.flex {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.text-wrapper.max-width {
  max-width: 700px;
}

.text-wrapper.width-50 {
  min-width: 50%;
  max-width: 50%;
}

.text-medium {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.text-small.highlighted {
  box-sizing: border-box;
  aspect-ratio: auto;
  background-color: var(--background-highlighted);
  color: var(--royal-blue);
  object-fit: fill;
  border-radius: 20px;
  padding: 3px 10px;
  display: inline-block;
}

.text-small.margin-bottom-16px {
  margin-bottom: 16px;
}

.text-small.margin-bottom-16px.is-grey {
  color: var(--dark-grey);
}

.text-small._300 {
  color: var(--dark-grey);
  padding-bottom: 0;
  font-weight: 300;
}

.text-small._300.error {
  color: var(--error-red);
  padding-bottom: 0;
}

.text-small._300.black {
  color: var(--black);
  cursor: auto;
  line-height: 22px;
}

.text-small._300.black.link {
  cursor: pointer;
}

.text-small._300.black.pointer {
  text-transform: none;
  cursor: pointer;
  line-height: 24px;
}

.text-small._500 {
  font-weight: 500;
}

.text-small._16px {
  font-size: 16px;
}

.text-small.is-grey {
  color: var(--dark-grey);
}

.text-small.link-text {
  color: var(--royal-blue);
}

.text-small.margin-top-6px {
  margin-top: 6px;
}

.text-small.purple, .text-small.is-purple {
  color: var(--royal-blue);
}

.spacer {
  justify-content: center;
  align-items: center;
  display: flex;
}

.spacer.small {
  height: 16px;
}

.spacer.tiny {
  height: 10px;
}

.step-line {
  border: .5px solid var(--grey-border);
  width: .5px;
  height: 40px;
}

.step-connector, .button-wrapper.flex {
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-primary {
  background-color: var(--royal-blue);
  color: var(--text-grey);
  border-radius: 4px;
  padding: 15px 16px;
  font-weight: 300;
  transition: all .35s;
}

.button-primary:hover {
  transform: scale(1.025);
}

.button-primary.download {
  background-image: url('../images/download.png');
  background-position: 4%;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-left: 30px;
}

.button-primary.is-white {
  border: .5px solid var(--dark-grey);
  background-color: var(--table-header);
  color: var(--black);
}

.button-primary.min-width {
  text-align: center;
  margin-bottom: 5px;
  display: block;
}

.button-primary.analysis {
  background-image: url('../images/Vector-2.png');
  background-position: 5%;
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 30px;
}

.button-primary.analysis-button {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.content-wrapper {
  border: .5px solid var(--grey-border);
  border-radius: 4px;
  padding: 16px;
}

.column-item {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  object-fit: fill;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.column-item.flex-horizontal {
  border: .5px solid var(--grey-border);
  border-radius: 4px;
  flex-flow: row;
  padding: 8px;
}

.column-item.highlighted {
  border: .5px solid var(--grey-border);
  background-color: var(--highlighted-background);
  border-radius: 4px;
  padding: 12px;
}

.wrapper-width-1100px {
  border: .5px solid var(--grey-border);
  border-radius: 4px;
  width: 1100px;
  padding-bottom: 0;
  transition: all .35s;
}

.columns {
  padding-left: 16px;
  padding-right: 16px;
}

.padding-global {
  padding-left: 24px;
  padding-right: 24px;
}

.icon-small._20px {
  max-width: 24px;
}

.text-field {
  color: var(--black);
  background-image: url('../images/web.png');
  background-position: 2%;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 4px;
  width: 100%;
  padding-left: 32px;
}

.form.flex {
  padding-bottom: 5px;
  display: flex;
}

.form-block {
  width: 100%;
  margin-bottom: 0;
}

.column-item-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.flex.horizontal {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.flex.horizontal.align-left {
  justify-content: flex-end;
  align-items: flex-start;
}

.horizontal-line {
  border: .5px solid var(--grey-border);
  min-width: 46%;
}

.flex-horizontal {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.flex-horizontal.center {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: center;
  align-items: center;
}

.flex-horizontal.center.padding-4px {
  padding-top: 4px;
  padding-bottom: 4px;
}

.flex-horizontal.space-between {
  flex-flow: wrap;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.flex-horizontal.align-left {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
}

.flex-horizontal.align-left.space-between {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 6px;
}

.flex-horizontal.align-left.width-100 {
  width: 1100px;
  max-width: 1100px;
}

.flex-horizontal.align-right {
  justify-content: flex-end;
  align-items: center;
}

.flex-horizontal.max-width-50 {
  min-width: 50%;
}

.flex-horizontal.align-right-bottom {
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 30%;
}

.page-padding {
  padding-left: 5%;
  padding-right: 5%;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.table2_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 0;
  position: relative;
}

.table2_top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  display: flex;
}

.margin-bottom, .margin-bottom.margin-xxlarge, .margin-bottom.margin-small, .margin-bottom.margin-medium, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.text-size-large {
  font-size: 1.25rem;
}

.table2_button-holder {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.button {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button.is-secondary {
  color: #0000;
  background-color: #0000;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.table2_content {
  flex-direction: column;
  overflow: auto;
}

.table2_header-row {
  background-color: var(--table-header);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr .5fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.table2_column {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  min-height: 5rem;
  padding: 1rem;
  display: flex;
}

.table2_column.is-header-column {
  min-height: auto;
  padding: .60rem 1rem;
  color: var(--dark-grey);
}

.table2_column.is-header-column.is-width-large.chart {
  max-width: 33.3%;
}

.table2_column.is-header-column.is-width-small {
  padding-left: 1rem;
}

.table2_column.is-header-column.is-width-small.estimate {
  max-width: 12rem;
}

.table2_column.is-header-column.is-width-small.estimate.chart {
  min-width: 96px;
  max-width: 33.3%;
  padding: 12px 16px;
}

.table2_column.is-header-column.is-width-small.score {
  min-width: 5rem;
  max-width: 10%;
}

.table2_column.is-header-column.is-width-medium {
  max-width: 30%;
}

.table2_column.is-header-column.is-width-medium.date {
  min-width: 6rem;
  max-width: 9.5rem;
}

.table2_column.is-width-large {
  min-width: 12rem;
  max-width: 16rem;
}

.table2_column.is-width-small {
  min-width: 6rem;
  max-width: 12rem;
}

.table2_column.is-width-medium {
  min-width: 8rem;
  max-width: 12rem;
}

.table2_column.is-width-medium.date {
  max-width: 9.5rem;
}

.table2_column.center {
  justify-content: center;
  align-items: center;
}

.table2_header-link {
  align-items: center;
  padding-right: 1rem;
  display: flex;
  position: relative;
}

.table2_header-link:hover {
  background-image: none;
  background-position: 100%;
  background-repeat: no-repeat;
}

.text-weight-semibold {
  color: var(--dark-grey);
  font-weight: 400;
}

.table2_column-button-wrapper {
  justify-content: center;
  align-items: center;
  width: 6rem;
  margin-left: auto;
  padding: 1.5rem 1rem;
  display: flex;
}

.table2_item {
  border-bottom: .5px solid var(--grey-border);
  cursor: pointer;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr .5fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.table2_item:nth-child(2n) {
  background-color: #0000;
}

.text-weight-medium {
  font-weight: 500;
}

.table2_link {
  font-weight: 600;
  text-decoration: none;
}

.table2_pagination {
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
  display: flex;
  position: relative;
  inset: auto 0% 0%;
}

.table2_button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  min-width: 6.5rem;
  min-height: 2.5rem;
  padding: .5rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
}

.table2_button.is-previous {
  justify-content: flex-start;
  margin-right: auto;
}

.table2_button.is-next {
  justify-content: flex-end;
  margin-left: auto;
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.table2_pagination-page-button-wrapper {
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  padding: 2px 16px;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
}

.table2_page-button {
  color: var(--black);
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: .5rem 1rem;
  font-size: 16px;
  transition: all .4s;
  display: flex;
}

.table2_page-button:hover {
  background-color: var(--royal-blue);
  color: var(--table-header);
}

.table2_page-button.w--current {
  border-color: #0000;
}

.spacer-medium {
  height: 40px;
}

.link-block {
  cursor: pointer;
}

.checkbox-label {
  display: none;
}

.checkbox {
  border: 1px solid var(--dark-grey);
  padding: 6px;
}

.checkbox.w--redirected-checked {
  background-color: var(--royal-blue);
}

.image {
  width: 32px;
}

.text-input_padding-left {
  color: var(--black);
  background-image: url('../images/Vector-1.png');
  background-position: 1.5%;
  background-repeat: no-repeat;
  background-size: 14px;
  border-radius: 4px;
  padding: 20px 20px 20px 30px;
}

.image-2 {
  width: 34px;
}

.image-3 {
  width: 54px;
}

.upload-link, .chev-pagination {
  cursor: pointer;
}

.chev-pagination:hover {
  transform: scale(1.05);
}

.product-modal {
  z-index: 1;
  border: 1px solid var(--grey-border);
  background-color: var(--highlighted-background);
  border-radius: 4px;
  width: 520px;
  max-width: 520px;
  min-height: 900px;
  max-height: 1000px;
  padding: 24px;
  display: none;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: auto;
  box-shadow: 0 2px 5px #0003;
}

.flex-vertical {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  display: flex;
}

.flex-vertical._24px-gap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.spacer-small {
  height: 16px;
}

.text-block {
  color: var(--error-red);
}

.text-block.success-green {
  color: #2bb110;
}

.claim-item {
  border-bottom: .5px solid var(--grey-border);
  min-height: 106px;
  display: flex;
}

.claim-item_cell {
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 96px;
  max-width: 33.3%;
  min-height: 100%;
  padding: 12px 16px;
  display: flex;
}

.claim-item_cell.score {
  max-width: 10%;
}

.navbar-container {
  max-width: 1240px;
  margin-bottom: 32px;
  padding: 16px 20px;
}

.navbar-wrapper {
  border: .5px solid var(--grey-border);
  border-radius: 4px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  display: flex;
}

.text-block-2 {
  background-color: var(--royal-blue);
  color: var(--table-header);
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 300;
}

.navbar_highlight_wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  inset: 0% 0% auto auto;
}

.overlay {
  z-index: 1000;
  background-color: #0303034a;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  padding-top: 92px;
  display: flex;
  justify-content: center;
  position: fixed;
  inset: 0%;
}

.upload-modal-wrapper {
  width: 720px;
}

.padding-standard {
  padding: 24px;
}

.padding-standard.upload-field {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--royal-blue);
  background-color: var(--upload-purple);
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.file-item_list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.file-item {
  border: 1px solid var(--grey-border);
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  display: flex;
}

.image-4 {
  width: 22px;
}

.image-5 {
  width: 24px;
}

.dropdown {
  transition: all .2s;
}

.select2_component {
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
  display: flex;
}

.select2_dropdown {
  margin-left: 0;
  margin-right: 0;
}

.select2_toggle {
  grid-column-gap: .5rem;
  border: 1px solid var(--royal-blue);
  background-color: #fffefe;
  border-radius: 4px;
  align-items: center;
  width: 200px;
  padding: .5rem 1rem;
  display: flex;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.select2_dropdown-list {
  display: block;
}

.select2_dropdown-list.w--open {
  border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  margin-top: .5rem;
  padding: .5rem;
}

.select2_field {
  margin-bottom: 0;
  display: none;
}

.select2_dropdown-link {
  padding: .5rem;
}

.select2_dropdown-link.w--current {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
}

.dropdown-toggle {
  z-index: 1;
  background-color: var(--white);
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  padding: 9px;
}

.dropdown-list {
  border-right: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  border-left: 1px solid var(--grey-border);
  background-color: var(--white);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  display: none;
  overflow: hidden;
}

.dropdown-link {
  transition: all .2s;
}

.dropdown-link:hover {
  background-color: var(--background-highlighted);
  transform: scale(1.02);
}

.dropdown-2 {
  width: 100%;
}

.button-loader_wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.carousel-button {
  background-color: var(--royal-blue);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
}

.carousel-button:hover {
  opacity: .9;
  transform: scale(1.04);
}

.image-6 {
  width: 12px;
}

.next-button-image {
  width: 10px;
}

.section_gallery14 {
  background-color: var(--\<unknown\|relume-variable-background-color-1\>);
  color: var(--\<unknown\|relume-variable-text-color-1\>);
  overflow: hidden;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.text-align-center {
  text-align: center;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-size-medium {
  font-size: 1.125rem;
}

.gallery14_slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 4rem;
}

.gallery14_mask {
  overflow: visible;
}

.gallery14_slide {
  padding-left: 1rem;
  padding-right: 1rem;
}

.gallery14_image-wrapper {
  border-radius: 0;
  width: 100%;
  overflow: hidden;
}

.gallery14_image-wrapper:focus {
  opacity: .5;
}

.gallery14_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slider-arrow {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--royal-blue);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.slider-arrow.is-centre-previous {
  bottom: 4rem;
}

.slider-arrow.is-centre-previous.hide-mobile-landscape {
  background-color: var(--royal-blue);
}

.slider-arrow.is-centre-next {
  bottom: 4rem;
}

.slider-arrow.is-bottom-previous {
  inset: auto 4rem 0% auto;
}

.slider-arrow.is-bottom-next {
  inset: auto 0% 0% auto;
}

.slider-arrow-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.gallery14_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
}

.section_testimonial7 {
  background-color: var(--\<unknown\|relume-variable-background-color-1\>);
}

.testimonial7_slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 4rem;
}

.testimonial7_slide {
  padding-left: 4rem;
  padding-right: 4rem;
}

.testimonial7_content {
  text-align: center;
  max-width: 48rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.testimonial7_logo {
  max-height: 3.5rem;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.margin-top, .margin-top.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-xxlarge, .margin-top.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.testimonial7_client-image {
  object-fit: cover;
  border-radius: 100%;
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  min-height: 4rem;
}

.testimonial7_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
}

.section_team9 {
  background-color: var(--\<unknown\|relume-variable-background-color-1\>);
  color: var(--\<unknown\|relume-variable-text-color-1\>);
  overflow: hidden;
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.team9_slider {
  background-color: #0000;
  height: auto;
  padding-bottom: 6rem;
  position: relative;
}

.team9_mask {
  width: 33.33%;
  overflow: visible;
}

.team9_slide {
  padding-right: 3rem;
}

.team9_image {
  object-fit: cover;
  border-radius: 100%;
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  min-height: 5rem;
}

.team9_social {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: flex-start;
  display: flex;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.team9_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.carousel_wrapper {
  justify-content: center;
  align-items: center;
  width: 100vw;
  display: flex;
  position: relative;
}

.segmented-chart_wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--white);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  overflow: visible;
}

.segmented-chart_header {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.max-width-1600px {
  max-width: 1600px;
  padding-bottom: 60px;
  overflow: visible;
}

.segemented-chart_item {
  border: .5px solid var(--grey-border);
  border-radius: 4px;
}

.infringement_wrapper {
  display: block;
}

.icon-medium-40px {
  max-width: 40px;
}

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

.segment-grid._2-rows {
  grid-template-rows: auto auto;
}

.infringement-grid-item {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 8px;
  display: flex;
}


.spacer-tiny {
  height: 8px;
}

.link {
  cursor: pointer;
  transition: all .3s;
}

.link:hover {
  opacity: .9;
  transform: scale(1.01);
}

.overflow-scroller {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  overflow: auto;
}

.monitor-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 230px;
  display: flex;
}

.image-7 {
  width: 24px;
}

.monitor-list {
  border: .5px solid var(--grey-border);
  background-color: var(--white);
  border-radius: 4px;
  width: 255px;
  margin-top: 24px;
  margin-right: 0;
  padding-top: 0;
  display: none;
  left: -30px;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.monitor_item {
  cursor: pointer;
  padding: 16px;
  transition: all .2s;
}

.monitor_item:hover {
  background-color: var(--background-highlighted);
  transform: scale(1.005);
}

.bold-text {
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .table2_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .table2_header-row, .table2_item {
    min-width: 72rem;
  }

  .column {
    display: none;
  }

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .gallery14_image-wrapper {
    padding-top: 66.66%;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .team9_slider {
    padding-left: 0;
    padding-right: 0;
  }

  .team9_mask {
    width: 50%;
  }

  .team9_slide {
    padding-right: 2rem;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .table2_component {
    grid-row-gap: 3rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .table2_pagination-page-button-wrapper {
    display: none;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .gallery14_slider {
    padding-bottom: 3rem;
  }

  .gallery14_slide {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .testimonial7_slider {
    padding-bottom: 3rem;
  }

  .testimonial7_slide {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .team9_mask {
    width: 80%;
  }

  .team9_slide {
    padding-right: 1.5rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 479px) {
  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .table2_component {
    grid-template-columns: 1fr;
  }

  .table2_top {
    flex-direction: column;
    align-items: flex-start;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .team9_mask {
    width: 95%;
  }
}

#w-node-_92d3ce8d-3ac9-c73d-71e6-0543f3dffa0a-0217b4b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

.is-hidden {
display: none;
}

#productModalExit {
  cursor: pointer;
}

.is-disabled {
  background-color: #ececec;
  cursor: not-allowed;
  color: black;
  pointer-events: none; 
  opacity: 0.8; 
}

.case-name {
  color: #1c1b1b;
  padding-bottom: 0;
  font-weight: 500;
}

.claim-segment_cell {
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  width: 33.3%;
  min-height: 100%;
  padding: 12px 16px;
  display: flex;
}

#claimHeader, #productHeader, #reasoningHeader {
min-width: 33.3%;
}