@font-face {
  font-family: 'EuclidCircular';
  src: url('/assets/fonts/EuclidCircular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'GraphikBold';
  src: url('/assets/fonts/Graphik-Bold-Trial.otf') format('truetype');
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "EuclidCircular", Arial, Helvetica, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
}

p {
  opacity: 1 !important;
}

button {
  cursor: pointer !important;
}

.no-transition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.ham-menu-button {
  background-color: transparent;
  border: none;
  outline: none;

  cursor: pointer;
}

.header nav ul {
  display: none;
}

.drawer-menu {
  width: 100vw;
  height: 100%;
  padding: 16px 14px 16px 24px;

  background-color: #272727;
  color: white;

  position: fixed;
  top: 0px;
  z-index: 101;

  display: flex;
  flex-direction: column;

  font-size: 18px;
  font-weight: bold;
  font-family: "EuclidCircular";

  transform: translate3d(100%, 0, 0);
  transition: cubic-bezier(0.19, 1, 0.22, 1) 300ms;

  user-select: none;
  -webkit-tap-highlight-color: #1b1b1b35;
}

.animate-drawer {
  transform: translate3d(0, 0, 0);
  transition: cubic-bezier(0.19, 1, 0.22, 1) 300ms;
}

.drawer-menu > ul {
  list-style: none;
  line-height: 50px;
}

.drawer-menu > ul > li {
  cursor: pointer;
}

.close-drawer-icon {
  width: 24px;
  height: 24px;
}

.drawer-close-button {
  width: fit-content;
  margin: 0px 0px 35px auto;
  background-color: transparent;

  border: none;
  outline: none;

  display: flex;
  justify-content: flex-end;

  cursor: pointer;
}

.drawer-sub-menu {
  list-style-type: disc;

  user-select: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.drawer-sub-menu li {
  margin-left: 32px;

  font-size: 16px;
  font-weight: 500;
}

.drawer-menu li a {
  width: 100%;
  display: block;

  text-decoration: none;
  color: white;
}

.sub-menu-items {
  display: none;
}

.show-drawer-sub-menu {
  width: 100%;
  display: block;

  animation-name: expand;
}

.show-drawer-sub-menu li {
  list-style: disc;
  font-size: 14px;
  margin-left: 40px;
  font-weight: 100 !important;
}

.menu-item-container {
  width: 100%;
  padding-right: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.down-arrow-icon {
  width: 14px;

  transform: rotate(180deg) !important;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) 500ms !important;
}

.rotate-sub-menu-arrow {
  transform: rotate(0deg) !important;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) 500ms !important;
}

.hide-drawer {
  display: none !important;
}

.image-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  color: white;
  text-align: center;
  font-family: "Graphik";

  margin-top: -60px;
  padding-bottom: 80px;
  background: transparent;
}

.banner-heading {
  font-size: 24px;
  font-weight: 400;

  z-index: 98;
}

.banner-heading span{
  font-weight: bold !important;
}

.banner-tagline {
  width: 70%;
  margin-top: 12px;

  font-size: 14px;
  font-weight: 300;
  color: #777777;
}

