/* General styling */
.products-comp__container {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

:root {
  --darkgray: #4d4d4d;
  --lightergray: #646464;
  --lightestgray: #f6f6f6;
  --almostblack: #170a07;
  --primary: #0082fa;
  --mobile-padding: 0 24px;
}

.products-comp__container {
  font-family: "Lato" !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 #eeeeee;
  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(--almostblack);
  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(--almostblack);
}

.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 #e9e9e9;
  border-radius: 8px;
  position: relative;
}

.desktop__products-comp-col:nth-of-type(2) {
  margin: 0 13px;
  background-color: black;
}

.desktop__products-comp-col img {
  max-height: 120px;
  width: auto;
  position: absolute;
  top: -60px;
  right: 10px;
}

.d-active {
  border-color: var(--primary);
}

.d-active .desktop__item-tag {
  color: var(--primary);
  top: 60px;
  right: 25px;
}

.desktop__item-tag {
  top: 16px;
  font-size: 12px;
  color: var(--lightergray);
  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(--almostblack);
}

.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(--almostblack);
  margin-top: 2px;
}

.desktop__item-features-wrapper .divider {
  left: unset;
  width: 100%;
  border-color: #f2f2f2;
  margin-bottom: 12px;
}

.d-active .desktop__item-features-wrapper {
}

.d-active .desktop__item-features-cta {
  margin-top: 24px;
}

.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 {
  background-color: #e6f5ff;
  border-radius: 6px;
}

.desktop__item-features-cta button {
  border: 1px solid var(--darkgray);
  border-radius: 100px;
  background: none;
  padding: 12px 34px;
  font-size: 12px;
  color: var(--darkgray);
  cursor: pointer;
}

.d-active .desktop__item-features-cta button {
  background-color: var(--primary);
  border: none;
  color: #fff;
}

.sm__video-wrapper {
	padding-bottom: 0;
}
.products-comp__container .desktop {
	padding: 0 80px;
}
.products-comp__container .desktop button {
	border-color: white;
	color: white;
}
.products-comp__container .mobile__accordions-item-content {
	background: none;
}
.products-comp__container .mobile__accordions-show-more {
	background: linear-gradient( 0deg, rgb(28 28 28) 18%, rgba(28, 28, 28, 0) 70% );
}
.products-comp__container .mobile__links {
	background: none;
}
.desktop__col {
	width: 100%;
}
.desktop__item-features-cta button {
	transition: .2s all ease-in;
}
.desktop__item-features-cta button:hover {
	color: white;
	background-color: var(--darkgray);
	transition: .2s all ease-in;
}
.d-active .desktop__item-features-cta button {
	transition: .2s all ease-in;
	border: 1px solid white;
}
.d-active .desktop__item-features-cta button:hover {
	color: var(--primary);
	background-color: white;
	transition: .2s all ease-in;
	border: 1px solid var(--primary);
}
.mobile__accordions-item {
	background-color: transparent;
	color: white;
}
.mobile__accordions-active:after, .mobile__accordions-item:after {
	color: #fff;
}
.d-active .desktop__item-features-cta {
	border-radius: 0 0 6px 6px;
}
.desktop__item-copy p:nth-of-type(2) {
    font-weight: 600 !important;
}

