*,
*:before,
*:after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
}

@font-face {
  font-family: "Play";
  src: url("../../assets/fonts/Play/v1/Play-Regular.ttf") format("ttf"),
    url("../../assets/fonts/Play/v1/Play-Regular.woff") format("woff"),
    url("../../assets/fonts/Play/v1/Play-Regular.woff2") format("woff2"),
    url("../../assets/fonts/Play/v1/Play-Regular.otf") format("otf"),
    url("../../assets/fonts/Play/v1/Play-Regular.eot") format("eot");
  font-weight: normal;
}
@font-face {
  font-family: "Aldrich";
  src: url("../../assets/fonts/Aldrich/v1/Aldrich.ttf") format("ttf"),
    url("../../assets/fonts/Aldrich/v1/Aldrich.woff") format("woff"),
    url("../../assets/fonts/Aldrich/v1/Aldrich.woff2") format("woff2"),
    url("../../assets/fonts/Aldrich/v1/Aldrich.otf") format("otf"),
    url("../../assets/fonts/Aldrich/v1/Aldrich.eot") format("eot");
  font-weight: normal;
}
@font-face {
  font-family: "Frutiger";
  src: url("../../assets/fonts/FrutigerLTPro/v1/FrutigerLTPro-Light.ttf")
      format("ttf"),
    url("../../assets/fonts/FrutigerLTPro/v1/FrutigerLTPro-Light.woff")
      format("woff"),
    url("../../assets/fonts/FrutigerLTPro/v1/FrutigerLTPro-Light.woff2")
      format("woff2"),
    url("../../assets/fonts/FrutigerLTPro/v1/FrutigerLTPro-Light.otf")
      format("otf"),
    url("../../assets/fonts/FrutigerLTPro/v1/FrutigerLTPro-Light.eot")
      format("eot");
  font-weight: normal;
}
@font-face {
  font-family: "Frutiger";
  src: url("../../assets/fonts/FrutigerLTPro/v1/FrutigerLT-UltraBlack.ttf")
      format("ttf"),
    url("../../assets/fonts/FrutigerLTPro/v1/FrutigerLT-UltraBlack.woff")
      format("woff"),
    url("../../assets/fonts/FrutigerLTPro/v1/FrutigerLT-UltraBlack.woff2")
      format("woff2"),
    url("../../assets/fonts/FrutigerLTPro/v1/FrutigerLT-UltraBlack.otf")
      format("otf"),
    url("../../assets/fonts/FrutigerLTPro/v1/FrutigerLT-UltraBlack.eot")
      format("eot");
  font-weight: 900;
}
@font-face {
  font-family: "Aorus";
  src: url("../../assets/fonts/Aorus/v1/AORUS_V2.ttf") format("ttf"),
    url("../../assets/fonts/Aorus/v1/AORUS_V2.woff") format("woff"),
    url("../../assets/fonts/Aorus/v1/AORUS_V2.woff2") format("woff2"),
    url("../../assets/fonts/Aorus/v1/AORUS_V2.otf") format("otf"),
    url("../../assets/fonts/Aorus/v1/AORUS_V2.eot") format("eot");
  font-weight: 900;
}

:root {
  --primary-blue: #002eb6;
  --primary-orange: #ff6400;
  --primary-green: #406214;
}

body {
  color: white;
  font-family: "Play", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  height: 100%;
  margin: 0;
  padding: 0;
}
a {
  color: #efefef;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

#main {
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
#content {
  flex: 1;
}

#header_text {
  text-align: center;
  margin-bottom: -0.5rem;
}
#header_text img {
  width: 100%;
}
#header_text p:nth-of-type(1) img:nth-of-type(2) {
  display: none;
}
#banner {
  margin-bottom: -4px;
}
#banner img {
  width: 100%;
}

.content {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.p19 #content {
  background: rgba(0, 0, 0, 0.75);
  margin: 0 auto;
  max-width: 1280px;
  padding: 30px;
}
.p19 #content p {
  margin: 0 0 15px 0;
}
.p19 #content table {
  width: 100% !important;
}
.p19 #content td {
  border: 1px solid #efefef;
  padding: 10px;
}
.p19 #content td p {
  margin: 0;
}

.portal_content {
  padding: 3rem 1rem;
  text-align: center;
}
.land-main #content .portal_content ul {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.land-main #content .portal_content ul li {
  display: grid;
  gap: 1rem;
  justify-items: center;
  width: auto;
}

#info_text_holder {
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 0 50px 0;
}
#info_text_holder ul {
  display: flex;
  justify-content: space-between;
}
#info_text_holder ul li {
  font-size: 24px;
  list-style: none;
  padding: 10px 0 0 0;
  width: 27%;
  position: relative;
}
#info_text_holder ul li:before {
  background: #efefef;
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#info_text_holder ul li:nth-child(1),
.stage2 #info_text_holder ul li:nth-child(2),
.stage3 #info_text_holder ul li:nth-child(2),
.stage3 #info_text_holder ul li:nth-child(3) {
  color: #00ffe0;
}
#info_text_holder ul li:nth-child(1):before,
.stage2 #info_text_holder ul li:nth-child(2):before,
.stage3 #info_text_holder ul li:nth-child(2):before,
.stage3 #info_text_holder ul li:nth-child(3):before {
  background: rgb(255, 89, 0);
  background: #00ffe0;
}

#promo_content,
#extend_content {
  background: url(../images/bgr-sky.jpg) no-repeat top center;
  background-size: cover;
  padding: 4rem 1rem;
}
#extend_content {
  background-attachment: fixed;
}
#form_holder {
  background: transparent;
}
#form_wrapper {
  margin: 0 auto;
  max-width: 750px;
  padding: 50px;
}
.field-row {
  padding: 5px 0;
}
.table-cell label {
  display: inline-block;
  padding: 10px 0;
}
.table-cell input[type="text"],
.table-cell select {
  background: white;
  border: 2px solid #eee;
  border-radius: 0;
  font-family: "Play", Arial, sans-serif;
  font-size: 16px;
  padding: 8px;
}
.table-cell select {
  padding: 8px 5px;
}
#submit-div {
  padding: 20px 0;
  text-align: center;
}
#r_button_subscribe {
  display: inline-block;
}
.next_step,
.prev_step,
.SubmitButt {
  background: var(--primary-orange);
  border: none;
  border-radius: 15px;
  color: #efefef;
  cursor: pointer;
  font-family: "Play", Arial, sans-serif;
  font-size: 28px;
  margin: 1rem 10px;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: background-color 0.3s;
}
.next_step:hover,
.prev_step:hover,
.SubmitButt:hover {
  background: black;
}

