/* General styling */

.products-comp__container {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.products-comp__container {
  font-family: "Instrument Sans", Arial, sans-serif !important;
  font-size: 14px;
}

.products-comp__container p {
  color: #646464;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-size: 14px !important;
}

.divider {
  border: 2px solid var(--color-neutral200, #ebebeb);
  border-bottom: none;
  border-left: none;
  border-right: none;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.active {
  color: var(--primary) !important;
}

.hide {
  display: block !important;
}

.underline-dotted {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  cursor: pointer;
  padding-right: 0 !important;
  width: fit-content;
  margin-bottom: 3px;
}

.underline-dotted:hover .tooltip__text {
  visibility: visible;
}

/* Tooltip container */
.tooltip {
  position: initial;
  display: block;
  margin-left: 9px;
}

@media screen and (min-width: 1000px) {
  .tooltip {
    position: absolute;
    right: 25px;
  }
}

/* Tooltip text */
.tooltip .tooltip__text {
  visibility: hidden;
  width: 240px;
  background-color: #ffffff;
  color: #000000;
  text-align: left;
  padding: 14px;
  border-radius: 3px;
  box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
  z-index: 10;
  font-size: 12px;
  line-height: 1.4;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  bottom: 160%;
  left: 50%;
  margin-left: -213px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

/* Show the tooltip text when you mouse over the tooltip container */
.underline-dotted:hover .tooltip__text,
.tooltip:hover .tooltip__text,
.tooltip:hover .tooltip__arrow {
  visibility: visible;
}

/* tooltip arrow */

.tooltip .tooltip__text::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  right: 8%;
  margin-left: -14px;
  border-width: 7px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* Products comparison section */
.products-comp__mobile-header {
  padding: var(--mobile-padding);
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin: 16px auto 24px auto;
}

@media screen and (min-width: 1000px) {
  .products-comp__header {
    max-width: unset;
    margin: 32px auto 24px auto;
  }
}

.mobile__header,
.desktop__header {
  font-size: 36px;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 0.13px;
  margin-left: auto;
  margin-right: auto;
}

.desktop__header {
  display: none;
  text-align: left !important;
}

@media screen and (min-width: 1000px) {
  .desktop__header {
    display: block;
  }
}

@media screen and (min-width: 1000px) {
  .products-comp__mobile-header {
    display: none;
  }
}

.products-comp__mobile-header p,
.products-comp__desktop-header p {
  text-align: center;
  margin: 24px auto 0 auto;
  font-size: 20px;
  color: var(--darkgray);
}

.products-comp__header-icon {
  padding: 0 16px;
  margin-top: 32px;
  width: 180px;
  text-align: center;
}

.products-comp__header-icon img {
  width: 95px;
  height: 95px;
}

.products-comp__header-copy {
  padding: 0 16px;
}

.products-comp__container {
  max-width: 1188px;
  margin: 0 auto;
  width: 100%;
}

/* ---------------- */
/* Mobile view */
/* ---------------- */

.mobile {
  margin-bottom: 34px;
}

@media screen and (min-width: 1000px) {
  .mobile {
    display: none;
  }
}

/* Product tabs */
.mobile__product-tabs {
  display: flex;
  flex: 1 0 auto;
  max-width: 360px;
  margin: 0 auto;
  padding: var(--mobile-padding);
}

.mobile__product-item {
  font-family: "Lato" !important;
  border: 2px solid #eeeeee;
  background-color: white;
  height: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.mobile__product-item:hover {
  background-color: #f4f4f4;
  cursor: pointer;
}

.m-active {
  background-color: #f4f4f4;
}

.mobile__product-item:nth-of-type(1) {
  border-radius: 8px 0 0 8px;
}

.mobile__product-item:nth-of-type(2) {
  border-left: none;
  border-right: none;
}

.mobile__product-item:nth-of-type(3) {
  border-radius: 0 8px 8px 0;
}

.mobile__product-item-copy h3 {
  font-size: 18px;
  font-weight: 500;
}

/* Accordions */
.mobile__accordions {
  margin: 24px auto;
  position: relative;
}

.mobile__accordions-item-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile__accordions-item-inner-wrapper {
  width: calc(100% - 48px);
  padding: var(--mobile-padding);
  margin: 0 auto 8px auto;
}

.mobile__accordions-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Lato";
  font-weight: 500;
  font-size: 13px;
  background-color: white;
  color: var(--darkgray);
  cursor: pointer;
  padding: 12px 24px;
  width: 100%;
  max-width: 360px;
  text-align: left;
  border: 2px solid var(--darkgray);
  border-radius: 100px;
  outline: none;
  margin: 0 auto;
}

.mobile__accordions-item:focus {
  outline: none;
}

.mobile__accordions-item:after {
  content: "\002B"; /* Unicode character for "plus" sign (+) */
  font-size: 15px;
  font-weight: 600;
  color: #000;
  float: right;
  padding-left: 10px;
}

.mobile__accordions-item-copy {
  width: 100%;
  max-width: 360px;
}

.mobile__accordions-item-copy p {
  padding-right: 60px;
}

.mobile__accordions-item-copy a {
  color: var(--primary);
  font-size: 12px;
}

.mobile__accordions-item-copy-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.mobile__accordions-item-tag {
  font-size: 12px;
  color: var(--lightergray);
  padding-left: 10px;
  text-align: end;
}

.mobile__accordions-active {
  margin-bottom: 0;
}

.mobile__accordions-active:after {
  content: "\2212"; /* Unicode character for "plus" sign (+) */
  font-size: 15px;
  font-weight: 600;
  color: #000;
  float: right;
}

.mobile__accordions-item-content {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  flex-direction: column;
  padding: 4px 0 11px 0;
  transition: 1s;
  width: 100%;
}

.mobile__accordions-item-content-wrapper {
  display: flex;
  flex-direction: row;
  padding: 13px 24px;
}

.mobile__accordions-item-content-inner-wrapper {
  display: flex;
  width: 360px;
  margin: 0 auto;
}

.mobile__accordions-item-content p {
  color: var(--lightergray);
}

.mobile__accordions-item-copy p:nth-of-type(2),
.mobile__accordions-item-copy-row p {
  font-size: 18px;
  font-weight: 600 !important;
  color: var(--color-neutral900, #1a1a1a);
  margin-top: 2px;
}

.mobile__accordions-item-content-icon {
  margin-right: 24px;
}

.mobile__accordions-item-content-icon img {
  max-width: 52px !important;
}

.mobile__accordions-show-more {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  height: 100px;
  width: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 18%,
    rgba(255, 255, 255, 0.3) 70%
  );
}

.mobile__accordions-show-more button {
  background: var(--primary);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  padding: 12px 38px;
  cursor: pointer;
}

.mobile__accordions-accordions-closed-wrapper {
  position: relative;
}

.mobile__accordions-accordions-hidden-wrapper {
  display: none;
}

/* Products */
.mobile__links {
  background-color: #fafafa;
  padding: var(--mobile-padding);
}

.mobile__links-item {
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 0;
}

.mobile__links-item-name p:nth-child(2) {
  font-size: 16px !important;
  font-weight: 600;
  color: var(--color-neutral900, #1a1a1a);
}

.mobile__links-item-name p:nth-child(3) {
  color: #a5a5a5;
  margin-top: 6px;
}

.mobile__links-item-button {
  height: 40px;
  width: 40px;
  padding-left: 20px;
}

/* Mobile disclaimer */
.mobile__disclaimer-content {
  display: none;
  margin-top: 5px;
}

.mobile__disclaimer-content p {
  padding-right: 10px;
}

/* ------------ */
/* Desktop view */
/* ------------ */
.desktop {
  display: none;
  margin-bottom: 34px;
}

@media screen and (min-width: 1000px) {
  .desktop {
    display: block;
  }
}

.desktop__row {
  display: flex;
}

.products-comp__desktop-header p {
  margin-top: 8px;
  text-align: left;
}

.desktop__col:nth-of-type(2) {
  width: 100%;
  padding-left: 16px;
  /*padding-right: 16px;*/
}

.desktop__products-comp {
  display: flex;
  align-items: flex-end;
  margin-top: 40px;
}

.desktop__products-comp-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  padding: 25px 25px 0 25px;
  border: 2px solid var(--color-neutral200, #ebebeb);
  border-radius: 8px;
  position: relative;
}

.desktop__products-comp-col:nth-of-type(2) {
  margin: 0 13px;
}
.content .desktop__products-comp-col.d-active {
	color: white;
}
.content .desktop__products-comp-col.d-active p {
	color: white;
}

.desktop__products-comp-col img {
  max-height: 120px;
  width: auto;
  position: absolute;
  top: -60px;
  right: 10px;
  border-radius: 15px;
}

.d-active {
  border-color: #04274e;
  background-color: #04274e;
}

.d-active .desktop__item-tag {
  color: var(--primary);
  top: 60px;
  right: 25px;
}

.desktop__item-tag {
  top: 16px;
  font-size: 12px;
  color: var(--color-neutral600, #6e6e6e);
  margin-bottom: 5px;
}

.desktop__item-copy p:nth-of-type(1) {
  font-size: 16px !important;
}

.desktop__item-copy p:nth-of-type(2) {
  font-weight: 600;
  font-size: 18px !important;
  color: var(--color-neutral900, #1a1a1a);
}

.d-active .desktop__item-copy {
}

.desktop .divider {
  border: 2px solid #f2f2f2;
  border-bottom: none;
  margin-top: 20px;
  width: calc(100% + 50px);
  position: relative;
  left: -27px;
}

.desktop__item-top-feature {
  width: calc(100% + 50px);
  background-color: var(--lightestgray);
  position: relative;
  left: -25px;
  margin: 24px auto 0 auto;
}

.desktop__item-top-feature-tooltip {
  padding-left: 10px;
}

.desktop__item-top-feature .divider {
  width: calc(100% - 50px);
  left: unset;
  border-color: #e8e8e8;
  margin-top: 10px;
  margin-bottom: 15px;
}

.desktop__item-top-feature-top {
  padding: 25px 25px 25px 25px;
  display: flex;
}
.desktop__item-top-feature-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px 16px 25px;
}

.desktop__item-top-feature-bottom img {
  position: initial;
  width: 62px;
  padding-left: 8px;
}

.desktop__item-top-feature-bottom a {
  color: #5a5a5a;
  font-size: 12px;
}

.desktop__item-top-feature-copy p {
  font-size: 12px;
}

.desktop__item-top-feature-copy p:nth-of-type(2) {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.desktop__item-features-wrapper {
  padding: 16.5px 0 10px 0;
}

.desktop__item-features-wrapper h3 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16.5px;
}

.desktop__item-feature {
  display: flex;
}

.desktop__item-features-copy {
  padding-right: 40px;
}

.desktop__item-features-copy p:nth-of-type(1) {
  font-size: 13px !important;
}

.desktop__item-features-copy p:nth-of-type(2) {
  font-weight: 600;
  color: var(--color-neutral900, #1a1a1a);
  margin-top: 2px;
}

.desktop__item-features-wrapper .divider {
  left: unset;
  width: 100%;
  border-color: var(--color-neutral200, #ebebeb);
  margin-bottom: 12px;
}

.desktop__item-features-cta {
  padding: 16px 0;
  text-align: center;
  width: calc(100% + 50px);
  position: relative;
  right: 25px;
}

.desktop__item-features-cta a {
  padding: 12px 0;
}

.d-active .desktop__item-features-cta {
  border-radius: 6px;
}

.content .desc_section .desktop__item-features-cta button {
  border-radius: 100px;
  background: var(--color-info100, #f2f2f2);
  padding: 12px 34px;
  font-size: 12px;
  color: var(--color-neutral800Alt, #222222);
  cursor: pointer;
}
.desktop__item-features-cta button:hover {
	background: var(--color-info300, #cee0f5);
}

.content .d-active .desktop__item-features-cta button {
  background-color: var(--color-neutral800Alt, #222222);
  border: none;
  color: var(--color-neutral50, #f7f7f7);
  padding: 10px;
 border-radius: 15px;
}

.content .d-active .desktop__item-features-cta button:hover {
	background-color: var(--color-info900, #004694);
}

@media screen and (max-width: 750px) {
	.desktop__row {
		flex-direction: column;
	}
	.desktop__products-comp {
		flex-direction: column;
	}
	.desktop__col:nth-of-type(2) {
		padding-left: 0;
	}
	.desktop__products-comp-col:nth-of-type(2) {
		margin-right: 0;
		margin-top: 80px;
	}
}