:root {
  --link-color--link-primary: var(--base-color-brand--blue);
  --border-color--border-primary: var(--base-color-neutral--neutral-lightest);
  --text-color--text-secondary: var(--base-color-neutral--neutral-darker);
  --background-color--background-error: var(--base-color-system--error-red);
  --text-color--text-error: var(--base-color-system--error-red-dark);
  --background-color--background-primary: var(--base-color-neutral--black);
  --text-color--text-alternate: var(--base-color-neutral--white);
  --border-color--border-secondary: var(--base-color-brand--blue);
  --base-color-neutral--white: #fff;
  --background-color--background-secondary: var(--base-color-brand--blue-dark);
  --background-color--background-tertiary: var(--base-color-brand--pink);
  --background-color--background-alternate: var(--base-color-neutral--white);
  --background-color--background-success: var(--base-color-system--success-green);
  --background-color--background-warning: var(--base-color-system--warning-yellow);
  --border-color--border-alternate: var(--base-color-neutral--neutral-darker);
  --link-color--link-secondary: var(--base-color-neutral--black);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-neutral--black);
  --text-color--text-success: var(--base-color-system--success-green-dark);
  --text-color--text-warning: var(--base-color-system--warning-yellow-dark);
  --base-color-brand--blue-light: #d9e5ff;
  --base-color-brand--blue: #0870c7;
  --base-color-brand--blue-dark: #080331;
  --base-color-brand--pink-light: #ffaefe;
  --base-color-brand--pink: #dd23bb;
  --base-color-brand--pink-dark: #3c043b;
  --base-color-neutral--black: #000;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #cef5ca;
  --base-color-system--success-green-dark: #114e0b;
  --base-color-system--warning-yellow: #fcf8d8;
  --base-color-system--warning-yellow-dark: #5e5515;
  --base-color-system--error-red: #f8e4e4;
  --base-color-system--error-red-dark: #3b0b0b;
  --base-color-system--focus-state: #2d62ff;
}