.required {
  color: var(--primary-orange);
}
div.required {
  color: white;
  margin: 0 0 30px 0;
}
div.required span {
  color: var(--primary-orange);
}
#a_l_txt_title,
#a_l_txt_bank_details_international,
#a_l_txt_purchased_products_number {
  font-size: 28px;
}
#country_promotion {
  display: block;
  font-weight: bold;
  padding: 10px 0;
}
#u_l_email {
  font-size: 14px;
  position: relative;
  top: -10px;
}
#bank_benficiary_u_info,
#bank_benficiary_individual_u_info,
div[id^="date_purchase"],
div[id^="serial_number"] {
  display: inline-block;
  font-size: 14px;
  padding: 5px 0;
}
div[id^="r_date_purchase"] .table-cell {
  position: relative;
}
.ui-datepicker-trigger {
  background: url(../images/calendar.png) center center no-repeat;
  cursor: pointer;
  position: absolute;
  right: 7px;
  top: 7px;
}
.field-row .inputfile.inputfile__btn + label {
  background: var(--primary-orange) !important;
  width: 100%;
  transition: background-color 0.3s;
}
.field-row .inputfile.inputfile__btn + label:hover {
  background: var(--primary-green) !important;
}
#add_another_product,
#remove_last_product {
  background: var(--primary-green);
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 14px;
  margin: 0 0 5px 0;
  padding: 10px 20px;
  text-transform: uppercase;
  width: 100%;
  transition: background-color 0.3s;
}
#add_another_product.disabled,
#remove_last_product.disabled {
  display: none;
}
#add_another_product:hover,
#remove_last_product:hover {
  background: var(--primary-orange);
}
#alertBox {
  color: black;
}
div[id^="i_l_purchase_upload_file"],
div[id^="r_purchase_upload_file"],
div[id^="i_l_upload_serial_number"],
div[id^="r_upload_serial_number"] {
  float: left;
  width: 50%;
}
div[id^="r_purchase_upload_file"],
div[id^="r_upload_serial_number"] {
  clear: none;
}
div[id^="r_purchase_upload_file"] .table-cell,
div[id^="r_upload_serial_number"] .table-cell {
  width: 100%;
}
.dynamic_info_logo {
  top: 12px;
}

#main.ty #info_text_holder,
#main.ty #printArea,
#main.ty #printArea + p {
  display: none;
}
#main.ty #form_wrapper {
  font-size: 30px;
  line-height: 1.5;
  margin: 50px auto;
  padding: 50px;
  text-align: center;
}