.d-active .desktop__item-features-cta {
  background: none !important;
}
.desktop__item-features-copy p:first-of-type {
	font-weight: 600 !important;
}
.gamer__show {
  display: block !important;
}
.gamer__compare {
  padding-bottom: 50px;
  background: rgb(117, 60, 186);
  background: radial-gradient(ellipse at 50% 200%, rgba(117, 60, 186, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (min-width: 768px) {
  .gamer__compare {
    padding-bottom: 96px;
  }
}
.gamer__compare .gamer__banner {
  position: relative;
  height: 128px;
}
@media screen and (min-width: 576px) {
  .gamer__compare .gamer__banner {
    height: 180px;
  }
}
@media screen and (min-width: 768px) {
  .gamer__compare .gamer__banner {
    height: 260px;
  }
}
.gamer__compare .gamer__banner-bg {
  object-position: right;
}
.gamer__compare .gamer__banner-gradient-overlay {
  background: linear-gradient(180deg, rgba(70, 70, 70, 0) 20%, rgba(0, 0, 0, 1) 100%);
  position: absolute;
  height: 100%;
  width: 100%;
}
.gamer__compare-wrapper {
  background: #141414;
  padding: 40px 16px;

}
@media screen and (min-width: 576px) {
  .gamer__compare-wrapper {
    padding: 40px 36px;
    margin: 0 32px;
  }
}
@media screen and (min-width: 768px) {
  .gamer__compare-wrapper {
    padding: 40px 48px;
    margin: 0;
  }
}
@media screen and (min-width: 1100px) {
  .gamer__compare-wrapper {
    padding: 40px 48px;
    margin: 0;
  }
}
@media screen and (min-width: 576px) {
  .gamer__compare-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 678px) {
  .gamer__compare-choose-game {
    display: flex;
    align-items: center;
  }
}
.gamer__compare-wrapper h4 {
  margin-bottom: 8px !important;
  white-space: nowrap !important;
  font-weight: 500 !important;
  color: #cccccc !important;
}
@media screen and (min-width: 678px) {
  .gamer__compare-wrapper h4 {
    margin-bottom: 0 !important;
    margin-right: 15px !important;
  }
}
.gamer__compare-dropdown {
  border: 1px solid #4c4c4c;
  width: 100%;
  height: 40px;
  color: #cccccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  transition: background-color 0.3s, border-color 0.3s;
  user-select: none;
}
@media screen and (min-width: 576px) {
  .gamer__compare-dropdown {
    width: 180px;
  }
}
.gamer__compare-dropdown:hover {
  background: #2a2a2a;
  cursor: pointer;
  border-color: #747474;
}
.gamer__compare-dropdown:active {
  background-color: rgba(39, 20, 61, 0);
}
.gamer__compare-dropdown svg {
  width: 14px;
}
.gamer__compare-dropdown-item {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
}
.gamer__compare-dropdown.open {
  display: none;
  align-items: flex-start;
  flex-direction: column;
  height: 160px;
  width: calc(100% - 36px);
  border-top: none;
  padding: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  z-index: 10;
  background: black;
}
@media screen and (min-width: 576px) {
  .gamer__compare-dropdown.open {
    width: 180px;
  }
}
.gamer__compare-dropdown.open:hover {
  background: black;
  font-weight: 400;
}
.gamer__compare-dropdown.open .gamer__compare-dropdown-item {
  color: lightgray;
  padding: 10px 20px;
  width: 100%;
}
.gamer__compare-dropdown.open .gamer__compare-dropdown-item:hover {
  background-color: grey;
  color: #fff;
}
.gamer__compare-dropdown.open::-webkit-scrollbar {
  width: 8px;
}
.gamer__compare-dropdown.open::-webkit-scrollbar-track {
  background: #2f2f2f;
  border: 1px solid #4d4d4d;
  margin-bottom: 12px;
}
.gamer__compare-dropdown.open::-webkit-scrollbar-thumb {
  background: black;
  border: 1px solid #4d4d4d;
}
.gamer__compare-tabs-wrapper {
  display: inline-flex;
  border-bottom: 1px solid grey;
  position: relative;
  margin-top: 24px;
  margin-bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 576px) {
  .gamer__compare-tabs-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    left: unset;
    transform: unset;
  }
}
.gamer__compare-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 48px;
  color: lightgray;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  user-select: none;
  transition: 0.3s;
  position: relative;
  bottom: -1px;
}
.gamer__compare-tab#high {
  color: #fff;
}
.gamer__compare-tab:hover {
  background: grey;
  cursor: pointer;
  color: #fff;
}
.gamer__compare-tab:active {
  background: #4d4d4d;
}
.gamer__compare-tab-active {
  display: flex;
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 10px;
  transition: left 0.3s cubic-bezier(0.21, 0.95, 0.52, 0.96);
}
.gamer__compare-tab-active-triangle-left {
  width: 0;
  height: 0;
  border-bottom: 5px solid yellow;
  border-left: 5px solid transparent;
}
.gamer__compare-tab-active-rectangle-middle {
  height: 5px;
  width: 60px;
  background: yellow;
}
.gamer__compare-tab-active-triangle-right {
  width: 0;
  height: 0;
  border-bottom: 5px solid yellow;
  border-right: 5px solid transparent;
}
.gamer__compare-chart-wrapper {
  min-height: 360px;
}
#gamer__compare-chart-game-name {
  text-align: center;
  margin-bottom: 10px !important;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500 !important;
  color: #949494 !important;
}
@media screen and (min-width: 576px) {
  #gamer__compare-chart-game-name {
    margin-top: 28px;
  }
}