.gradient-overlay {
  position: absolute;
  top: 0px;

  height: 100%;
  width: 100%;
  background: linear-gradient(to top, #111111 0%, #11111100);
}

.image-banner-box {
  width: 100%;
  height: 63%;
  padding-top: 54px;
  overflow: hidden;

  position: relative;
}

.image-banner-box img {
  width: 100%;
}

.image-banner-box.homepage {
  display: flex;
  justify-content: center;
}

.image-banner-box.homepage img {
  width: unset;
  height: 100%;
}

.banner-tagline.product-page {
  width: 100%;
  margin-bottom: 16px;

  font-size: 13px;
}

.platform-ratings {
  width: 100%;
  margin: 48px 0px;


  display: flex;
  justify-content: space-between;
  align-items: center;
}

.platform-with-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.platform-with-rating span {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.platform-icon {
  width: 18px;
  height: 18px;
}

.platform-rating {
  margin: 0px 3px 0px 6px;

  font-size: 16px;
  font-weight: 600;
}

.platform-rating-icon {
  height: 15px;
  margin: 2px 0px;
}

.platform-reviews {
  font-size: 10px;
  font-weight: 500;
  color: #A8A8A8;
}

.platform-ratings.product-page {
  width: 80%;
  margin: 35px auto 64px auto;
}

.image-banner-text.product-page {
  padding-bottom: 0px;
}

.gradient-button-outline {
  width: 103px;
  height: 30px;
  padding: 1px;
  margin: 0px 8px;

  border: none;
  outline: none;
  border-radius: 30px;

  user-select: none;
}

.gradient-outlined-button-bg {
  width: 100%;
  height: 100%;
  color: #111111;
  background-color: #FFFFFF;

  border-radius: inherit;

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;
}

.amber-button-gradient {
  color: black !important;
  background: linear-gradient(to right, #FFBE00, #FF6B00);
}

.ocean-button-gradient {
  background: linear-gradient(to right, #50BED6, #086EE5);
}

.lavender-button-gradient {
  background: linear-gradient(#B84DFF, #664DFF);
}

.blue-green-button-gradient {
  background: linear-gradient(to right, #1778AC, #4C74DA);;
}

.outlined-button-bg {
  width: 100%;
  height: 100%;
  color: white;
  background-color: #191919;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  user-select: none;
  pointer-events: none;
  border-radius: 30px;

  text-decoration: none;
  cursor: pointer;
}

.gradient-button {
  width: 103px;
  height: 30px;
  margin: 0px 8px;

  border: none;
  outline: none;

  font-size: 12px;
  font-weight: bold;
  color: white;
}

.outlined-button {
  width: 103px;
  height: 30px;
  margin: 0px 8px;
  background-color: transparent;

  border: 1px solid #111111;
  outline: none;

  font-size: 12px;
  font-weight: bold;
  color: #111111;
}

.button-rounded {
  border-radius: 30px;
  cursor: pointer;

  text-decoration: none;

  display: flex;
  justify-content: center;
  align-items: center;
}

.button-squared {
  border-radius: 8px;
  cursor: pointer;
}

.cust-reviews {
  width: 100%;
  overflow: hidden;
  padding: 64px 0px;
  background-color: #F5F5F5;
  text-align: center;
}

.cust-reviews.homepage {
  padding: 64px 0px 0px 0px;
}

.swiper.customer-reviews {
  padding: 0px 32px;
}

.customer-reviews-heading {
  font-size: 24px;
  font-weight: 600;

  margin-bottom: 36px;
}


.customer-review-card-bg-border {
  padding: 1px;
  background: linear-gradient(to right, #1778AC, #4C74DA);
  border-radius: 8px;
}

.customer-review-card {
  height: 310px;
  padding: 16px 12px;
  border-radius: 8px;
  background: linear-gradient(to right, #EDF3F8, #E0E6EE);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.customer-photo {
  width: 44px;
  height: 44px;
  padding: 1px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #F4F4F4, #2E2E2E, #F4F4F4);
}

.customer-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.customer-details {
  display: flex;
  margin-bottom: 14px;
}

.customer-photo {
  margin-right: 12px;
}

.customer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.customer-name {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
}

.review-platform {
  font-size: 10px;
  font-style: italic;
  color: #FFFFFF80;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  margin-top: 4px;
}

.review-platform img {
  margin-right: 6px;
}

.review-description {
  width: 100%;
  color: #444444;
  text-align: left;
  word-wrap: break-word;
  text-transform: capitalize;

  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.12px;
}

.customer-history {
  font-size: 10px;
  color: #FFFFFF80;
  margin: 2px 0px 5px 0px;
}

.review-platform-logo {
  height: 16px;
}

.multiline-gradient-amber {
  text-align: center;
  background-clip: text !important;
  background: linear-gradient(#FFBE00, #FF6B00);

  -webkit-background-clip: text !important;
  -moz-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.text-gradient-lavender {
  background: linear-gradient(to right, #B84DFF, #664DFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-container {
  width: 100%;
  margin-left: 0px;
  padding: 32px 16px 100px 16px;
  background-color: #FFFFFF;

  position: relative;
}

.footer-link-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;

  margin-bottom: 38px;
}

.solutions-products, .policies-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.solutions-products {
  margin: 0px 60px 0px 10px;
}

.footer-heading {
  font-size: 14px;
  color: #111111;
  font-weight: 600;
  margin: 0px !important;
}

.footer-hr {
  width: 76px;
  background-color: #F4F4F4;
  margin: 16px 0px;
}

.footer-link {
  font-size: 12px;
  font-weight: 400;
  color: #848997 !important;

  text-decoration: none;
  margin: 6px 0px;
}

.app-availability-container {
  text-align: center;

  margin-bottom: 40px;
}

.app-availability-heading {
  font-size: 12px;
  color: white;

  margin-bottom: 16px;
}

.app-availability-platforms img:first-child {
  margin-right: 12px;
}

.app-availability-platforms img:last-child {
  margin-left: 12px;
}

.app-availability-platforms a {
  display: inline-block;
}

.brand-description {
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.brand-description img {
  height: 23px;
}

.brand-tagline {
  width: 60%;
  margin-top: 6px;

  font-size: 10px;
  font-weight: 400 !important;
  color: #848997 !important;
  line-height: 18px;
  letter-spacing: 0.6px;
}

.brand-description span {
  color: #FFBE00;
}

.right-reserved {
  width: 90%;
  margin: 32px auto 0px auto;
  font-weight: 200 !important;

  font-size: 12px;
  color: #848997;
  text-align: center;
}

.social-links {
  width: 100%;
  margin: 16px 0px;

  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  bottom: 90px;
  left: 0px;
}

.social-links ul {
  width: 60%;
  list-style: none;
  margin: 0 auto;

  display: flex;
  justify-content: center;
}

.contact-ajjas {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-ajjas {
  width: 70%;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-ajjas a {
  text-decoration: none;
  color: #CCCCCC;

  font-size: 10px;
  font-weight: 500;

  display: flex;
  align-items: center;
}

.contact-ajjas a img {
  height: 12px;
  margin-right: 4px;
}

.contact-ajjas a:first-child {
  margin-right: 8px;
}

.contact-ajjas a:last-child {
  margin-left: 8px;
}

.why-use-ajjas {
  width: 100%;
  padding: 64px 16px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.reasons-accordion-container {
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.why-use-ajjas-heading {
  font-size: 24px;
  font-weight: 600;
  text-align: center;

  margin-bottom: 32px;
}

.reasons-accordion-container details summary {
  list-style: none;
  padding: 12px 16px 8px 8px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reasons-accordion-container details summary p {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.5px;
  padding: 0px;
}

.reasons-accordion-container details summary .accordian-arrow-down-icon {
  transform: rotate(-90deg);
  transition: cubic-bezier(0.19, 1, 0.22, 1) 500ms;
}

.reasons-accordion-container details[open] summary .accordian-arrow-down-icon,
.why-use-ajjas details[open] > summary > .accordian-arrow-down-icon {
  transform: rotate(90deg) !important;
  transition: cubic-bezier(0.19, 1, 0.22, 1) 500ms;
}

.reasons-accordion-container details summary::-webkit-details-marker {
  display: none
}

.accordian-gradient-container {
  width: 100%;
  margin: 2px 0px;
  background: linear-gradient(to right, #838383, #2E2E2E, #828282);
}

.reasons-accordion-container details {
  width: 100%;
  background: linear-gradient(to right, #E6E8E9, #D7D7D7BD);
  
  height: 40px;
  overflow: hidden;
  transition: cubic-bezier(0.19, 1, 0.22, 1) 300ms !important;
}

.reasons-accordion-container details p {
  font-size: 13px;
  font-weight: 400;
  color: #444444;
  
  text-align: left;
  padding: 0px 16px 8px 8px;
}

.seperator-gradient {
  width: 50%;
  height: 1px;
  background: linear-gradient(to right, #F4F4F4, #2E2E2E);
  margin: 8px 0px 8px 8px;
}

.ajjas-key-factors {
  padding: 25px 40px 32px 16px;
  background-color: #EEEEEE;
}

.factor-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.factor-icon-box {
  width: 48px;
  min-width: 48px;
  height: 48px;
  margin-right: 24px;
  background: linear-gradient(to right, #1778AC, #4C74DA);

  overflow: hidden;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 16px;
  font-weight: bold;
}

.factor-detail {
  width: 90%;
}

.factor-description {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.5px;
  
  color: #444444;
}

.factor-row.center-row {
  margin: 32px 0px;
}

.factor-heading {
  width: fit-content;
  font-weight: bold;
}

.image-banner-box.ajjas-for-everyone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-banner-box.ajjas-for-everyone img {
  height: 90%;
  width: unset;
  margin: 20px 0px 0px 30px;
}

.gradient-overlay.ajjas-for-everyone {
  height: 94%;
}

.fixed-buy-now-footer {
  width: 100%;
  padding: 16px;
  background-color: #1D1C1C;

  position: fixed;
  bottom: 0px;
  z-index: 100;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buy-now-footer-price-dets {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.buy-now-footer-price-dets .slashed-price {
  font-size: 12px;
  font-weight: 500;
  color: #444444;
}

.buy-now-footer-price-dets .slashed-price span {
  text-decoration: line-through;
  margin-bottom: 6px;
}

.buy-now-footer-price-dets .discounted-price {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.fixed-buy-now-footer > button {
  box-shadow: 0px 0px 20px 0px rgba(244, 244, 244, 0.30);
}

.swiper {
  width: 100%;
  overflow: hidden;

  display: flex;
}

.swiper-wrapper {
  display: flex;
}

.ajjas-products-comparision {
  width: 100%;
  background: #F4F4F4;
  box-shadow: 
    5px 5px 15px rgba(230, 235, 241, 0.8),
    -5px 5px 15px rgba(244, 244, 244, 0.8);
  padding: 170px 16px 70px 16px;
  margin: 0px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-comparision-heading {
  margin-bottom: 32px;

  font-size: 24px;
  font-weight: bold;

  text-align: center;
}

.ajjas-products-comparision table {
  width: 100%;
  overflow: hidden;
  border: 1px solid #848997;
  border-radius: 20px;

  border-collapse: separate;
  border-spacing: 0.5px;
  border-style: hidden;
  box-shadow: 0 0 0 1px #666;
}

.product-comparision-heading-row {
  text-align: center;

  font-size: 14px;
  font-weight: bold;
}

.product-comparision-heading-row th {
  padding: 10px;
  font-weight: bold;
  color: #111111;
}

.ajjas-products-comparision tbody {
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  background-color: #E5EAF2;
  text-align: center;
}

.ajjas-products-comparision tbody tr td {
  padding: 10px 0px;
  font-weight: bold;
}

.ajjas-products-comparision tbody tr td:not(:first-child), .ajjas-products-comparision thead tr th:not(:first-child) {
  background-color: #F5F5F5;
}

.ajjas-products-comparision tbody tr td:first-child {
  text-align: left;
  padding: 18px 20px 18px 16px;

  display: flex;
  justify-content: flex-start;
  align-items: center;

  font-weight: 500;
}

.ajjas-products-comparision tbody tr td:first-child img,
.ajjas-products-comparision tbody tr td:first-child svg {
  margin-right: 8px;
}

.ajjas-products-comparision thead tr, .ajjas-products-comparision tbody tr {
  outline: 0.9px solid #848997 !important;
}

.ajjas-products-comparision .sideways-border {
  border-left: 2px solid #E5EAF2;
  border-right: 2px solid #E5EAF2;
}

.ajjas-products-comparision .sideways-border.first {
  border-right: 2px solid #E5EAF2;
}

.shop-page.no-border {
  border-bottom: none;
  outline: none !important;
}

.plan-styles td, .plans-header td {
  padding: 4px 0px!important;
}

.plans-header td:first-child {
  padding: 10px 0px 0px 16px !important;
}

.plan-styles td:first-child {
  padding-left: 36px !important;

  font-weight: bold;
}

.plan-styles:last-child td {
  padding-bottom: 10px !important;
}

.plan-styles td:not(:first-child) {
  padding: 4px 10px !important;
}

.ajjas-gps-products {
  width: 100%;
  overflow: hidden;
  padding: 0px 20px;

  background: #e6ebf178;
  box-shadow: #E6EBF1 0px 7px 60px 0px;
}

.ajjas-product-card-outline {
  width: 100%;
  height: fit-content;
  padding: 0px;
  border-radius: 8px;
  background: linear-gradient(to bottom right, #F4F4F4, #2E2E2E, #F4F4F4);
  box-shadow: 1px 1px 8px 0px #0000001A;
}

.ajjas-product-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ajjas-product-image {
  width: 100%;
  background-color: #FFFFFF;

  display: flex;
  justify-content: center;
  align-items: center;
}

.ajjas-product-image img {
  width: 90%;
}

.ajjas-product-details {
  width: 100%;
  padding: 16px 24px 20px 24px;
  background-color: #F5F5F5;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ajjas-product-name {
  margin-bottom: 8px;

  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}

.ajjas-product-name span {
  white-space: nowrap;
}

.ajjas-product-price {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ajjas-product-discount {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #35CA32;
}

.ajjas-product-slashed-price {
  font-size: 12px;
  font-weight: 500;
  color: #555555;
  text-decoration: line-through;

  margin: 0px 5px;
}

.ajjas-product-discounted-price {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

.ajjas-product-details > img {
  margin: 8px 0px 16px 0px;
}

.purchase-from-ajjas-website {
  width: 100%;
  padding: 64px 16px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.purchase-from-ajjas-website-heading {
  font-size: 24px;
  font-weight: 600;
  color: #111111;

  text-align: center;
  margin-bottom: 32px;
}

.purchase-from-ajjas-website table {
  width: 100%;
  color: #00000099;

  border: 1px solid #444444;
  border-radius: 20px;

  border-collapse: collapse;
  border-style: hidden;
  box-shadow: 0 0 0 1px #666;

  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.purchase-from-ajjas-website table thead th {
  text-align: center;
  padding: 20px 0px 10px 0px;
}

.purchase-from-ajjas-website table tbody tr td {
  padding: 10px 10px 12px 12px;
}

.purchase-from-ajjas-website tr {
  border-bottom: 1px solid #444444;
}

.purchase-from-ajjas-website table tbody tr td:first-child {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  text-align: left;
  padding-right: 24px !important;
}

.purchase-from-ajjas-website table tbody tr td:first-child,
.purchase-from-ajjas-website table tbody tr td:last-child {
  font-weight: 400;
  color: #00000080;
}

.purchase-from-ajjas-website table tbody tr td:first-child img {
  margin-right: 8px;
}

.purchase-from-ajjas-website table thead tr th img {
  width: 90px;
}

.ajjas-column {
  width: 60px;
}

.amazon-column {
  width: 46px;
}

.purchase-from-ajjas-website .active-background {
  background-color: #DDDDDDB2;
}

.purchase-from-ajjas-website .add-opacity {
  opacity: 0.6;
}

.buy-ajjas-for-car {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 10px 0px 20px 0px;
}

.buy-ajjas-for-car-heading {
  width: 80%;

  font-size: 24px;
  font-weight: bold;
}

.buy-ajjas-for-car-subheading {
  font-size: 14px;
  color: #111111;

  margin: 8px 0px 24px 0px;
}

.highlights-ajjas-go {
  width: 100%;
  padding: 10px 20px 20px 12px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.ajjas-go-highlights-heading {
  font-size: 12px;
  font-weight: 600;
}

.ajjas-go-highlights {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;

  padding: 12px 0px 0px 0px;
}

.ajjas-go-highlights span {
  width: 40%;
  white-space: nowrap;
  
  display: flex;
  justify-content: flex-start;
  align-items: center;

  font-size: 11px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.6px;
  
  color: #444444;
  margin: 6.5px 0px;
}

.ajjas-go-highlights.for-kids span {
  width: 42%;
}

.ajjas-go-highlights span svg, .ajjas-go-highlights span img{
  min-width: 11px;
  width: 11px;
  margin-right: 6px;
}

.ajjas-go-for-everyone-buy-button {
  width: 70%;
  margin: 32px auto 0px auto;

  font-weight: 600;
}

.custom-modal-overlay {
  width: 100%;
  height: 100%;
  padding: 32px 16px;
  background-color: rgba(0, 0, 0, 0.6);

  position: fixed;
  z-index: 102;
  left: 0px;
  top: 0px;

  display: none;
  justify-content: center;
  align-items: center;

  animation-name: fade-in;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-duration: 400ms;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0px)
  }
}

.custom-modal{
  width: 100%;
  padding: 32px 16px;
  border-radius: 8px;
  background-color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.custom-modal.home-page {
  height: 90%;
  overflow: auto;

  background-color: #191919;
  color: white !important;

  display: flex;
  justify-content: flex-start;
  align-items: center;

  position: relative !important;
}

.custom-modal.home-page p, .custom-modal.home-page strong {
  color: white !important;
}

.custom-modal-message {
  width: 100%;
  text-align: center;
  line-height: 24px;

  color: #111111;
  font-size: 16px;
  font-weight: 500;
}

.custom-modal-btn-group {
  display: flex;
}

.custom-modal-btn-group {
  margin-top: 20px;
}

.custom-modal-btn-group button {
  margin: 0px 20px;
  height: 36px;
  font-size: 14px;
  font-weight: bold;
}

.custom-modal-overlay.policy-modal-custom .modal-header button {
  display: none;
}

.custom-modal-overlay.policy-modal-custom .modal-body p:first-child {
  margin-top: 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 300;
}

.custom-modal-overlay.policy-modal-custom .modal-footer button {
  display: none;
}

.modal-close-button {
  width: 20px;
  height: 20px;

  position: absolute;
  top: 10px;
  right: 10px;

  padding: 15px;
  border-radius: 50%;
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;

  font-size: 20px;
  font-weight: bold;
}

.privacy-policy, .return-policy, .usage-terms-and-conditions, .sales-terms-and-conditions {
  cursor: pointer;
}

.show-device-related-yt-video {
  width: inherit;
  height: 100%;
  border: none;
  border-radius: 20px;

  position: absolute;
  top: 0px;
  left: 0px;
}

.testimonial-video-play-button {
  width: 30px;
  height: 30px;
  padding-left: 2px;
  background-color: #1E1D1D;

  border-radius: 50%;
  border: 2px solid #FFFFFF33;

  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testimonial-video-play-button img {
  width: 15px !important;
  scale: 1;
}

.animate-all {
  opacity: 1;
  /* transform: translateY(20px);
  animation: slide-in;
  animation-duration: 500ms;
  animation-timing-function: ease; */
}

.animate-all.visible {
  opacity: 1;
  /* transform: translateY(0); */
  /* transition: opacity 0.5s ease, transform 0.5s ease; */
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

.no-animation {
  opacity: 1 !important;
  transform: unset !important;
  transition: unset !important;
  animation:  unset !important;
}

details summary .accordian-arrow-up-icon,
details summary .accordian-arrow-up-icon {
  transform: rotate(-180deg) !important;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 800ms !important;
}

details[open] summary .accordian-arrow-up-icon,
details[open] summary .accordian-arrow-up-icon {
  transform: rotate(0deg) !important;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 800ms !important;
}

.ajjas-gps-products.wireless {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ajjas-gps-products.wireless .ajjas-product-card-outline {
  margin-right: 0px !important;
}

.lets-talk-button.desktop-only {
  display: block !important;
}

.lets-talk-button.mobile-only {
  display: none;

  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 0);

  font-weight: 600;
}

button.gradient-button-outline, button.gradient-button-outline a {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ajjas-gps-products {
  padding-top: 20px;
  padding-bottom: 20px;
}

.error-message {
  color: red;
  min-height: 20px;
}

.app-intro-subheading {
  display: flex;
}

.app-intro-subheading span {
  margin-left: 8px;
}

.checkout-form input[type=text],
.checkout-form input[type=email],
.checkout-form input[type=number] {
  color: #111111;
}

.checkout-form input::placeholder,
.checkout-form select {
  color: #AAAAAA;
}

.checkout-form option {
  background-color: #1E1A22;
  color: #AAAAAA;
}

.checkout-form input:active,
.checkout-form input:focus,
.checkout-form input:valid {
  border: 1px solid #1778AC;
  box-shadow: none;
}

.checkout-form input:invalid {
  border: 1px solid #FF4A4A;
}

.checkout-form input:placeholder-shown {
  border: 1px solid #CCCCCC;
}

.checkout-form input:disabled {
  background-color: rgba(128, 128, 128, 0.429);
  color: #444444 !important;
  font-weight: 500;

  border: 1px solid #1778AC;
}

.checkout-form input:disabled::placeholder {
  color: #444444;
}

.checkout-form select:active,
.checkout-form select:focus {
  border: 1px solid #1778AC;
  outline: none;
  box-shadow: none;
}

.popup_otp_holder, .source {
  width: 100%;
}

.source {
  margin-bottom: 20px;
}

.source select {
  width: 100%;
  padding: 9px 14px;
  background-color: transparent;
  color: white;

  border: 0.845px solid #F4F4F4;
  border-radius: 7px;

  outline: none;
}

.popuptextnum {
  animation-name: slide-in;
  animation-duration: 700ms;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(25px);
  } to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.popup_err, .popup_ok {
  font-size: 13px !important;
  text-align: center;
  margin-top: 10px;
}

.contact-banner-form-btn, .contact-form-wrapper {
  transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 500ms;
}

.contact-banner-form-btn {
  margin: 0px 0px 10px 0px !important;
  border: none !important;
}

.form-sub-inputs-wrapper {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-form-modal-overlay {
  width: 100vw;
  height: 100vh;
  padding: 20px 0px 0px 0px;
  background-color: rgba(0, 0, 0, 0.7);

  position: fixed;
  z-index: 110;
  top: 0px;
  left: 0px;

  display: none;
  justify-content: center;
  align-items: center;

  animation: slide-in;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-duration: 100ms;
}

.contact-form-modal {
  width: 42%;
  padding-bottom: 24px;
  background-color: #2E2E2E;

  border-radius: 10px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}

.contact-form-modal img {
  width: 100%;
  margin-bottom: 40px;
}

.contact-form-wrapper {
  width: 100%;
  margin: 0px;
  padding: 0px 18px;
  background-color: #2E2E2E;

  border-radius: 0px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.contact-form-wrapper input {
  margin-top: 0px;
}

.contact-form-heading {
  font-size: 20px;
  font-weight: 600;

  margin-bottom: 25px;
}

.contact-form-wrapper input {
  width: 100%;
  padding: 9px 14px;
  margin-bottom: 16px;

  background-color: transparent;
  color: white;

  border: 0.845px solid #F4F4F4;
  border-radius: 7px;

  outline: none;
}

.contact-banner-form-btn {
  width: 50% !important;
  height: unset !important;

  margin-top: 10px !important;
  padding: 10px 0px !important;

  font-weight: 600;
}

.thank-you-msg {
  width: 60%;
  margin: 0 auto 10px auto;
  text-align: center;

  font-size: 30px;
  font-weight: 600;
}

.thank-you-sub-msg {
  width: 40%;
  margin: 0 auto 10px auto;
  text-align: center;

  font-size: 16px;
  font-weight: 400;
  color: #D9D9D9;
}

.modal-app-promotion {
  width: 100%;
  margin: 80px 0px 0px 0px;

  position: inherit;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-new-content-container {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  animation: slide-in;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-duration: 700ms;
}

.close-cross-icon {
  width: 30px !important;
  border-radius: 50%;

  cursor: pointer;

  position: absolute;
  top: 10px;
  right: 10px;

  padding: 4px;
}

.close-cross-icon:hover {
  background-color: #11111111;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  } to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.app-promotion-heading {
  width: 40%;
  margin: 0 auto 8px auto;
  text-align: center;

  font-size: 12px;
  font-weight: 400;
  color: rgba(217, 217, 217, 0.50);
}

.app-platforms {
  display: flex;
}

.modal-app-promotion .app-platforms a img {
  width: 100px;
  height: unset;
  margin: 8px 11px;
}

.contact-form-modal .thank-you-illustration {
  width: 70%;
  margin: 65px auto 51px auto;
}

.heading-font h1, .heading-font h2 {
  font-family: "EuclidCircular";
}

.new-contact-form-modal {
  background-color: white;
  color: black;
  padding: 32px;
  border-radius: 30px;

  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-image: url("/assets/images/ContactFormBg.png");
  object-fit: cover;
}

.modal-heading-gradient {
  background: linear-gradient(180deg, #111111 26.53%, #46515B 88.27%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  font-size: 32px;
  font-family: "GraphikBold";
}

.modal-subheading {
  font-size: 18px;
  font-weight: 500;
  color: #848997;
}

.form-and-image-container {
  margin-top: 36px;
  padding: 0px;
  border-radius: 20px;
  background-color: #FFFFFF40;

  backdrop-filter: blur(380px);
  box-shadow: 2px 2px 12px 0px #00000033;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-form-container {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.modal-form-container .form-heading {
  font-size: 30px;
  font-weight: 600;
  color: #111111;
}

.modal-form-container .form-subheading {
  font-size: 16px;
  font-weight: 400;
  color: #848997;
}

.modal-form-container .contact-form {
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  align-items: flex-start;

  width: 100%;
  margin-top: 40px;
}

.modal-form-container .contact-form .text-input {
  background-color: #0000000D;
  border: 1px solid #00000033;
  border-radius: 5px;

  width: 100%;
  padding: 12px 16px;
  margin-bottom: 14px;

  font-size: 16px;
  font-weight: 500;
  color: #111111;
}

.modal-form-container .contact-form .text-input:not(:placeholder-shown) {
  background-color: #F3F3F3;
}

.modal-form-container .contact-form .radio-input-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;

  margin-top: 10px;
}

.modal-form-container .contact-form .business-radio-input {
  margin-right: 48px;
}

.modal-form-container .contact-form .radio-input-container label {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  cursor: pointer;
}

.modal-form-container .contact-form .radio-input-container label input {
  margin-right: 8px;
}

.form-and-image-container .form-image-container {
  margin-left: 24px;
}

.modal-form-container .contact-form .contact-form-submit-button {
  width: 100%;
  margin-top: 14px;
  padding: 12px 0px;
  background: linear-gradient(90deg, #1778AC 0%, #4C74DA 100%);

  border: none;
  border-radius: 5px;

  font-size: 15px;
  font-weight: 500;
  color: #F3F3F3;

  opacity: 1;
}

.modal-form-container .contact-form .contact-form-submit-button.disabled-btn {
  opacity: 0.5;
}

.modal-form-container .contact-form .error-message {
  color: red;
  margin: 5px 0px 0px 5px;
  font-size: 13px;
}

.modal-form-container .contact-us-form-success-msg {
  font-size: 18px;
  font-weight: 500;
  color: #219128;

  text-wrap: wrap;
  text-align: left;

  max-width: 420px;
  margin-top: 16px;
}

.modal-form-container .contact-us-form-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.new-contact-form-modal.section {
  width: 100%;
  padding: 72px 180px 80px 180px;
}

.form-and-image-container.section {
  width: 100%;
}

.modal-form-container.section {
  padding: 16px 40px;
  margin-top: 48px;
}

.form-image-container.section img {
  width: 500px;
  margin-right: 30px;
  margin-top: 25px;
}

.form-image-container img {
  margin-right: 10px;
  margin-top: 8px;
}

.get-in-touch-section{
  width: 100%;
  background-color: #F5F5F5;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.out-of-stock-btn {
  background: #d24343;
  box-shadow: unset !important;
  cursor: not-allowed !important;
}

@media screen and (max-width: 20cm) {
  .lets-talk-button.mobile-only {
    display: block !important;
  }

  .lets-talk-button.desktop-only {
    display: none !important;
  }

  .contact-form-modal {
    width: 90%;
    top: 46%;
  }

  .contact-form-modal .thank-you-illustration {
    width: 90%;
  }

  .thank-you-msg {
    width: 80%;
    font-size: 20px;
  }

  .thank-you-sub-msg {
    font-size: 14px;
    width: 64%;
  }

  .app-promotion-heading {
    font-size: 12px;
    width: 64%;
  }

  .product-cards-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    padding: 0px 16px;
  }

  .product-cards-container.ajjas-lite {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 40px;
  }

  .wired-device-card, .wireless-device-card {
    border-radius: 10px;
    padding: 16px 0px 42px 0px;
    background-color: #FFFFFF;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .wired-device-card {
    margin-bottom: 30px;
  }

  .wired-device-card img, .wireless-device-card img {
    width: 100%;
  }

  .wired-card-title, .wireless-card-title {
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 400;
  }

  .wired-product-name, .wireless-product-name {
    font-size: 24px;
    font-weight: bold;
  }

  .wired-product-name {
    color: #00A8E2;
  }

  .wired-card-subtitle, .wireless-card-subtitle {
    color: #888888;
    margin: 6px 0px 12px 0px;

    font-size: 14px;
    text-align: center;
    letter-spacing: 0.5px;
  }

  .product-description {
    max-width: 90%;
    margin: 16px 0px;
    color: #aaaaaa;

    font-size: 12px;
    text-align: center;
    letter-spacing: 0.5px;
  }

  .product-description br {
    display: none;
  }

  .product-description.ajjas-go {
    width: 85%;
  }

  .card-buttons {
    display: flex;
  }

  .ajjas-gps-products.home-page {
    margin: 50px 0px 0px 0px;
    padding: 30px 30px;
  }

  .new-product-tag {
    padding: 2px 20px;
    border-radius: 20px;

    position: absolute;
    top: -9.45px;
    left: 16px;
    z-index: 199;

    color: white;
    background: linear-gradient(to bottom, #B84DFF, #664DFF);

    font-size: 12px;
    font-weight: 600;
  }

  .ajjas-product-card-outline {
    position: unset;
  }

  .form-and-image-container .form-image-container {
    display: none;
  }

  .modal-form-container .form-heading {
    font-size: 22px;

    display: none;
  }

  .modal-form-container {
    width: 100%;
    padding: 0px;
  }

  .new-contact-form-modal .form-and-image-container {
    width: 100%;
    margin-top: 24px;
    box-shadow: unset;
  }

  .modal-form-container.section {
    box-shadow: 2px 2px 12px 0px #00000033;
    border-radius: 12px;
  }

  .modal-form-container .contact-form {
    width: 100%;
    margin-top: 14px;
  }

  .new-contact-form-modal {
    width: 100%;
    padding: 16px;
    margin: 0px 16px;
  }

  .modal-form-container .form-subheading {
    font-size: 12px;
    margin-top: 4px;

    display: none;
  }

  .modal-heading-gradient {
    font-size: 24px;
    text-align: center;
  }

  .modal-subheading {
    font-size: 14px;
    margin-top: 4px;
  }

  .image-banner-text.product-page {
    margin-top: 40px;
  }

  .footer-contact-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;

    margin-top: 20px;
    font-size: 12px;
    color: #848997;
  }

  .footer-contact-container .support-call-icon  {
    width: 17px;
    margin: 0px -2px -3px -2px;
  }

  .footer-contact-container .for-business {
    margin-top: 20px;
  }

  .footer-contact-container img {
    width: 12px;
  }

  .right-reserved {
    margin-bottom: -60px;
    margin-top: 70px;
  }

  .social-links {
    bottom: 76px;
  }

  .image-banner-text.ajjas-wired-device {
    margin-top: 40px;
    padding-bottom: 30px;
  }

  .footer-container.specific-prod-page {
    padding-bottom: 140px;
  }

  .footer-container.specific-prod-page .social-links {
    bottom: 116px;
  }

  .image-banner-text.ajjas-ev {
    margin-top: 40px;
    color: #111111;

    padding-bottom: 0px;
  }

  .get-in-touch-buttons.ajjas-ev button {
    white-space: nowrap;
  }

  .new-contact-form-modal.section {
    padding: 72px 14px 80px 14px;
  }

  .modal-form-container.section {
    width: 100%;
    margin-top: 0px;
    padding: 16px;
  }

  .ajjas-for-financing-partners-body .landing-view div img {
    display: none;
  }

  .challenges-card-container {
    margin-top: 40px;
  }

  .financing-partners-bg-overlay .why-to-answer {
    margin: 0px 16px 24px 16px;
  }

  .ajjas-for-financing-partners-body .landing-view div {
    height: 500px;
    background-color: #11111188;
    padding: 40px 0px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .ajjas-for-financing-partners-body .get-in-touch {
    margin-left: 16px;
  }

  .ajjas-for-financing-partners-body .landing-view {
    min-height: 500px;
    background-image: url("/assets/images/FinancingPartnersLanding.png");
    background-size: cover;
  }

  .new-contact-form-modal {
    padding: 40px 16px 0px 16px;
  }

  .image-banner-box.about-us {
    height: 95%;
  }

  .image-banner-text.about-us {
    padding-bottom: 20px;
    margin-top: -180px;
    position: relative;
  }

  .image-banner-text.about-us .banner-heading {
    margin-bottom: 20px;
  }

  .image-banner-text .banner-subheading.about-us {
    font-size: 14px;
    padding: 0px 14px;
  }

  .image-banner-text .banner-subheading.about-us br {
    display: none;
  }

  .about-main {
    padding: 80px 40px;
  }

  .about-contact-text {
    text-align: left;
    display: unset;
    padding-left: 0px;
  }

  .product-carousel-cover, .product-details-container {
    position: relative;
    z-index: 99;
  }

  .footer-container.prod-page .footer-link-container {
    padding-top: 40px;
  }

  .footer-container.prod-page {
    padding-bottom: 140px;
  }

  .footer-container.prod-page .social-links {
    bottom: 116px;
  }

  .complete-order-button-class {
    margin: 0px;
  }
}