.land-main #header_text {
  display: none;
}
.land-main #content .hero {
  text-align: center;
}
.land-main #content .block1 {
  background: rgba(0, 0, 0, 0.75);
  margin: 50px auto;
  max-width: 750px;
  padding: 50px;
  text-align: center;
}
.land-main #content h1 {
  color: var(--primary-orange);
  font-size: 36px;
  margin: 0 0 50px 0;
  text-transform: none;
}
.land-flags #content ul.flags {
  display: flex;
  column-gap: 5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 40px;
}
.land-flags #content ul.flags li {
  width: 20%;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 0.5rem;
}
.land-flags #content ul.flags li a {
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}
.land-flags #content ul.flags li a:before {
  content: "";
  width: 3rem;
  aspect-ratio: 4 / 3;
  height: auto;
  display: block;
  margin: 0 auto;
}
.land-main #content .portal_content ul li {
  font-size: 1.1rem;
  line-height: 130%;
}
.land-main #content .portal_content ul li a {
  font-size: 1.1rem;
}
.land-main #content .promos {
  display: flex;
  justify-content: center;
  margin: 6rem auto 4rem auto;
  align-items: center;
  gap: 1.5rem;
}
.land-flags h1 {
  font-size: 2rem;
  padding-bottom: 3rem;
}
.land-flags #content ul.flags li ul li a:before {
  display: none;
}
.land-flags #content ul.flags li a.at:before {
  background: url(../../assets/images/flags/v1/4x3/at.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.be:before {
  background: url(../../assets/images/flags/v1/4x3/be.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.bg:before {
  background: url(../../assets/images/flags/v1/4x3/bg.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.ch:before {
  background: url(../../assets/images/flags/v1/4x3/ch.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.cz:before {
  background: url(../../assets/images/flags/v1/4x3/cz.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.dk::before {
  background: url(../../assets/images/flags/v1/4x3/dk.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.de:before {
  background: url(../../assets/images/flags/v1/4x3/de.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.ee:before {
  background: url(../../assets/images/flags/v1/4x3/ee.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.eg:before {
  background: url(../../assets/images/flags/v1/4x3/eg.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.gr:before {
  background: url(../../assets/images/flags/v1/4x3/gr.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.hr:before {
  background: url(../../assets/images/flags/v1/4x3/hr.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.hu:before {
  background: url(../../assets/images/flags/v1/4x3/hu.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.il:before {
  background: url(../../assets/images/flags/v1/4x3/il.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.lt:before {
  background: url(../../assets/images/flags/v1/4x3/lt.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.lv:before {
  background: url(../../assets/images/flags/v1/4x3/lv.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.fi:before {
  background: url(../../assets/images/flags/v1/4x3/fi.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.fr:before {
  background: url(../../assets/images/flags/v1/4x3/fr.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.ro:before {
  background: url(../../assets/images/flags/v1/4x3/ro.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.rs:before {
  background: url(../../assets/images/flags/v1/4x3/rs.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.se:before {
  background: url(../../assets/images/flags/v1/4x3/se.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.sk:before {
  background: url(../../assets/images/flags/v1/4x3/sk.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.tr:before {
  background: url(../../assets/images/flags/v1/4x3/tr.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.gb:before {
  background: url(../../assets/images/flags/v1/4x3/gb.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.it:before {
  background: url(../../assets/images/flags/v1/4x3/it.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.nl:before {
  background: url(../../assets/images/flags/v1/4x3/nl.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.no:before {
  background: url(../../assets/images/flags/v1/4x3/no.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.pl:before {
  background: url(../../assets/images/flags/v1/4x3/pl.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.pt:before {
  background: url(../../assets/images/flags/v1/4x3/pt.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.es:before {
  background: url(../../assets/images/flags/v1/4x3/es.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a.sv:before {
  background: url(../../assets/images/flags/v1/4x3/se.svg) top center no-repeat;
  background-size: cover;
}
.land-flags #content ul.flags li a:hover {
  text-decoration: underline;
}
.land-flags #content ul li ul {
  background: #333;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  display: none;
  padding: 10px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9;
}
.land-flags #content ul li ul li {
  padding: 10px 0;
  width: 100%;
  height: auto;
}
.land-main #content ul li ul a {
  display: block;
  text-align: center;
}
.p62 #content {
  background: url(../images/bgr-sky.jpg) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
}
.p62 #content .block0 {
  padding-left: 30px;
  padding-right: 30px;
}
.p62 #content .block1 {
  padding: 50px 0 100px 0;
  text-align: center;
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.75);
}
.p62 #content .block1 h2 {
  font-size: 40px;
  margin: 0 0 50px 0;
}

.section-steps {
  background: url(../images/bgr-sky.jpg) no-repeat top center;
  background-size: cover;
  padding: 4rem 0;
}
.section-steps h2 {
  font-family: "Play", sans-serif;
  font-weight: normal;
  text-align: center;
  width: 65%;
  margin: 0 auto;
}
.section-steps h2 em {
  font-size: 3rem;
}
.section-steps h2:first-child {
  font-size: 2.5rem;
  color: #ffff86;
}
.section-steps h2:nth-of-type(2) {
  font-size: 3rem;
  color: #00ffe0;
  margin: 3rem auto 1.5rem auto;
}
.section-steps .periods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  color: #00ffe0;
  font-size: 1.25rem;
  margin: 2rem auto;
}
.section-steps .periods p {
  font-size: 1.75rem;
  padding: 0.5rem 0;
}
.section-steps .periods li:first-child {
  border-right: 1px solid #00ffe0;
}
html:lang(ar) .section-steps .periods li:first-child,
html:lang(he) .section-steps .periods li:first-child {
  border-right: none;
  border-left: 1px solid #00ffe0;
}
.section-steps .periods li {
  padding: 1rem 2rem;
  text-align: center;
}
.section-steps .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  justify-content: space-between;
  counter-reset: step-counter;
  list-style: none;
}
.section-steps .steps li {
  position: relative;
  padding-left: 56px;
  counter-increment: step-counter;
  display: grid;
  align-items: center;
}
html:lang(ar) .section-steps .steps li,
html:lang(he) .section-steps .steps li {
  padding-left: 0;
  padding-right: 56px;
}
.section-steps .steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: #00ffe0;
  color: #000000;
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
html:lang(ar) .section-steps .steps li::before,
html:lang(he) .section-steps .steps li::before {
  left: auto;
  right: 0;
}
.section-steps .steps li p {
  width: 200px;
  min-height: 70px;
}
.section-steps .steps li div {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
}
.section-steps .steps li:nth-child(1) img {
  width: 80px;
}
.section-steps .steps li:nth-child(2) img {
  width: 150px;
  margin-top: 1rem;
}
.section-steps .steps li:nth-child(3) img {
  width: 100px;
  margin-top: -1rem;
}
html:lang(ar) .section-steps .steps li:nth-child(2) div:nth-of-type(1),
html:lang(he) .section-steps .steps li:nth-child(2) div:nth-of-type(1) {
  grid-template-columns: 1fr auto;
  margin-right: -32px;
}
html:lang(ar) .section-steps .steps li:nth-child(2) img,
html:lang(he) .section-steps .steps li:nth-child(2) img {
  margin-right: -32px;
}
html:lang(ar) .section-steps .steps li:nth-child(2) div:nth-of-type(1) div,
html:lang(he) .section-steps .steps li:nth-child(2) div:nth-of-type(1) div {
  margin-right: 130px;
}
.section-steps .steps li div div {
  text-align: center;
  border-top: 3px solid #00ffe0;
  display: block;
  padding-top: 1rem;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}
.section-steps .steps li:nth-child(2) div {
  margin-left: -56px;
  position: relative;
}
.section-steps .steps li:nth-child(2) div div {
  margin-top: 2rem;
  margin-left: 0;
  position: absolute;
  left: 160px;
  right: 0;
  width: calc(100% - 100px);
  padding-left: 2rem;
  padding-right: 2rem;
}
.section-steps .boxes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 86%;
  margin: 4rem auto 2rem auto;
}
.section-steps .boxes a {
  background: #b29af1;
  border: 3px solid #6434e2;
  border-radius: 4rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  padding: 1rem;
  width: 200px;
  height: 200px;
  display: flex;
  gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  color: #ffff86;
  text-align: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.section-steps .boxes img {
  width: 100px;
  max-height: 100px;
}
.section-steps .boxes a:hover {
  background: #6434e2;
  border-color: #fff087;
}
.section-steps .terms {
  font-size: 1.25rem;
  text-align: center;
}

.section-eligible-products {
  background: url(../images/bgr-winter-forest.jpg) no-repeat fixed top center;
  background-size: cover;
  padding: 4rem 0;
}
.section-eligible-products h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.zone {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.zone h3 {
  font-size: 3rem;
}
.zone p {
  font-size: 1.25rem;
  border-radius: 1rem;
  padding: 0.25rem 0.5rem;
}
.section-eligible-products .zone h3 {
  color: #6434e2;
}
.section-eligible-products .zone p {
  background: #6434e2;
  font-size: 1.5rem;
}
#product-filters-cat-a,
#product-filters-cat-b {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 1.5rem 0 3rem 0;
}
#product-filters-cat-a li,
#product-filters-cat-b li {
  width: 160px;
  height: 160px;
  background: rgba(100, 52, 226, 0.1);
  border: 3px solid #6434e2;
  border-radius: 3rem;
  padding: 1.5rem 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
}
#product-filters-cat-a li img,
#product-filters-cat-b li img {
  max-width: 100%;
  max-height: 100%;
  display: flex;
}
#product-filters-cat-a li.active {
  background: #6434e2;
}
.section-eligible-products table,
.section-eligible-zoneb table {
  display: none;
  font-size: 1.25rem;
  width: 100%;
  border: 1px solid #9999ff;
  position: relative;
}
.section-eligible-products table.active,
.section-eligible-zoneb table.active {
  display: table;
}
.section-eligible-products table th,
.section-eligible-zoneb table th {
  background: #0c2261;
  font-size: 1.1rem;
  font-weight: normal;
  width: fit-content;
  text-align: left;
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid #9999ff;
}
html:lang(ar) .section-eligible-products table th,
html:lang(ar) .section-eligible-zoneb table th,
html:lang(he) .section-eligible-products table th,
html:lang(he) .section-eligible-zoneb table th {
  text-align: right;
}
.section-eligible-products table th:first-child,
.section-eligible-zoneb table th:first-child {
  border-right: 1px solid #9999ff;
}
.section-eligible-products table tbody,
.section-eligible-zoneb table tbody {
  background: rgba(12, 34, 97, 0.75);
  color: rgba(255, 255, 255, 0.75);
}
.section-eligible-products table tr td,
.section-eligible-zoneb table tr td {
  padding: 0.5rem;
  border-bottom: 1px solid #9999ff;
}
.section-eligible-products table tr td:first-child,
.section-eligible-zoneb table tr td:first-child {
  border-right: 1px solid #9999ff;
}
.section-eligible-products table::before {
  background: url(../images/chibi.png) no-repeat top right;
  background-size: contain;
  content: "";
  position: absolute;
  top: -240px;
  right: -55px;
  width: 320px;
  height: 240px;
}
html:lang(ar) .section-eligible-products table::before,
html:lang(he) .section-eligible-products table::before {
  right: auto;
  left: -55px;
}

.section-eligible-zoneb {
  background: url(../images/bgr-night-sky.jpg) no-repeat top center;
  background-size: cover;
  padding: 4rem 0;
}
.section-eligible-zoneb .zone h3 {
  color: #ff5504;
}
.section-eligible-zoneb .zone p {
  background: #ff5504;
}
#product-filters-cat-b li {
  background: rgba(255, 85, 4, 0.2);
  border: 3px solid #ff5504;
}
#product-filters-cat-b li.active {
  background: #ff5504;
}

.section-eligible-zoneb table,
.section-eligible-zoneb table tr td,
.section-eligible-zoneb table td:first-child {
  border-color: #ff5504;
}
.section-eligible-zoneb table th {
  background: #091840;
  border-color: #ff5504;
}
.section-eligible-zoneb table tr th:first-child,
.section-eligible-zoneb table tr td:first-child {
  border-right-color: #ff5504;
}
.section-eligible-zoneb table th,
.section-eligible-zoneb table tbody {
  color: #ffbb9b;
}
.section-eligible-zoneb .content p:nth-last-of-type(1) {
  text-align: right;
}
.section-eligible-zoneb .content p:nth-last-of-type(2) {
  text-align: right;
  padding: 1rem 0 0.25rem 0;
}

.p62 #content .block2 {
  margin: 0 0 100px 0;
  text-align: center;
}
.p62 #content .block2:before {
  background: url(../images/bubbles.png) no-repeat top center;
  content: "";
  display: block;
  height: 320px;
  margin: 0 0 100px 0;
  width: 100%;
  opacity: 0.5;
}
.p62 #content .block2 h2 {
  font-family: "Frutiger", Arial, sans-serif;
  font-size: 40px;
  font-weight: bold;
  margin: 0 0 50px 0;
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}

.p62 #content .block3 {
  margin: 0 0 100px 0;
  text-align: center;
}
.p62 #content .block3 h2 {
  font-family: "Frutiger", Arial, sans-serif;
  font-size: 40px;
  font-weight: bold;
  margin: 0 0 75px 0;
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}

.p62 #content .block3 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 90px;
  font-size: 18px;
  list-style: none;
  margin: 0 0 80px 80px;
}
.p62 #content .block3 ul li {
  border-radius: 10px;
  color: black;
  font-weight: bold;
  padding: 15px 15px 15px 50px;
  text-align: center;
  width: 215px;
  position: relative;
}
.p62 #content .block3 ul li:before {
  position: absolute;
  z-index: 9;
}
.p62 #content .block3 ul li:nth-child(1) {
  background: #f4cda2;
}
.p62 #content .block3 ul li:nth-child(1):before {
  background: url(../images/zone-a.png) center center no-repeat;
  content: "";
  display: inline-block;
  height: 86px;
  width: 146px;
  left: -110px;
  top: 0;
}
.p62 #content .block3 ul li:nth-child(2) {
  background: #00b4ff;
}
.p62 #content .block3 ul li:nth-child(2):before {
  background: url(../images/zone-b.png) center center no-repeat;
  content: "";
  display: inline-block;
  height: 144px;
  width: 115px;
  left: -65px;
  top: -35px;
}
.p62 #content .block3 ul li:nth-child(3) {
  background: #00e4ff;
}
.p62 #content .block3 ul li:nth-child(3):before {
  background: url(../images/zone-c.png) center center no-repeat;
  content: "";
  display: inline-block;
  height: 128px;
  width: 111px;
  left: -40px;
  top: -30px;
}
.p62 #content .block3 ul strong {
  display: block;
  font-size: 22px;
  font-weight: normal;
}
.p62 #content .block3 table {
  font-family: "Aldrich", Arial, sans-serif;
  margin: 0 0 30px 0;
}
.p62 #content .block3 table td {
  border: 0;
}

.p62 #content .block3 .table1 {
  background: #f1dec8;
  color: black;
  font-size: 18px;
  margin: 0 auto 30px auto;
  max-width: 1000px;
  width: 100%;
}
.p62 #content .block3 .table1 a {
  color: black;
  text-decoration: none;
}
.p62 #content .block3 .table1 a:hover {
  text-decoration: underline;
}
.p62 #content .block3 .table1 td {
  padding: 10px;
  text-align: left;
}
.p62 #content .block3 .table1 tr:nth-child(1) td,
.p62 #content .block3 .table1 tr:nth-child(2) td {
  text-decoration: none;
}
.p62 #content .block3 .table1 tr:nth-child(1) td {
  background: #252525;
  color: #f1dec8;
  font-family: "Play", Arial, sans-serif;
  font-size: 20px;
}
.p62 #content .block3 .table1 tr:nth-child(1) td:nth-child(1) {
  background: #f4cda2;
  color: black;
  font-size: 24px;
  text-align: center;
  width: 150px;
}
.p62 #content .block3 .table1 tr:nth-child(2) td {
  background: #764517;
  color: white;
}
.p62 #content .block3 .table1 tr:nth-child(2) td:nth-child(2) {
  text-align: center;
  width: 25%;
}
.p62 #content .block3 .table1 tr:nth-child(3) td,
.p62 #content .block3 .table1 tr:nth-child(4) td {
  background: #f4cda2;
  text-align: left;
}
.p62 #content .block3 .table1 tr:nth-child(3) td:nth-child(2) {
  background: #f4b672;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
}
.p62 #content .block3 .table1 tr:nth-child(5) td:nth-child(2) {
  background: #f1d5b5;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
}

.p62 #content .block3 .table2 {
  background: #2dbdf9;
  color: black;
  font-size: 18px;
  margin: 0 auto 30px auto;
  max-width: 1000px;
  width: 100%;
}
.p62 #content .block3 .table2 a {
  color: black;
  text-decoration: none;
}
.p62 #content .block3 .table2 a:hover {
  text-decoration: underline;
}
.p62 #content .block3 .table2 td {
  padding: 10px;
  text-align: left;
}
.p62 #content .block3 .table2 tr:nth-child(1) td,
.p62 #content .block3 .table2 tr:nth-child(2) td {
  text-decoration: none;
}
.p62 #content .block3 .table2 tr:nth-child(1) td {
  background: #252525;
  color: #00b4ff;
  font-family: "Play", Arial, sans-serif;
  font-size: 20px;
}
.p62 #content .block3 .table2 tr:nth-child(1) td:nth-child(1) {
  background: #00b4ff;
  color: black;
  font-size: 24px;
  text-align: center;
  width: 150px;
}
.p62 #content .block3 .table2 tr:nth-child(2) td {
  background: #764517;
  color: white;
}
.p62 #content .block3 .table2 tr:nth-child(2) td:nth-child(2) {
  text-align: center;
  width: 25% !important;
}
.p62 #content .block3 .table2 tr:nth-child(3) td {
  background: #00b4ff;
}
.p62 #content .block3 .table2 tr:nth-child(3) td:nth-child(2) {
  background: #2dbdf9;
  font-size: 24px;
  text-align: center;
}
.p62 #content .block3 .table2 tr:nth-child(4) td {
  background: #4dc7fa;
}
.p62 #content .block3 .table2 tr:nth-child(4) td:nth-child(2) {
  background: #00b4ff;
  font-size: 24px;
  text-align: center;
}
.p62 #content .block3 .table2 tr:nth-child(5) td,
.p62 #content .block3 .table2 tr:nth-child(6) td {
  background: #2dbdf9;
}
.p62 #content .block3 .table2 tr:nth-child(5) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(6) td:nth-child(2) {
  background: #4dc7fa;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
}
.p62 #content .block3 .table2 tr:nth-child(7) td,
.p62 #content .block3 .table2 tr:nth-child(8) td,
.p62 #content .block3 .table2 tr:nth-child(9) td,
.p62 #content .block3 .table2 tr:nth-child(10) td,
.p62 #content .block3 .table2 tr:nth-child(11) td {
  background: #4dc7fa;
}
.p62 #content .block3 .table2 tr:nth-child(7) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(8) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(9) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(10) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(11) td:nth-child(2) {
  background: #00b4ff;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
}
.p62 #content .block3 .table2 tr:nth-child(12) td,
.p62 #content .block3 .table2 tr:nth-child(13) td,
.p62 #content .block3 .table2 tr:nth-child(14) td,
.p62 #content .block3 .table2 tr:nth-child(15) td,
.p62 #content .block3 .table2 tr:nth-child(16) td,
.p62 #content .block3 .table2 tr:nth-child(17) td,
.p62 #content .block3 .table2 tr:nth-child(18) td {
  background: #00b4ff;
}
.p62 #content .block3 .table2 tr:nth-child(12) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(13) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(14) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(15) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(16) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(17) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(18) td:nth-child(2) {
  background: #2dbdf9;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
}
.p62 #content .block3 .table2 tr:nth-child(19) td,
.p62 #content .block3 .table2 tr:nth-child(20) td,
.p62 #content .block3 .table2 tr:nth-child(21) td,
.p62 #content .block3 .table2 tr:nth-child(22) td,
.p62 #content .block3 .table2 tr:nth-child(23) td,
.p62 #content .block3 .table2 tr:nth-child(24) td,
.p62 #content .block3 .table2 tr:nth-child(25) td {
  background: #2dbdf9;
}
.p62 #content .block3 .table2 tr:nth-child(19) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(20) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(21) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(22) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(23) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(24) td:nth-child(2),
.p62 #content .block3 .table2 tr:nth-child(25) td:nth-child(2) {
  background: #4dc7fa;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
}