body {
  color: #231f20;
  font-family: Proximanova, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--link-color--link-primary);
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1rem;
}

ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 4px;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.utility-page_component {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page_wrapper {
  max-width: 20rem;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

.global-styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.form_input {
  min-height: 3rem;
  border: 1px solid var(--border-color--border-primary);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form_input::-ms-input-placeholder {
  color: var(--text-color--text-secondary);
}

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

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  margin-top: .75rem;
  padding: .75rem;
}

.button {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
  text-align: center;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.nav_fixed {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.global_padding {
  background-color: rgba(0, 0, 0, 0);
  padding-left: 5%;
  padding-right: 5%;
}

.container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.text-block {
  color: var(--border-color--border-secondary);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.toggle {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #f7f7f7;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  transition: opacity .3s;
  display: flex;
}

.toggle:hover {
  opacity: .6;
}

.gray_box {
  background-color: #f0f0f0;
  padding: 24px;
  font-size: 20px;
}

.mb-xsmall {
  margin-bottom: 10px;
}

.trigger {
  width: 28px;
  height: 28px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.line {
  width: 3px;
  height: 80%;
  background-color: #000;
  border-radius: 100px;
  position: absolute;
}

.line.l2 {
  width: 80%;
  height: 3px;
  flex: none;
  position: absolute;
}

.line.l1 {
  flex: none;
}

.line_horizontal {
  width: 80%;
  height: 2px;
  background-color: #000;
  border-radius: 100px;
  position: absolute;
}

.div-block-3 {
  display: none;
}

.nav-menu {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.padding-section-small {
  padding-top: 25px;
  padding-bottom: 40px;
}

.navigation {
  border-bottom: 2px solid #000;
}

.header_component {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .55fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image {
  width: 100%;
}

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

.mb-medium {
  margin-bottom: 28px;
}

.mb-medium.bot0 {
  margin-bottom: 0;
}

.mb-medium.bot0.top30 {
  margin-top: 30px;
}

.mb-medium.bot10 {
  margin-bottom: 10px;
}

.mb-large {
  margin-bottom: 36px;
}

.letpticell_box {
  border: 3px solid #ebebeb;
  border-radius: 20px;
  padding: 20px;
}

.top_pick {
  background-color: var(--link-color--link-primary);
  color: var(--text-color--text-alternate);
  margin-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 23px;
  font-weight: 600;
  display: inline-block;
}

.text-block-3 {
  color: var(--border-color--border-secondary);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}

.div-block-5 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-6 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.letpticell_info {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.button_link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--base-color-neutral--white);
  text-align: center;
  background-color: #74c713;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.button_link:hover {
  opacity: .75;
}

.text-block-4 {
  text-align: center;
  font-size: 15px;
}

.component_left {
  max-width: 760px;
  text-align: left;
}

.div-block-10 {
  color: #74c713;
  padding-top: 10px;
}

.rating_value {
  font-weight: 700;
}

.lepticell_grid {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 26px;
}

.review_box {
  text-align: left;
  border-bottom: 1px solid #e4e4e4;
  padding: 24px 5px 24px 10px;
}

.dropdown_wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 1px solid #e4e4e4;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.tab {
  border-bottom: 1px solid #e4e4e4;
}

.div-block-13 {
  height: 0;
  overflow: hidden;
}

.pros-cons {
  flex-flow: column;
  display: flex;
}

.lepticell_footer {
  max-width: 420px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  display: flex;
}

.linkblock2 {
  font-weight: 700;
  text-decoration: underline;
  transition: opacity .3s;
}

.linkblock2:hover {
  opacity: .75;
}

.linkblock2.bot10 {
  margin-bottom: 10px;
}

.div-block-10-copy {
  color: #74c713;
}

.list {
  color: var(--background-color--background-secondary);
  font-size: 16px;
}

.linkblock {
  color: var(--background-color--background-secondary);
  transition: opacity .3s;
}

.linkblock:hover {
  opacity: .75;
}

.paragraph {
  font-size: 24px;
}

.dropdown {
  width: 100%;
}

.dropdown-list {
  padding: 10px 24px 24px 40px;
  position: static;
}

.dropdown-list.w--open {
  background-color: #f7f7f7;
}

.toggle2 {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  transition: opacity .3s;
  display: flex;
}

.toggle2:hover {
  opacity: .6;
}

.dropdownlist2 {
  background-color: rgba(221, 221, 221, 0);
  padding: 10px 24px 24px;
  position: static;
}

.feature_item {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  font-size: 17px;
  line-height: 1.5;
  display: grid;
}

.checkmark_icon {
  height: 12px;
  margin-top: 7px;
}

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

.div-block-16 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.list-wrap {
  padding-left: 16px;
}

.price_list {
  font-size: 18px;
}

.heading {
  font-size: 20px;
}

.what-on {
  height: 300px;
  min-height: auto;
  background-color: #f7f7f7;
  padding: 24px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  bottom: auto;
}

.heading_wrap {
  max-width: 760px;
  text-align: left;
}

.link:hover {
  opacity: .75;
}

.smaller {
  font-size: 18px;
}

.lottie-animation {
  width: 140%;
  margin-top: -40px;
  position: absolute;
  left: -35%;
}

.div-block-17 {
  height: 100px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-block-5 {
  font-size: 20px;
}

.top20 {
  margin-top: 20px;
}

.text-block-6, .text-block-7, .text-block-8, .text-block-9 {
  font-size: 20px;
}

.next-ranks {
  border: 3px solid #ebebeb;
  border-radius: 20px;
  margin-top: 30px;
  padding: 20px;
}

.bot20 {
  margin-bottom: 20px;
}

.backtop {
  text-align: center;
  margin-top: 20px;
}

.footer-links {
  margin-top: 0;
}

.div-block-18 {
  text-align: center;
}

.footer-bar2 {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.logo-foot {
  text-align: center;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.global-footer {
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  padding: 20px 5% 40px;
}

.footnotes {
  font-size: 16px;
}

.div-block-19, .div-block-20 {
  text-align: left;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .text-block {
    font-size: 22px;
  }

  .gray_box {
    padding: 20px;
    font-size: 18px;
  }

  .nav-menu {
    justify-content: center;
    align-items: center;
  }

  .padding-section-small {
    padding-top: 32px;
    padding-bottom: 32px;
  }

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

  .mb-small {
    margin-bottom: 12px;
  }

  .mb-medium {
    margin-bottom: 24px;
  }

  .top_pick {
    font-size: 18px;
  }

  .text-block-3 {
    font-size: 28px;
  }

  .div-block-5 {
    grid-template-columns: 1fr;
  }

  .button_link, .paragraph {
    font-size: 20px;
  }

  .what-on {
    min-height: 300px;
    display: none;
  }

  .image-2 {
    width: 170px;
  }

  .logo-foot {
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .text-block {
    font-size: 20px;
  }

  .mb-xsmall {
    margin-bottom: 8px;
  }

  .trigger {
    width: 28px;
    height: 28px;
  }

  .padding-section-small {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .mb-medium {
    margin-bottom: 16px;
  }

  .letpticell_box {
    padding-left: 10px;
    padding-right: 10px;
  }

  .button_link {
    font-size: 16px;
  }

  .lepticell_grid {
    padding-left: 10px;
    padding-right: 10px;
  }

  .linkblock2 {
    font-size: 16px;
  }

  .paragraph {
    font-size: 18px;
  }

  .list-wrap {
    padding-left: 8px;
  }

  .what-on {
    min-height: auto;
  }

  .image-2 {
    width: 200px;
  }

  .text-block-6, .text-block-7, .text-block-8, .text-block-9 {
    font-size: 18px;
  }

  .heading-2, .heading-3, .heading-4, .heading-5 {
    font-size: 24px;
  }

  .next-ranks {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-3 {
    width: 200px;
  }
}

#w-node-_41b272d0-fa43-47d6-35a6-40163e72213a-ba5c4fd4, #w-node-e8d7b182-7252-b895-51d6-b30f283ceb34-ba5c4fd4, #w-node-_775748e8-08ab-0274-865b-d5c3a246161a-ba5c4fd4, #w-node-f8ccb554-bf56-7a35-9ccc-1a2cff2d0689-ba5c4fd4, #w-node-_0ab5682b-9997-5bae-c3ff-58d589e7f641-ba5c4fd4 {
  grid-area: 1 / 1 / 2 / 2;
}

@media screen and (max-width: 767px) {
  #w-node-fd45b639-33b1-0052-2379-d48ce19e1760-ba5c4fd4 {
    order: -9999;
  }
}


@font-face {
  font-family: 'Proximanova';
  src: url('../fonts/ProximaNova-Extrabold.otf') format('opentype'), url('../fonts/ProximaNova-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proximanova';
  src: url('../fonts/ProximaNova-RegItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Proximanova';
  src: url('../fonts/ProximaNova-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proximanova';
  src: url('../fonts/ProximaNova-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proximanova';
  src: url('../fonts/ProximaNova-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}