/* variables */
/* catalog categories */
/* press review categories */
/* industries */
/* fonts */
/* mixins */
.deepLearningWrapper .techInfo {
  width: 100%;
}
.deepLearningWrapper .tech-info--content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.deepLearningWrapper .tech-info--sidebar {
  display: none;
}

.deepLearning--wrap {
  padding: 0 10px;
}

.deeplearning--row {
  padding: 40px 0;
}

.custom--btn {
  display: inline-block;
  font-size: 18px;
  padding: 14px 30px;
}

.deepLearning--intro__txt {
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .deepLearning--intro__txt {
    max-width: 600px;
    margin: 0 auto 40px auto;
  }
}
.deepLearning--intro__txt h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: bold;
  color: #444;
}
.deepLearning--intro__txt p + p {
  margin-top: 20px;
}

.deepLearning--key {
  background: #f0f0f0;
  padding: 40px;
}

h2.deepLearning--title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: bold;
}

.deepLearning--key__txt {
  display: flex;
  flex-wrap: wrap;
}

.deepLearning--key__item {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .deepLearning--key__item {
    width: 33%;
  }
}

.deepLearning--key__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
}
.deepLearning--key__icon svg {
  width: 100%;
  height: 100%;
}

.deepLearning--key__desc {
  text-align: center;
}
.deepLearning--key__desc h3 {
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #444;
  font-size: 13px;
}
.deepLearning--key__desc h4 {
  color: #101010;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}
.deepLearning--key__desc p {
  line-height: 24px;
  font-size: 13px;
}

.deepLearning--training__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deepLearning--training__item {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .deepLearning--training__item {
    width: 50%;
  }
}
.deepLearning--training__item ul {
  padding-left: 17px;
}
.deepLearning--training__item ul li {
  list-style: disc;
}
.deepLearning--training__item h3 {
  color: #101010;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
.deepLearning--training__item img {
  max-width: 100%;
}

.deeplearning--bubble {
  padding: 20px;
  background: #f0f0f0;
  border-radius: 8px;
  max-width: 600px;
  margin: 1rem auto;
}
.deeplearning--bubble h3 {
  color: #101010;
  margin-bottom: 20px;
}
.deeplearning--bubble p {
  font-size: 13px;
  line-height: 24px;
}

.deepLearning--feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deepLearning--feature__item {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .deepLearning--feature__item {
    width: 50%;
  }
}
.deepLearning--feature__item h3 {
  font-size: 20px;
  font-weight: bold;
}

.deepLearning--feature__txt {
  margin-bottom: 20px;
}
.deepLearning--feature__txt h3 {
  color: #101010;
  margin-bottom: 20px;
}

.deepLearning--feature__img img {
  max-width: 100%;
  height: auto;
}

.btn-group {
  margin-bottom: 30px;
}
.btn-group:last-child {
  margin-bottom: 0px;
}

.page-header {
  margin-bottom: 20px;
}

.tab-anchors {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 1399px) {
  .tab-anchors {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .tab-anchors.open .tab-anchor.active:after {
    transform: translateY(-50%) rotate(45deg);
  }
  .tab-anchors.open .tab-anchor:not(.active) {
    max-height: 500px;
    transition: max-height 1000ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}

.tab-anchor {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc((100% - 5px) / 6);
  background-color: #F3F3F3;
  cursor: pointer;
  transition: background-color 250ms cubic-bezier(0.23, 1, 0.32, 1);
  order: 5;
}
.tab-anchor.active .tab-anchor--icon > svg {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.tab-anchor.active .tab-anchor--text {
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .tab-anchor {
    flex-basis: 100%;
  }
  .tab-anchor.active {
    order: 0;
  }
  .tab-anchor.active::after {
    content: "+";
    display: block;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 1.75rem;
    line-height: 1;
    transition: transform 250ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .tab-anchor:not(.active) {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height 125ms cubic-bezier(0, 1, 0, 1);
  }
}

body:not(.touch-device) .tab-anchor:hover .tab-anchor--icon > svg {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
body:not(.touch-device) .tab-anchor:hover .tab-anchor--text {
  color: #FFFFFF;
}

.tab-anchor--icon {
  margin-right: 10px;
  pointer-events: none;
  padding: 14px 0 14px 15px;
}
.tab-anchor--icon > svg {
  display: block;
  fill: #101010;
  stroke: #101010;
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}

.tab-anchor--text {
  padding: 14px 30px 14px 0;
  font-weight: 700;
  color: #101010;
  pointer-events: none;
  white-space: nowrap;
}

.tabs {
  margin-bottom: 50px;
}

.tab {
  display: none;
  padding: 40px 0px;
}
.tab.active {
  display: block;
}
.tab .img-container {
  padding-top: 10px;
}

.heading--series {
  color: #101010;
  font-weight: 400;
  padding-top: 10px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #101010;
}

.download-groups {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.download-group {
  width: calc((100% - 90px) / 2);
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .download-group {
    width: calc((100% - 45px) / 2);
  }
}
@media (max-width: 1023px) {
  .download-group {
    width: 100%;
  }
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0px;
  border-bottom: 1px solid #D6DADB;
}

.download-item--text {
  font-size: 0.875rem;
  padding-right: 15px;
}

.download-item--btn {
  width: fit-content;
  font-size: 0.65rem;
  padding: 4px 12px;
}
.download-item--btn .btn--title {
  font-weight: 400;
}

iframe.horus--helpTab {
  min-height: 700px;
}

.series-hero {
  width: 100px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .series-hero {
    display: none;
  }
}
@media (max-width: 767px) {
  .series-hero {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .series-hero--container {
    display: flex;
  }
}

@media (min-width: 768px) {
  .series-hero--swiper {
    height: 357px;
  }
  .series-hero--swiper[data-slides="1"] {
    height: 78px;
  }
  .series-hero--swiper[data-slides="2"] {
    height: 171px;
  }
  .series-hero--swiper[data-slides="3"] {
    height: 264px;
  }
}
@media (max-width: 767px) {
  .series-hero--swiper {
    width: calc(100% - 50px);
  }
}

.series-hero--swiperButton:not(.swiper-button-disabled) {
  cursor: pointer;
}
.series-hero--swiperButton.swiper-button-disabled {
  pointer-events: none;
}
.series-hero--swiperButton.swiper-button-disabled > svg {
  fill: #CCCCCC;
}
.series-hero--swiperButton.swiper-button-lock {
  display: none !important;
}
@media (min-width: 768px) {
  .series-hero--swiperButton {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .series-hero--swiperButton {
    display: flex;
    align-items: center;
  }
  .series-hero--swiperButton.swiper-button-lock + .series-hero--swiper {
    width: 100%;
  }
  .series-hero--swiperButton > svg {
    transform: rotate(-90deg);
  }
}

body:not(.touch-device) .series-hero--swiperButton:hover > svg {
  fill: #101010;
}

@media (min-width: 768px) {
  .series-hero--swiperButtonPrev {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .series-hero--swiperButtonPrev {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .series-hero--swiperButtonNext {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .series-hero--swiperButtonNext {
    justify-content: flex-end;
  }
}

.series-hero--swiperSlide {
  display: block;
  margin-bottom: 15px;
  border: 1px solid #F3F3F3;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: border 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.series-hero--swiperSlide:last-child {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .series-hero--swiperSlide {
    margin-bottom: 0px;
  }
}

body:not(.touch-device) .series-hero--swiperSlide:hover {
  border: 1px solid #101010;
}

.series-hero--swiperSlideImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-top {
  display: flex;
  align-items: stretch;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .overview-top {
    flex-wrap: wrap;
  }
}

.overview-top--item {
  margin-bottom: 25px;
}

.series--gallery {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 50%;
}
@media (max-width: 1399px) {
  .series--gallery {
    flex-basis: 80%;
  }
}
@media (max-width: 1199px) {
  .series--gallery {
    flex-basis: 100%;
  }
}
@media (max-width: 767px) {
  .series--gallery {
    display: block;
    width: 100%;
  }
}

.series--galleryImgWrap {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(80% - 100px);
  margin: 0 5% 0 15%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .series--galleryImgWrap {
    flex-basis: 50%;
    margin: 0 12.5% 0 12.5%;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .series--galleryImgWrap {
    flex-basis: 50%;
    margin: 0 21.5% 0 3.5%;
  }
}
@media (max-width: 767px) {
  .series--galleryImgWrap {
    width: 100%;
    margin: 0 0 10px 0;
    margin-bottom: 10px;
  }
}

.series--galleryImg {
  display: block;
  width: 100%;
  height: auto;
}

.series--rtImg {
  margin-bottom: 10px;
}

.info-items {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 11.31%;
  padding-right: 25px;
}
@media (max-width: 1399px) {
  .info-items {
    flex-basis: 20%;
    padding-right: 0px;
  }
}
@media (max-width: 1023px) {
  .info-items {
    flex-basis: 100%;
  }
}

.series--overview {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 38.69%;
}
@media (max-width: 1399px) {
  .series--overview {
    flex-basis: 80%;
  }
}
@media (max-width: 1023px) {
  .series--overview {
    flex-basis: 100%;
  }
}

.cta-items {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: flex-end;
}
.cta-items .cta-item {
  min-width: 160px;
  margin-right: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .cta-items {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .cta-items {
    justify-content: flex-start;
  }
}

.series--advantages {
  padding-bottom: 20px;
  border-bottom: 1px solid #D6DADB;
}
.series--advantages ul, .series--advantages ol {
  padding-left: 0;
  margin-left: 0;
  list-style-type: none;
}
.series--advantages li {
  margin-bottom: 25px;
}
.series--advantages li:last-child {
  margin-bottom: 0px;
}

.shoutbox {
  position: relative;
  background-color: #101010;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.shoutbox:last-child {
  margin-bottom: 0px;
}
.shoutbox:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -20px;
  right: 0;
  border-top: 20px solid #101010;
  border-left: 20px solid transparent;
}

.shoutbox--text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 20px 30px 20px;
}
.shoutbox--text h1, .shoutbox--text h2, .shoutbox--text h3, .shoutbox--text h4, .shoutbox--text h5, .shoutbox--text h6 {
  font-weight: 700;
  margin-bottom: 10px;
}
.shoutbox--text h1:last-child, .shoutbox--text h2:last-child, .shoutbox--text h3:last-child, .shoutbox--text h4:last-child, .shoutbox--text h5:last-child, .shoutbox--text h6:last-child {
  margin-bottom: 0;
}
.shoutbox--text h3 {
  display: block;
  text-transform: uppercase;
  padding: 5px 0px 15px 20px;
  margin-left: -20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #FFFFFF;
}
.shoutbox--text h3:last-child {
  margin-bottom: 0;
}
.shoutbox--text p {
  width: 100%;
  margin-bottom: 20px;
}
.shoutbox--text p:last-child {
  margin-bottom: 0;
}
.shoutbox--text a {
  color: #FFFFFF;
  text-decoration: underline;
}

.overview-bottom {
  display: flex;
  align-items: flex-start;
  margin-bottom: 75px;
}
.overview-bottom:not(.justify-center) {
  justify-content: space-between;
}
.overview-bottom .heading--overview {
  margin-bottom: 30px;
}
.overview-bottom .heading--techInfoContent:first-child {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .overview-bottom {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}

.overview-bottom--item {
  padding-top: 10px;
  border-top: 1px solid #D6DADB;
}
@media (max-width: 1199px) {
  .overview-bottom--item {
    margin-bottom: 50px;
  }
}

.series--industries {
  width: 37.5%;
}
.series--industries .btn-group--item {
  margin-bottom: 20px;
}
.series--industries .btn-group--item:last-child {
  margin-bottom: 0px;
}
@media (max-width: 1199px) {
  .series--industries {
    width: 100%;
  }
}

.btn__imagebg .btn--icon > svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.5;
  fill: #101010;
  stroke: #101010;
}
.btn__imagebg .btn--title {
  font-size: 1.4375rem;
  line-height: 1;
  margin-bottom: 7px;
}
.btn__imagebg .btn--title:last-child {
  margin-bottom: 0;
}
.btn__imagebg .btn--subTitle {
  font-size: 0.8125rem;
  font-style: italic;
  letter-spacing: 0.01rem;
}
@media (max-width: 479px) {
  .btn__imagebg .btn--title {
    font-size: 1rem;
  }
}

.series--applications {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 59.88%;
}
.series--applications > * {
  width: 100%;
}
@media (max-width: 1199px) {
  .series--applications {
    width: 100%;
  }
}

.overview-top .heading--overview {
  margin-bottom: 0px;
}

.accordion-items {
  margin-bottom: 25px;
}
.accordion-items:last-child {
  margin-bottom: 0px;
}

.accordion--toggleCheck {
  display: none;
}
.accordion--toggleCheck:first-child + .accordion--label .accordion--labelText {
  border-top: none;
}
.accordion--toggleCheck:checked + .accordion--label + .accordion--content {
  max-height: 5000px;
  transition: all 1000ms ease-in-out;
}
.accordion--toggleCheck:checked + .accordion--label .accordion--labelText:after {
  content: "-";
}

.accordion--label {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.accordion--label.no-click {
  pointer-events: none;
}
.accordion--label:not(.no-click) .accordion--labelText::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 15px;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
}

.accordion--labelImgWrap {
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 20px;
}

.accordion--labelImg {
  width: 100%;
  height: auto;
}

.accordion--labelText {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  color: #0295D4;
  font-weight: 700;
  border-top: 1px solid #D6DADB;
  padding: 20px 40px 20px 0px;
}

.accordion--content {
  max-height: 0;
  padding-left: 50px;
  overflow: hidden;
  transition: all 250ms cubic-bezier(0, 1, 0, 1);
}
.accordion--content .rich-text {
  margin-bottom: 20px;
}

.overview-bottom {
  display: block;
}

.boxes {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.box--img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.boxes--info {
  margin-top: -90px;
  margin-left: -60px;
}
.boxes--info .box {
  width: calc((100% - 240px) / 4);
  margin: 90px 0 0 60px;
}
.boxes--info .box--imgWrap {
  margin-bottom: 30px;
}
.boxes--info .box--title {
  color: #0295D4;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 1599px) {
  .boxes--info {
    margin-top: -60px;
    margin-left: -30px;
  }
  .boxes--info .box {
    width: calc((100% - 120px) / 4);
    margin: 60px 0 0 30px;
  }
}
@media (max-width: 1023px) {
  .boxes--info .box {
    width: calc((100% - 60px) / 2);
  }
}
@media (max-width: 599px) {
  .boxes--info {
    margin-top: 0px;
    margin-left: 0px;
  }
  .boxes--info .box {
    width: 100%;
    margin: 0 0 60px 0;
  }
}

.boxes--gallery {
  margin-top: -60px;
  margin-left: -30px;
}
.boxes--gallery .box {
  width: calc((100% - 180px) / 6);
  margin: 60px 0 0 30px;
}
.boxes--gallery .box--imgWrap {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #D6DADB;
}
.boxes--gallery .box--title {
  font-size: 0.875rem;
}
@media (max-width: 1199px) {
  .boxes--gallery .box {
    width: calc((100% - 120px) / 4);
  }
}
@media (max-width: 1023px) {
  .boxes--gallery .box {
    width: calc((100% - 90px) / 3);
  }
}
@media (max-width: 599px) {
  .boxes--gallery {
    margin-top: 0px;
    margin-left: 0px;
  }
  .boxes--gallery .box {
    width: 100%;
    margin: 0 0 60px 0;
  }
}

.boxes--features {
  margin-top: -10px;
  margin-left: -10px;
}
.boxes--features .box {
  margin: 10px 0 0 10px;
}
.boxes--features .box--imgWrap {
  display: block;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: all 250ms cubic-bezier(0, 1, 0, 1);
  text-align: center;
}
.boxes--features .box--imgWrap.selected {
  border: 1px solid #0295D4;
}
.boxes--features .box--img {
  width: 60px;
  height: 60px;
}

.overview-bottom--itemBuilder {
  max-width: 900px;
  margin: 0 auto;
}

.series--industries {
  width: 100%;
  margin-bottom: 45px;
}
.series--industries .btn-group--items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}
.series--industries .btn-group--item:not(.btn--roundIcon) {
  width: calc((100% - 60px) / 3);
}
.series--industries .btn-group--item.btn--roundIcon {
  width: 100%;
}
@media (max-width: 1399px) {
  .series--industries .btn-group--item:not(.btn--roundIcon) {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 1023px) {
  .series--industries .btn-group--item:not(.btn--roundIcon) {
    width: 100%;
  }
}

.shipping {
  padding-top: 10px;
  border-top: 1px solid #D6DADB;
  line-height: 1.375;
}
.shipping a {
  color: #101010;
  text-decoration: underline;
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
}
.shipping main p + p {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .shipping main {
    columns: 2;
    column-gap: 40px;
    max-width: 1100px;
  }
}
.shipping h3 {
  display: block;
  width: 100%;
  color: #999999;
  font-weight: 700;
  margin-bottom: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.shipping h3:last-child {
  margin-bottom: 0px;
}

.tech-info {
  display: flex;
}

.tech-info--sidebar {
  position: relative;
  width: 21.875%;
  padding-right: 90px;
}
@media (max-width: 1399px) {
  .tech-info--sidebar {
    padding-right: 45px;
  }
}
@media (max-width: 1023px) {
  .tech-info--sidebar {
    display: none;
  }
}

.tech-info--nav {
  position: sticky;
  top: 25px;
  left: 0;
}

.heading--techInfoNav {
  color: #101010;
  font-weight: 400;
  cursor: pointer;
}
.heading--techInfoNav.active {
  color: #999999;
  font-weight: 700;
}

.tech-info--content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 56.25%;
}
.tech-info--content > * {
  width: 100%;
}
@media (max-width: 1400px) {
  .tech-info--content {
    width: 78.125%;
  }
}
@media (max-width: 1023px) {
  .tech-info--content {
    width: 100%;
  }
}

.slider {
  padding-top: 10px;
}

.slider--swiper {
  margin: 0 65px;
  width: calc(100% - 130px);
}

.swiper-is-loaded .slider--itemImage {
  object-position: center;
}

.related-seriesContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.related-seriesContainer:after {
  content: "";
  width: calc((100% - 180px) / 3);
}
@media (max-width: 1599px) {
  .related-seriesContainer:after {
    width: calc((100% - 90px) / 3);
  }
}
@media (max-width: 1399px) {
  .related-seriesContainer:after {
    width: calc((100% - 45px) / 2);
  }
}
@media (max-width: 1023px) {
  .related-seriesContainer:after {
    display: none;
  }
}

.related-seriesWrap {
  width: calc((100% - 180px) / 3);
  margin-bottom: 30px;
}
@media (max-width: 1599px) {
  .related-seriesWrap {
    width: calc((100% - 90px) / 3);
  }
}
@media (max-width: 1399px) {
  .related-seriesWrap {
    width: calc((100% - 45px) / 2);
  }
}
@media (max-width: 1023px) {
  .related-seriesWrap {
    width: 100%;
  }
}

.related-series {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  margin-bottom: 5px;
}
@media (max-width: 479px) {
  .related-series {
    display: block;
    padding: 20px 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D6DADB;
  }
  .related-series:last-child {
    border-bottom: none;
  }
}

.related-series--imgWrap {
  width: 115px;
  height: 60px;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 479px) {
  .related-series--imgWrap {
    margin: 0 auto 15px auto;
  }
}

.related-series--info {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 100%;
  color: #333333;
}

.related-series--title {
  transition: color 250ms cubic-bezier(0.23, 1, 0.32, 1);
  font-weight: 700;
  margin-bottom: 5px;
}

.related-series--subTitle {
  font-size: 0.875rem;
}

body:not(.touch-device) .related-series:hover .related-series--title {
  color: #101010;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.columns:after {
  content: "";
  width: calc((100% - 180px) / 3);
}
@media (max-width: 1599px) {
  .columns:after {
    width: calc((100% - 90px) / 3);
  }
}
@media (max-width: 1199px) {
  .columns:after {
    width: calc((100% - 45px) / 2);
  }
}
@media (max-width: 768px) {
  .columns:after {
    display: none;
  }
}

.column {
  width: calc((100% - 180px) / 3);
}
@media (max-width: 1599px) {
  .column {
    width: calc((100% - 90px) / 3);
  }
}
@media (max-width: 1199px) {
  .column {
    width: calc((100% - 45px) / 2);
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .column {
    width: 100%;
    margin-bottom: 50px;
  }
}

.column--downloads .download-group {
  width: 100%;
}

.tech-notes-wrap {
  position: relative;
  padding-top: 125px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #020202;
}
.tech-notes-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
.tech-notes-wrap > div {
  position: relative;
  z-index: 10;
}

.tech-notes--title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tech-notes--items {
  display: flex;
  flex-direction: column;
}

.tech-notes--item {
  font-size: 0.875rem;
  font-weight: 700;
  padding-top: 5px;
  padding-bottom: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.tech-notes--item:last-child {
  padding-bottom: 0px;
}
.tech-notes--item:hover {
  opacity: 0.85;
}

.series-videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 25px;
}
.series-videos > * {
  width: 100%;
}
.series-videos .img-container {
  display: block;
  width: calc((100% - 15px) / 2);
  padding: 0px;
  margin-bottom: 15px;
}
.series-videos .img-container--inner {
  display: block;
  height: 100%;
}
.series-videos .img-wrap {
  height: 100%;
  align-items: flex-end;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .series-videos .img-container {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .series-videos .img-container {
    width: 100%;
  }
}

.series-video {
  display: flex;
  align-items: flex-start;
  color: #101010;
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: color 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.series-video:last-child {
  margin-bottom: 0px;
}

body:not(.touch-device) .series-video:hover {
  color: #333333;
}

.series-video--icon {
  margin-right: 10px;
}
.series-video--icon svg {
  fill: #101010;
  stroke: #101010;
  stroke-width: 1;
}

.series-gallery--images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.series-gallery--images .img-container {
  display: block;
  width: calc((100% - 45px) / 4);
  padding: 0px;
  margin-bottom: 15px;
}
.series-gallery--images .img-container--inner {
  display: block;
  height: 100%;
}
.series-gallery--images .img-wrap {
  height: 100%;
  align-items: flex-end;
  transition: transform 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
@supports (object-fit: cover) {
  .series-gallery--images .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@supports (display: grid) {
  .series-gallery--images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
  }
  .series-gallery--images .img-container {
    width: 100%;
    margin-bottom: 0px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .series-gallery--images .img-container {
    width: calc((100% - 30px) / 3);
  }
  @supports (display: grid) {
    .series-gallery--images {
      grid-template-columns: 1fr 1fr 1fr;
    }
    .series-gallery--images .img-container {
      width: 100%;
    }
  }
}
@media (max-width: 767px) {
  .series-gallery--images .img-container {
    width: calc((100% - 15px) / 2);
    margin-bottom: 25px;
  }
  @supports (display: grid) {
    .series-gallery--images {
      grid-template-columns: 1fr 1fr;
      grid-row-gap: 25px;
    }
    .series-gallery--images .img-container {
      width: 100%;
      margin-bottom: 0px;
    }
  }
}

body:not(.touch-device) .series-gallery--images .img-wrap:hover {
  transform: scale(1.05);
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 25px;
}
.form.loading .loader {
  display: block;
}
.form.loading .form--group__submit {
  display: none;
}
.form.loading .form--submit {
  pointer-events: none;
}
.form.hide-personal-data .form--group__personalData {
  display: none;
}
.form .loader {
  display: none;
  margin: 0 auto;
}
.form .lds-default {
  transform: scale(0.5);
}

.form--group {
  width: 100%;
  margin-bottom: 20px;
}
.form--group.error .form--fieldMessages {
  display: block;
}
.form--group.error.valueMissing [data-error=value-missing] {
  display: block;
}
.form--group.error.typeMismatch [data-error=type-mismatch] {
  display: block;
}
.form--group.error.tooShort [data-error=too-short] {
  display: block;
}
.form--group.error.serverError [data-error=server-error] {
  display: block;
}

.form--group__checkbox {
  margin-bottom: 15px;
}
.form--group__checkbox .form--fieldWrap {
  flex-direction: column;
}
.form--group__checkbox .form--input {
  display: none;
}
.form--group__checkbox .form--input + .form--label {
  margin-bottom: 0;
}
.form--group__checkbox .form--input + .form--label .form--label__checkbox:after {
  content: "";
  width: 100%;
  height: 9px;
  position: absolute;
  top: 2px;
  left: 3px;
  border: 3px solid #101010;
  border-top: none;
  border-right: none;
  background: rgba(0, 0, 0, 0);
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.form--group__checkbox .form--input:checked + .form--label .form--label__checkbox:after {
  opacity: 1;
}
.form--group__checkbox .form--label > span {
  font-weight: 400;
  width: calc(100% - 30px);
}
.form--group__checkbox .form--label .form--label__checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-color: #F3F3F3;
}

.form--group__hidden {
  display: none;
}

.form--group__submit {
  padding-top: 25px;
}
.form--group__submit .form--fieldWrap {
  align-items: center;
}
.form--group__submit .form--submit {
  display: block;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 250px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.form--customerPortalGroup {
  display: flex;
  align-items: stretch;
  width: 100%;
  background-color: #232323;
  border-radius: 3px;
  color: #FFFFFF;
  padding: 25px 20px;
  margin-bottom: 25px;
}
.form--customerPortalGroup:hover {
  color: #FFFFFF;
}
.form--customerPortalGroup:hover .form--customerPortalIcon svg {
  transform: translateX(50%);
}

.form--customerPortalInfo {
  width: calc(100% - 75px);
  padding-right: 25%;
}
@media (max-width: 767px) {
  .form--customerPortalInfo {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}

.form--customerPortalTitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .form--customerPortalTitle {
    font-size: 1.25rem;
  }
}

.form--customerPortalText {
  font-size: 1.0625rem;
}

.form--customerPortalIcon {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 75px;
  padding-right: 15px;
  background-image: url("/assets/svg/customer-portal.svg");
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}
.form--customerPortalIcon svg {
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media (max-width: 767px) {
  .form--customerPortalIcon {
    display: none;
  }
}

.form--fieldWrap {
  display: flex;
  flex-direction: column-reverse;
}

.form--label {
  display: flex;
  cursor: pointer;
  margin-bottom: 7px;
  width: fit-content;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form--label.subtitle {
  flex-wrap: wrap;
}

.form--labelTitle {
  font-weight: 700;
}

.form--labelSubTitle {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  width: 100%;
  margin-top: 5px;
}

.form--input {
  width: 100%;
  height: 40px;
  padding: 10px 10px;
  border: 2px solid rgba(0, 0, 0, 0);
  background-color: #F3F3F3;
  outline: none;
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 1rem;
}
.form--input:focus {
  border-bottom: 2px solid #101010;
}
.form--input[type=file] {
  padding: 0;
  background-color: transparent;
}
.form--input[type=file]:focus {
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}

.form--select {
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0);
  background-color: #F3F3F3;
  outline: none;
  padding: 10px 15px;
  font-size: 1rem;
}
.form--select:focus {
  border: 2px solid #101010;
}

.form--textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
  border: 2px solid rgba(0, 0, 0, 0);
  background-color: #F3F3F3;
  outline: none;
  padding: 10px 15px;
  transition: border 500ms cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 1rem;
}
.form--textarea:focus {
  border-bottom: 2px solid #101010;
}

.form--fieldMessages {
  display: none;
}

.form--fieldMessage {
  display: none;
  color: #DD0000;
  font-size: 0.8125rem;
  font-style: italic;
  margin-top: 5px;
}

.form-background {
  background-color: #F3F3F3;
  border-radius: 5px;
}
.form-background .form--input, .form-background .form--select, .form-background .form--textarea {
  background-color: #FFFFFF;
}
.form-background .form--group__checkbox .form--label .form--label__checkbox {
  background-color: #FFFFFF;
}

.form--groupHalf {
  width: calc((100% - 10px) / 2);
}
@media (max-width: 767px) {
  .form--groupHalf {
    width: 100%;
  }
}

.form--groupThird {
  width: calc((100% - 20px) / 3);
}
@media (max-width: 767px) {
  .form--groupThird {
    width: 100%;
  }
}

.form--group__captcha {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 0px;
  text-align: center;
}

.form--field[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* form wrap */
.form-wrap .page-header--title {
  color: #333333 !important;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .form-wrap .page-header--title {
    text-align: left;
  }
}
.form-wrap .form {
  max-width: 800px;
  margin: 0 auto;
}

.form-wrap--info {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.0625rem;
}
@media (max-width: 767px) {
  .form-wrap--info {
    text-align: left;
  }
}

.oevis {
  /* overview tab - start */
  /* overview tab - end */
}
.oevis .page-header--title {
  color: #CFDF00;
}
.oevis .tab-anchor.active {
  background-color: #CFDF00;
}
.oevis .tab-anchor.active:after {
  color: #FFFFFF;
}
.oevis .tab-anchor.active .tab-anchor--icon > svg {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.oevis .tab-anchor.active .tab-anchor--text {
  color: #FFFFFF;
}
.oevis:not(.touch-device) .tab-anchor:hover {
  background-color: #CFDF00;
}
.oevis:not(.touch-device) .tab-anchor:hover .tab-anchor--icon > svg {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.oevis:not(.touch-device) .tab-anchor:hover .tab-anchor--text {
  color: #FFFFFF;
}
.oevis .series--advantages .rich-text--content strong, .oevis .series--advantages .rich-text--content b {
  color: #CFDF00;
}
.oevis:not(.touch-device) .series-hero--swiperButton:hover > svg {
  fill: #CFDF00;
}
.oevis .info-item--text {
  color: #CFDF00;
}
.oevis .shoutbox {
  background-color: #CFDF00;
  color: #FFFFFF;
}
.oevis .shoutbox:after {
  border-top-color: #CFDF00;
}
.oevis .shoutbox .shoutbox--text h3 {
  border-bottom: 1px solid #FFFFFF;
}
.oevis .tab-anchor {
  background: black;
}
.oevis .tab-anchor .tab-anchor--text {
  color: white;
}
.oevis .tab-anchor .tab-anchor--text .active {
  color: black;
}
.oevis .tab-anchors {
  gap: 0;
}

.tab-anchor--icon svg {
  stroke: white;
  fill: transparent;
}

.oevis .tab-anchor.active .tab-anchor--text {
  color: black;
}

.oevis:not(.touch-device) .tab-anchor:hover .tab-anchor--text {
  color: black;
}

.oevis .tab-anchor.active .tab-anchor--icon svg {
  stroke: black;
  fill: transparent;
}

.oevis:not(.touch-device) .tab-anchor:hover .tab-anchor--icon svg {
  stroke: black;
  fill: transparent;
}