.p62 #content .block3 .table3 {
  background: #88effb;
  color: black;
  font-size: 18px;
  margin: 0 auto 30px auto;
  max-width: 1000px;
  width: 100%;
}
.p62 #content .block3 .table3 a {
  color: black;
  text-decoration: none;
}
.p62 #content .block3 .table3 a:hover {
  text-decoration: underline;
}
.p62 #content .block3 .table3 td {
  padding: 10px;
  text-align: left;
}
.p62 #content .block3 .table1 tr:nth-child(1) td,
.p62 #content .block3 .table1 tr:nth-child(2) td {
  text-decoration: none;
}
.p62 #content .block3 .table3 tr:nth-child(1) td {
  background: #252525;
  color: #00e4ff;
  font-family: "Play", Arial, sans-serif;
  font-size: 20px;
}
.p62 #content .block3 .table3 tr:nth-child(1) td:nth-child(1) {
  background: #00e4ff;
  color: black;
  font-size: 24px;
  text-align: center;
  width: 150px;
}
.p62 #content .block3 .table3 tr:nth-child(2) td {
  background: #764517;
  color: white;
}
.p62 #content .block3 .table3 tr:nth-child(2) td:nth-child(2) {
  text-align: center;
  width: 25% !important;
}
.p62 #content .block3 .table3 tr:nth-child(3) td,
.p62 #content .block3 .table3 tr:nth-child(4) td,
.p62 #content .block3 .table3 tr:nth-child(5) td,
.p62 #content .block3 .table3 tr:nth-child(6) td {
  background: #00e4ff;
}
.p62 #content .block3 .table3 tr:nth-child(3) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(4) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(5) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(6) td:nth-child(2) {
  background: #52eafc;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
}
.p62 #content .block3 .table3 tr:nth-child(7) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(8) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(9) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(10) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(11) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(12) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(13) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(14) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(15) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(16) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(17) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(18) td:nth-child(2),
.p62 #content .block3 .table3 tr:nth-child(19) td:nth-child(2) {
  background: #b0f3fb;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
}
.p62 #content .block3 .table3 + p {
  color: var(--primary-orange);
}

.p62 #content .block4 {
  background: url(../images/bgr-sea.jpg) no-repeat top center;
  background-size: cover;
  padding: 4rem 0;
}
.p62 #content .block4 .block0 {
  background: url(../images/frame-important-details.png) no-repeat center center;
  background-size: contain;
  padding: 3rem 2rem;
  color: #ffffff;
  width: 900px;
  margin: 0 auto;
  aspect-ratio: 4 / 2;
}
.p62 #content .block4 h2 {
  font-size: 2.75rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
}
.p62 #content .block4 ul {
  font-size: 1.5rem;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 0.5rem;
}
.p62 #content .block4 li {
  list-style: none;
  position: relative;
  padding-left: 1rem;
  line-height: 115%;
}
.p62 #content .block4 li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0.2rem;
}

.p62 #content .block5 {
  background: #3f425f;
  padding: 75px 0;
  text-align: center;
}
.p62 #content .block5 h2 {
  color: #ffffff;
  font-size: 2.75rem;
  font-weight: normal;
  margin: 0 0 1.5rem 0;
  text-align: left;
}
.p62 #content .block5 .retailers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
  row-gap: 40px;
  flex-wrap: wrap;
  margin: 2rem auto 1rem auto;
}
.p62 #content .block5 .retailers li {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.p62 #content .block5 .retailers li img {
  width: 160px;
}
.p62 #content .block5 .retailers div strong {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  width: 100%;
}
.p62 #content .block5 .retailers div p {
  display: flex;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.p62 #content .block5 .retailers div p a {
  display: inline-block;
  font-size: 26px;
  height: 60px;
  line-height: 60px;
  text-decoration: none;
  width: 50%;
}
.p62 #content .block5 .retailers div p.single a {
  width: 100%;
}
.p62 #content .block5 .retailers div p a:nth-child(1) {
  background: #00e4ff;
  border-radius: 0 0 0 25px;
  color: black;
}
.p62 #content .block5 .retailers div p.single a:nth-child(1) {
  background: #00b4ff;
  border-radius: 0 0 25px 25px;
  color: white;
}
.p62 #content .block5 .retailers div p a:nth-child(2) {
  background: #00b4ff;
  border-radius: 0 0 25px 0;
  color: white;
}

.p62 #content .block6 {
  background: black url(../images/bottom.jpg) no-repeat top center;
  background-size: cover;
  font-size: 30px;
  line-height: 1.5;
  padding: 300px 0 100px 0;
  text-align: center;
}
.p62 #content .block6 h1 {
  color: #00ffff;
  font-family: "Aorus", Arial, Helvetica, sans-serif;
  font-size: 55px;
  margin: 0 0 30px 0;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
.p62 #content .block6 h2 {
  color: #ff6400;
  font-family: "Aorus", Arial, Helvetica, sans-serif;
  font-size: 55px;
  margin: 0 0 30px 0;
}

.p62 #content .block7 {
  background: black;
  padding: 0;
  text-align: center;
}
.p62 #content .block7 .block0 {
  padding-left: 0;
  padding-right: 0;
}

#footer {
  background: #252525;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
}
#footer .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
#footer ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: end;
}
#footer ul li {
  border-right: 1px solid #ffffff;
  padding-right: 1rem;
}
#footer ul li:last-of-type {
  border-right: 0;
  padding-right: 0;
}
#footer ul li:last-of-type a:before {
  background: url(../images/icon-globe.png) center center no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 24px;
  margin: 0 10px 0 0;
  vertical-align: middle;
  width: 24px;
}

.p413 #main h1 {
  background: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  line-height: 1.25;
  margin: 50px auto 0 auto;
  max-width: 750px;
  padding: 50px;
}
.p413 #main h1 a {
  color: var(--primary-orange);
}
.p413 #main > form {
  background: rgba(0, 0, 0, 0.75);
  margin: 0 auto 50px auto;
  max-width: 750px;
  padding: 0 50px 50px 50px;
}

.check-status {
  border: 0;
}
.check-status h2 {
  border-bottom: 0;
  color: var(--primary-orange);
  font-size: 36px;
  margin: 0 0 30px 0;
}
.check-status .label-field,
.check-status .input-field {
  width: 100%;
}
.check-status .label-field label {
  display: block;
  padding: 10px 0;
}
.check-status input[type="text"] {
  background: white;
  border: 2px solid #eee;
  border-radius: 0;
  font-family: "Play", Arial, sans-serif;
  font-size: 16px;
  padding: 8px;
  width: 100%;
}
.form-field.submit,
.check-status .foot {
  padding-top: 30px;
  text-align: center;
}
#button_ajax,
#btn_new_search {
  background: var(--primary-orange);
  border: none;
  border-radius: 10px;
  color: #efefef;
  cursor: pointer;
  font-family: "Play", Arial, sans-serif;
  font-size: 28px;
  margin: 0 10px;
  padding: 15px 50px;
  text-transform: uppercase;
  transition: background-color 0.3s;
}
#button_ajax:hover,
#btn_new_search:hover {
  background: var(--primary-green);
}
.table-body .table-cell.id {
  background: var(--primary-orange);
}

.p111 h1.type2 {
  font-size: 36px;
  margin: 30px 0;
}
.p111 #faq a {
  color: white;
}

.p62 #content .block5 .retailers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 1.5rem;
}
.p62 #content .block5 .retailers li {
  aspect-ratio: 1 / 1; /* еднаква ширина и височина */
  display: flex;
  justify-content: center;
  align-items: center;
}
.p62 #content .block5 .retailers li img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

@media (max-width: 1400px) {
  .section-eligible-products table::before {
    right: 0;
  }
  html:lang(ar) .section-eligible-products table::before,
  html:lang(he) .section-eligible-products table::before {
    width: 230px;
    height: 190px;
    top: -182px;
    left: 0;
  }
}
@media (max-width: 1200px) {
  .section-steps .steps li div div {
    font-size: 1.35rem;
  }
  html:lang(ar) .section-steps .steps li div div {
    font-size: 1rem;
  }
  .section-steps .steps li:nth-child(2) div div {
    padding-left: 0;
    padding-right: 0;
  }
  .p62 #content .block5 .retailers {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 999px) {
  #info_text_holder {
    margin: 0 15px;
  }
  #info_text_holder ul {
    flex-direction: column;
    row-gap: 20px;
  }
  #info_text_holder ul li {
    text-align: center;
    width: 100%;
  }
  #form_wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .p62 #content .block2 .boxes .flex {
    flex-direction: column;
    row-gap: 15px;
  }
  html:lang(ar) .section-steps .steps li div div {
    font-size: 1.25rem;
  }
  html:lang(ar) .section-steps .steps li:nth-child(1) div div {
    margin-bottom: -2rem;
  }
  .p62 #content .block2 .boxes a.signup,
  .p62 #content .block2 .boxes a.redeem,
  .p62 #content .block2 .boxes a.track {
    zoom: 0.6;
  }
  .section-steps .steps li div {
    gap: 1rem;
  }
  .section-steps .steps li:nth-child(1) img {
    width: 70px;
  }
  .section-steps .steps li:nth-child(2) img {
    width: 126px;
  }
  .section-steps .steps li:nth-child(2) div div {
    left: 130px;
    width: calc(100% - 80px);
  }
  .section-steps .steps li p {
    width: 180px;
  }
  .section-steps .steps li div div {
    font-size: 1.1rem;
  }
  .section-eligible-products table::before {
    width: 200px;
    height: 170px;
    top: -160px;
  }
  #product-filters-cat-a,
  #product-filters-cat-b {
    margin-bottom: 2rem;
    gap: 1.5rem;
  }
  .zone {
    flex-flow: column;
    align-items: start;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .section-eligible-products .zone p {
    text-align: left;
    font-size: 1.35rem;
  }
  .p62 #content .block4 .block0 {
    width: 740px;
  }
  .p62 #content .block4 h2 {
    font-size: 2.25rem;
  }
  .p62 #content .block4 ul {
    font-size: 1.25rem;
  }
}

@media (max-width: 820px) {
  .section-steps .steps {
    grid-template-columns: 1fr;
    width: 80%;
    max-width: 100%;
    padding: 1rem 0;
    gap: 2rem;
    margin: 0 auto;
    justify-items: center;
  }
  .section-steps .steps li {
    justify-items: center;
    gap: 1rem;
    padding-left: 0;
  }
  .section-steps .steps li p {
    width: auto;
    min-height: auto;
    font-size: 1.1rem;
    text-align: center;
  }
  .section-steps .steps li div {
    grid-template-columns: auto;
    gap: 0;
    justify-items: center;
    padding-top: 0.5rem;
  }
  .section-steps .steps li div div,
  .section-steps .steps li:nth-child(2) div div {
    border-top: none;
    padding-top: 0;
    display: inline-flex;
    width: fit-content;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00ffe0;
  }
  .section-steps .steps li::before {
    position: relative;
    left: auto;
  }
  .section-steps .steps li:nth-child(2) img {
    margin-top: 0;
  }
  .section-steps .steps li:nth-child(2) div {
    margin-left: auto;
  }
  .section-steps .steps li:nth-child(2) div div {
    position: relative;
    margin-top: 0.5rem;
    left: auto;
  }
  .section-steps .steps li:nth-child(3) div {
    margin-top: 0.5rem;
  }
  html:lang(ar) .section-steps .steps li,
  html:lang(he) .section-steps .steps li {
    padding-right: 0;
  }
  html:lang(ar) .section-steps .steps li:nth-child(2),
  html:lang(he) .section-steps .steps li:nth-child(2) {
    margin-top: 2rem;
  }
  html:lang(ar) .section-steps .steps li:nth-child(2) div:nth-of-type(1),
  html:lang(he) .section-steps .steps li:nth-child(2) div:nth-of-type(1) {
    grid-template-columns: 1fr;
    margin-right: auto;
  }
  html:lang(ar) .section-steps .steps li:nth-child(2) div:nth-of-type(1) div,
  html:lang(he) .section-steps .steps li:nth-child(2) div:nth-of-type(1) div {
    margin-right: auto;
    margin-left: auto;
  }
  html:lang(ar) .section-steps .steps li:nth-child(2) img,
  html:lang(he) .section-steps .steps li:nth-child(2) img {
    margin-right: auto;
    margin-left: auto;
    width: 150px;
  }
  .section-steps .boxes {
    width: 90%;
  }
  .section-steps .boxes a {
    width: 168px;
    height: 168px;
    border-radius: 30%;
  }
  .section-steps .boxes img {
    width: 80px;
    max-height: 80px;
  }
  #product-filters-cat-a li,
  #product-filters-cat-b li {
    width: 120px;
    height: 120px;
    border-radius: 30%;
    padding: 1.25rem 1rem;
  }
  .section-eligible-products .zone p {
    text-align: left;
    font-size: 1.35rem;
  }
  .p62 #content .block4 .block0 {
    width: 740px;
    padding: 1.5rem;
  }
  .p62 #content .block4 h2 {
    font-size: 2rem;
  }
  .p62 #content .block4 ul {
    font-size: 1.2rem;
  }
}

@media (max-width: 800px) {
  .land-main #content {
    margin: 0;
    padding: 30px 15px;
  }
  .land-main #content ul li {
    width: 25%;
  }
  .p62 #content .block1 .periods {
    flex-direction: column;
    row-gap: 20px;
  }
  .p62 #content .block1 .periods p {
    padding: 0;
  }
  .p62 #content .block1 .periods p:first-child {
    border-right: 0;
  }
  .p62 #content .block2 .steps {
    flex-direction: column;
    row-gap: 20px;
  }
  .p62 #content .block2 .steps .step1,
  .p62 #content .block2 .steps .step2,
  .p62 #content .block2 .steps .step3 {
    width: 100%;
  }
  .p62 #content .block2 .boxes a.signup,
  .p62 #content .block2 .boxes a.redeem,
  .p62 #content .block2 .boxes a.track {
    zoom: 0.5;
  }
  .p62 #content .block3 ul {
    column-gap: 20px;
    margin-left: 0;
  }
  .p62 #content .block3 ul li {
    padding-left: 15px;
    width: 30%;
  }
  .p62 #content .block3 ul {
    flex-direction: column;
    row-gap: 20px;
  }
  .p62 #content .block3 ul li {
    width: 100%;
  }
  .p62 #content .block3 ul li:nth-child(1):before {
    zoom: 0.6;
    left: 15px;
    top: 20px;
  }
  .p62 #content .block3 ul li:nth-child(2):before {
    zoom: 0.6;
    left: 15px;
    top: -15px;
  }
  .p62 #content .block3 ul li:nth-child(3):before {
    zoom: 0.6;
    left: 20px;
    top: -5px;
  }
  .p62 #content .block5 .retailers div {
    width: 100%;
  }
  .p62 #content .block5 .retailers div p a {
    font-size: 20px;
    width: 100%;
  }
  .p62 #content .block5 .retailers div strong {
    height: 100px;
    padding: 15px;
  }
  .p62 #content .block5 .retailers div strong img {
    max-height: 100%;
  }
  .p62 #content .block6 h1,
  .p62 #content .block6 h2 {
    font-size: 40px;
  }
  #footer {
    flex-direction: column;
    row-gap: 20px;
  }
  #footer p:nth-child(even) {
    display: none;
  }
  .section-eligible-products table::before {
    width: 100px;
    height: 90px;
    top: -80px;
  }

  .p62 #content .block4 .block0 {
    width: 580px;
  }
  .p62 #content .block4 h2 {
    font-size: 1.7rem;
  }
  .p62 #content .block4 ul {
    font-size: 1rem;
  }
  html:lang(ar) .section-eligible-products table::before,
  html:lang(he) .section-eligible-products table::before {
    width: 100px;
    height: 90px;
    top: -80px;
  }
}
@media (max-width: 600px) {
  .land-main #content ul li {
    width: 33%;
  }
  .p62 #content .block2 .boxes a.signup,
  .p62 #content .block2 .boxes a.redeem,
  .p62 #content .block2 .boxes a.track {
    zoom: 0.4;
  }
  .field-row .table-cell.coll1,
  .field-row .table-cell {
    float: none;
    width: 100%;
  }
  #u_l_email {
    top: 0;
  }
  .section-steps .boxes a {
    font-size: 1rem;
    width: 120px;
    height: 120px;
    gap: 0.5rem;
  }
  .section-steps .boxes img {
    width: 42px;
    max-height: 42px;
  }
  .section-eligible-products table::before {
    display: none;
  }
  .p62 #content .block4 .block0 {
    width: 90%;
    background: none;
    margin: 0 1rem;
  }
  .p62 #content .block4 h2 {
    font-size: 2.15rem;
    margin-bottom: 1.5rem;
  }
  .p62 #content .block4 ul {
    font-size: 1.15rem;
  }
  #footer ul {
    justify-content: center;
    text-align: center;
    flex-flow: column;
    margin: 0 auto;
  }
  #footer ul li {
    text-align: center;
    padding-right: 0;
    border: none;
  }
  #footer p {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .land-main #content ul li {
    width: 50%;
  }
  .p62 #content .block2 .boxes a.signup,
  .p62 #content .block2 .boxes a.redeem,
  .p62 #content .block2 .boxes a.track {
    zoom: 0.3;
  }
  .section-steps .periods {
    grid-template-columns: auto;
  }
  .section-steps .periods li:first-child {
    border-right: 0;
    border-bottom: 1px solid #00ffe0;
  }
  .section-steps .boxes {
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-steps .boxes a {
    width: 180px;
    height: 180px;
    gap: 1rem;
    font-size: 1.1rem;
  }
  .section-steps .boxes img {
    width: 80px;
    max-height: 80px;
  }
  #product-filters-cat-a li,
  #product-filters-cat-b li {
    width: 80px;
    height: 80px;
    padding: 0.75rem 0.5rem;
  }
  .section-eligible-products table tr td,
  .section-eligible-zoneb table tr td {
    font-size: 1.1rem;
  }
  .p19 #extend_content {
    padding: 0;
  }
  .p19 #content {
    padding: 2rem 1rem;
  }
  html:lang(ar) .section-steps .periods li:first-child,
  html:lang(he) .section-steps .periods li:first-child {
    border-left: none;
  }
}
@media (max-width: 420px) {
  #header_text p:nth-of-type(1) img:nth-of-type(1) {
    display: none;
  }
  #header_text p:nth-of-type(1) img:nth-of-type(2) {
    display: block;
  }
  #product-filters-cat-b {
    gap: 1rem;
  }
  #product-filters-cat-b li {
    width: 54px;
    height: 54px;
    padding: 0.5rem;
    border-width: 2px;
  }
  #product-filters-cat-a li {
    border-width: 2px;
  }
  .section-eligible-products .zone p {
    font-size: 1.2rem;
  }
}
