@charset "UTF-8";
/**********/
/* COLORS */
/**********/
/*(lightest grey allowed on #fff)*/
/*(lightest grey allowed on #fdf2e9)*/
/***********/
/* Font    */
/***********/
/*
- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/
/***********/
/* Spacing */
/***********/
/*- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
/***********/
/*   Misc  */
/***********/
/**************************/
/* GENERAL */
/**************************/
html {
  /* font-size: 10px; */
  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #555;
  background-color: #e7f5ff;
  padding: 0;
  margin: 0;
  /* Only works if there is nothing absolutely positioned in relation to body */
  overflow-x: hidden;
}

/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/
h1 {
  font-size: 36px;
  font-weight: 600;
}

h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 3vh;
}

h3 {
  font-size: 24px;
  margin-bottom: 1.5vh;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 10px;
}

a {
  text-decoration: none;
  color: #4dabf7;
}

a:visited {
  text-decoration: none;
  color: #4dabf7;
}

a:hover {
  text-decoration: none;
  color: #1c7ed6;
}

p {
  line-height: 1.6;
}

ul {
  padding-inline-start: 40px;
  padding-left: 40px;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  color: #333;
  /* color: #45260a; */
  /* color: #343a40; */
  letter-spacing: -0.5px;
}

.heading-primary {
  line-height: 1.05;
  margin-bottom: 3.2rem;
  color: #e7f5ff;
}

.section-header {
  text-align: center;
  color: #1864ab;
}

.section-even {
  padding-bottom: 100px;
  padding-top: 100px;
  padding-left: 100px;
}

.section-odd {
  background-color: #1864ab;
  padding-top: 100px;
  padding-left: 100px;
  padding-bottom: 100px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;
  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #e67e22;
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #cf711f;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fdf2e9;
  /* border: 3px solid #fff; */
  /* Trick to add border inside */
  box-shadow: inset 0 0 0 3px #fff;
}

.btn--form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}

.btn--form:hover {
  background-color: #fff;
  color: #555;
}

.link:link,
.link:visited {
  display: inline-block;
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #cf711f;
  border-bottom: 1px solid transparent;
}

.blue {
  background-color: #6dcff6;
  padding: 4px;
}

.orange {
  background-color: #fbb811;
  padding: 4px;
}

.green {
  background-color: #8dc73f;
  padding: 4px;
}

.site-body-title {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  font-size: 36px;
  font-weight: 500;
  text-align: center;
}

.site-header-hr {
  display: flex;
  justify-content: center;
  margin: 0px 20% 40px 20%;
  height: 1px;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

.p-body-center {
  margin: 60px 20% 20px 20%;
  text-align: center;
  font-size: 14px;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.p-10 {
  padding: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.p-body-center {
  margin: 10px 20% 60px 60px;
  text-align: left;
  font-size: 24px;
  line-height: 1.4;
}

.printButton {
  margin: 40px 2px 20px 2px;
  align-self: center;
}

@media print {
  .no-print,
  .no-print * {
    display: none !important;
  }
}
/**************************/
/* FLEX */
/**************************/
.flex-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-around;
}

.flex-cell-1 {
  flex: 100%;
}

.flex-cell-2 {
  flex: 50%;
}

.flex-cell-3 {
  flex: 33%;
}

.flex-cell-4 {
  flex: 25%;
}

.flex-cell-10pc {
  flex: 10%;
}

.flex-cell-20pc {
  flex: 20%;
}

.flex-cell-30pc {
  flex: 30%;
}

.flex-cell-40pc {
  flex: 40%;
}

.flex-cell-50pc {
  flex: 50%;
}

.flex-cell-60pc {
  flex: 60%;
}

.flex-v-center {
  align-items: center;
}

/**************************/
/* HEADER */
/**************************/
.page-header {
  margin: 0;
  padding: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1864ab;
  /* Because we want header to be sticky later */
  height: 7rem;
  padding: 0 4.8rem;
  position: relative;
}

.header .logo {
  height: 5rem;
}

/**************************/
/* NAVIGATION */
/**************************/
.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #1c7ed6;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #e7f5ff;
  background-color: #4dabf7;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #1c7ed6;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

/**************************/
/* HERO  */
/**************************/
.section-hero {
  background-color: #1864ab;
}

.section-p {
  padding: 80px 0 40px 0;
}

.hero {
  /* max-width: 130rem; */
  margin: 0 2.2rem;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #d0ebff;
}

.hero-img {
  width: 100%;
}

/**************************/
/* CARDS */
/**************************/
.choiceblock {
  color: #ffffff;
}

.icontop {
  max-width: 170px;
}

.card-text {
  margin: 14px;
}

.card-shadow {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  padding: 10px;
}

/* On mouse-over, add a deeper shadow */
.card-shadow:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/**************************/
/* MEDIA QUERIES */
/**************************/
/**************************/
/* BELOW 704px (Smaller tablets) */
/**************************/
/**************************/
/* BELOW 544px (Phones) */
/**************************/
@media (max-width: 34em) {
  .grid--2-cols,
  .grid--3-cols,
  .btn,
  .btn:link,
  .btn:visited {
    padding: 2.4rem 1.6rem;
  }
  .section-hero {
    padding: 2.4rem 0 6.4rem 0;
    margin: 50px;
  }
  .hero {
    padding: 0 3.2rem;
  }
  .hero-img {
    width: 80%;
  }
  .logo img {
    height: 1.2rem;
  }
}
/**************************/
/* BELOW 1344px (Smaller desktops) */
/**************************/
@media (max-width: 84em) {
  .hero {
    max-width: 120rem;
  }
  .heading-primary {
    font-size: 20px;
    color: white;
  }
}
/**************************/
/* BELOW 1200px (Landscape Tablets) */
/**************************/
@media (max-width: 75em) {
  html {
    /* 9px / 16px  */
    font-size: 56.25%;
  }
  .header {
    padding: 0 3.2rem;
  }
  .main-nav-list {
    gap: 3.2rem;
  }
  .hero {
    gap: 4.8rem;
  }
}
/**************************/
/* BELOW 944px (Tablets) */
/**************************/
@media (max-width: 59em) {
  html {
    /* 8px / 16px = 0.5 = 50% */
    font-size: 50%;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 6.4rem;
  }
  .hero-text-box,
  .hero-img-box {
    text-align: center;
  }
  .hero-img {
    width: 60%;
  }
  .logo img {
    height: 2.4rem;
  }
  /* MOBILE NAVIGATION */
  .btn-mobile-nav {
    display: block;
  }
  .main-nav {
    background-color: rgba(255, 255, 255, 0.97);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in;
    /* Hide navigation */
    /* Allows NO transitions at all */
    /* display: none; */
    /* 1) Hide it visually */
    opacity: 0;
    /* 2) Make it unaccessible to mouse and keyboard */
    pointer-events: none;
    /* 3) Hide it from screen readers */
    visibility: hidden;
  }
  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
  }
  .main-nav-list {
    flex-direction: column;
    gap: 4.8rem;
  }
  .main-nav-link:link,
  .main-nav-link:visited {
    font-size: 3rem;
  }
}
/**************************/
/* LOGIN */
/**************************/
.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.login-container {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 5px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0 20px 0;
  background-color: #fff;
  padding: 0 0 16px 0;
}

.login-form .logo {
  font-size: 20px;
  text-align: center;
  padding: 20px 20px 0;
  margin: 0;
}

.login-item {
  padding: 25px 25px 0;
  margin: 20px 20px 0;
  border-radius: 3px;
  min-width: 260px;
}

.login-user-img {
  height: 14px;
  width: 14px;
}

.login-lock-img {
  height: 14px;
  width: 14px;
}

.login-links {
  flex-direction: column;
}

.login-link {
  padding: 6px;
}

input {
  border: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.form input[type=password],
.form input[type=text],
.form input[type=submit] {
  width: 100%;
}

.form-login label,
.form-login input[type=text],
.form-login input[type=password],
.form-login input[type=submit] {
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.125);
  padding: 1rem;
}

.form-login label {
  background-color: #fff;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.form-login input[type=text],
.form-login input[type=password] {
  background-color: #ffffff;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.form-login input[type=text]:focus,
.form-login input[type=text]:hover,
.form-login input[type=password]:focus,
.form-login input[type=password]:hover {
  background-color: #eeeeee;
}

.form-login input[type=submit] {
  background-color: #4dabf7;
  color: #e7f5ff;
  font-weight: bold;
  text-transform: uppercase;
}

.form-login input[type=submit]:focus,
.form-login input[type=submit]:hover {
  background-color: #1c7ed6;
  cursor: pointer;
}

.form-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}

.hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.text--center {
  text-align: center;
}

.field-validation-error {
  color: red;
}

.validation-summary-errors {
  color: red;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 500px;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-dialog {
  margin: auto;
}

.modal-title {
  margin: 0;
  line-height: 1.5;
  color: black;
  font-size: 1.5rem;
  font-weight: 400;
}

.modal-body {
  padding: 1rem;
}

.modal-body h1 {
  margin-top: 0;
}

.modal-header button {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.show-modal.modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.modal-dialog {
  opacity: 0;
  transform: translateY(-100px);
  transition: 300ms opacity ease-out, 300ms transform ease-out;
}

.modal.animate-modal .modal-dialog {
  opacity: 1;
  transform: translateY(0);
}

.modal-input {
  display: flex;
}

.forgotPassword-icon {
  height: 14px;
  width: 14px;
  padding-top: 4px;
}

.forgotPassword-instructions {
  text-align: center;
  padding: 20px 20px 0 20px;
}

.forgotPassword-item {
  padding: 0 25px 5px 25px;
  margin: 5px 20px 0 20px;
  border-radius: 3px;
  min-width: 260px;
}

.signup-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: flex-start;
}

.signup-mainContent {
  width: 900px;
  margin: 0 20px 40px 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 9px;
  overflow-x: auto;
}

.signup-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: flex-start;
  align-items: baseline;
}

.newSignup-section {
  padding: 80px 100px 80px 100px;
  background-color: white;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
}

.newSignup-header {
  padding: 10px 0 10px 0;
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 39.96px;
  color: #303030;
  margin: 0;
  text-align: center;
}

.newSignup-container {
  max-width: 525px;
}

.newSignup-YourInfoSection {
  display: flex;
  row-gap: 20px;
  flex-direction: column;
}

.newSignup-InputContainer {
  display: flex;
  column-gap: 12px;
  row-gap: 12px;
  flex-wrap: wrap;
}

.newSignup-accountInfo {
  display: flex;
  row-gap: 20px;
  flex-direction: column;
}

.newSignup-title {
  color: #3A3A3A;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0;
}

.newSignup-InputItem {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  column-gap: 12px;
}

.newSignup-Input {
  border: none;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 0;
  padding: 28px 28px 12px 28px;
  width: 100%;
  font-family: "Roboto Slab", serif;
  font-weight: 300;
  font-size: 16px;
  color: black;
}

.newSignup-InputLabel {
  font-size: 16px;
  font-family: "Roboto Slab", serif;
  position: absolute;
  font-weight: 300;
  left: 28px;
  top: 22px;
  color: #3A3A3A;
  transition: all 0.2s ease;
  pointer-events: none;
}

.newSignup-InputItem input:focus + .newSignup-InputLabel,
.newSignup-InputItem input:not(:placeholder-shown) + .newSignup-InputLabel {
  top: 8px;
  font-size: 12px;
  color: #333;
}

.newSignup-SelectWrapper {
  position: relative;
  width: 100%;
}

.newSignup-CountrySelect {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 20px 28px;
  padding-right: 40px;
  background-color: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-family: "Roboto Slab", serif;
  font-weight: 300;
  cursor: pointer;
  color: #3A3A3A;
  width: 100%;
}

.newSignup-SelectWrapper::after {
  content: "▾";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  color: #555;
  font-size: 14px;
  pointer-events: none;
}

.newSignup-SelectWrapper:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}

.newSignup-CountrySelect:focus {
  outline: none;
  background-color: rgba(0, 0, 0, 0.07);
}

.newSignup-CountrySelect option {
  font-size: 12px;
}

.newSignup-SubmitButton {
  padding: 16px 24px;
  background-color: #22559C;
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: white;
}

.newSignup-SubmitContainer {
  text-align: center;
  margin-top: 28px;
}

/**************************/
/* SALES SUPPORT & SUPPORT TOOLS */
/**************************/
/*details*/
details {
  font-size: 14px;
  box-sizing: content-box;
  width: 60%;
  margin: 0 auto;
  background: #f5f5f5;
  margin-bottom: 10px;
  box-shadow: 0 0.1rem 1rem -0.5rem rgba(221, 219, 219, 0.4);
  border-radius: 5px;
  overflow: hidden;
  color: black;
}

summary {
  font-size: 14px;
  padding: 16px;
  display: block;
  background: rgb(191, 190, 190);
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}

summary:before {
  font-size: 14px;
  content: "";
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 18px;
  left: 1rem;
  transform: rotate(0);
  transform-origin: 0.2rem 50%;
  transition: 0.25s transform ease;
}

details[open] > summary:before {
  transform: rotate(90deg);
}

details summary::-webkit-details-marker {
  display: none;
}

details > p {
  padding: 10px 10px 10px 8px;
  margin-bottom: 0;
}

details > ul {
  padding-top: 10px;
  padding-bottom: 10px;
}

.salesSupport-header {
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.salesSupport-headerImage {
  max-height: 100%;
  max-width: 100%;
  height: 100%;
  text-align: center;
}

.salesSupport-card {
  line-height: 94px !important;
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.salesSupport-cardText {
  font-size: 20px;
}

.salesSupport-button {
  border: none;
  height: 50px;
  font-size: 16px;
}

/**************************/
/* SALES TOOLS */
/**************************/
.connect-items {
  max-width: 310px;
  font-size: 14px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.svg-prod-img {
  width: 51%;
  height: auto;
  margin-bottom: 14px;
}

.btn-factsheet {
  border: none;
  color: white;
  font-size: 15px;
  border-radius: 0.3rem;
  margin-top: 10px;
  padding: 10px 8px 10px 8px;
  cursor: pointer;
  font-family: inherit;
}

.btn-factsheet > a {
  color: white;
}

.factsheet-btns {
  align-self: stretch;
}

.btn-sys {
  background-color: #001f60;
}

.btn-desk {
  background-color: #de6d10;
}

.btn-mfd {
  background-color: #73c954;
}

.sales-tools-icon {
  width: 70px;
  height: 70px;
}

.sales-tools-features {
  background-color: #fff;
}

/**************************/
/* Training Video Categories */
/**************************/
.card-categories {
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-container {
  width: 600px;
  max-width: 100%;
  min-height: 262px;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  margin: 15px;
}

.categories-image {
  padding: 0 10px 0 10px;
  width: 40%;
  height: 160px;
}

.categories-body {
  display: flex;
  flex-direction: column;
  padding: 10px;
  min-height: 160px;
  width: 60%;
  justify-content: space-between;
}

.categories-text {
  text-align: center;
}

.videoCategory-subtitle {
  margin: 60px 10px;
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
}

.video-selection-image {
  max-width: 100%;
  max-height: 160px;
}

.categories-button {
  align-self: center;
}

.btn-video {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #e7f5ff;
  background-color: #4dabf7;
  width: 150px;
}

.btn-video:hover {
  background-color: #1c7ed6;
  cursor: pointer;
}

/**************************/
/* Training Videos List*/
/**************************/
.video-list-header {
  padding: 10px 0 10px 0;
}

.video-list-header img {
  min-height: 100px;
  min-width: 100px;
  max-height: 200px;
  max-width: 200px;
}

.video-list-container {
  background-color: #fff;
  margin: 10px 0 10px 0;
}

.video-row {
  color: #0b7cac;
  cursor: pointer;
  padding: 4px 0 4px 0;
  background: #a5d8ff;
}

.video-row:nth-child(2n+1) {
  background: #d0ebff;
}

.video-row:hover {
  color: #000;
  background-color: #1864ab;
}

.video-list-icon {
  padding-left: 14px;
}

/**************************/
/* Training Video*/
/**************************/
.videoContainer {
  flex: 0 0 50%;
}

.videoWrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #a5d8ff;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-title {
  font-size: 16px;
  font-weight: bold;
}

.video-descriptionContainer {
  max-width: 380px;
}

.video-description {
  flex-direction: column;
  align-items: left !important;
  text-align: left;
  padding: 30px;
  background-color: #fff;
  margin: 10px;
  border-radius: 25px;
}

.trainingVideo-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.trainingVideo-listingContainer {
  max-width: 762px;
  width: 60%;
}

.trainingVideo-videoListingContainer {
  width: 60%;
}

@media screen and (max-width: 960px) {
  .trainingVideo-videoListingContainer {
    width: 100%;
  }
}
/**************************/
/* Training Video Breadcrumb*/
/**************************/
#video-breadcrumb {
  background-color: #fff;
  padding: 1px;
}

#video-breadcrumb ul {
  list-style: none;
}

#video-breadcrumb ul li {
  display: inline;
} /* show list items horizontally */
/* Put an angle bracket (/) between list items */
#video-breadcrumb ul li + li:before {
  content: "/";
  padding: 10px;
}

#video-breadcrumb ul li a {
  text-decoration: none;
  color: #1864ab;
}

#video-breadcrumb ul li a:visited {
  text-decoration: none;
  color: #1864ab;
}

#video-breadcrumb ul li a:hover {
  text-decoration: underline;
  color: #4dabf7;
}

/**************************/
/* Reseller Home Page     */
/**************************/
#reseller-home {
  /* this is the magic */
  /**************************/
  /* CARDS */
  /**************************/
  /* On mouse-over, add a deeper shadow */
}
#reseller-home .blue {
  padding: 4px;
  color: #002060;
  background-color: #fff;
}
#reseller-home .orange {
  padding: 4px;
  color: #df7311;
  background-color: #fff;
}
#reseller-home .green {
  padding: 4px;
  color: #00b050;
  background-color: #fff;
}
#reseller-home .flex-container {
  display: flex;
  /* flex-wrap: wrap; */
  text-align: center;
  justify-content: center;
  width: 100%;
  gap: 60px;
}
#reseller-home .section-header {
  margin-bottom: 24px;
}
#reseller-home .btn,
#reseller-home .btn:link,
#reseller-home .btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;
  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}
#reseller-home .btn--full:link,
#reseller-home .btn--full:visited {
  background-color: #e67e22;
  color: #fff;
}
#reseller-home .btn--full:hover,
#reseller-home .btn--full:active {
  background-color: #cf711f;
}
#reseller-home .btn--outline:link,
#reseller-home .btn--outline:visited {
  background-color: #fff;
  color: #555;
}
#reseller-home .btn--outline:hover,
#reseller-home .btn--outline:active {
  background-color: #fdf2e9;
  /* border: 3px solid #fff; */
  /* Trick to add border inside */
  box-shadow: inset 0 0 0 3px #fff;
}
#reseller-home .btn--form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}
#reseller-home .btn--form:hover {
  background-color: #fff;
  color: #555;
}
#reseller-home .link:link,
#reseller-home .link:visited {
  display: inline-block;
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}
#reseller-home .link:hover,
#reseller-home .link:active {
  color: #cf711f;
  border-bottom: 1px solid transparent;
}
#reseller-home .sales-tools-icon {
  font-size: 50px;
  width: 150px;
  height: 150px;
}
#reseller-home .purchase-flex-container {
  display: grid;
  text-align: left;
  justify-content: center;
  width: 100%;
  column-gap: 60px;
  grid-template-columns: 0.7fr 4fr 2fr;
  grid-template-rows: 1fr auto 1fr;
}
#reseller-home .purchase-flex-container :first-child {
  justify-content: space-around;
}
#reseller-home .purchase-header {
  color: #fff;
}
#reseller-home .purchase-body {
  grid-column: 2/3;
  grid-row: 2/3;
  margin-top: -80px;
  font-size: 24px;
  line-height: 1.2;
  color: #e7f5ff;
}
#reseller-home .purchase-button {
  grid-column: 2/3;
  grid-row: 3/4;
  margin-top: 60px;
  padding: 3rem 2.4rem;
  border-radius: 9px;
  color: #e7f5ff;
  background-color: #4dabf7;
  width: 330px;
  font-size: 24px;
  justify-content: center;
}
#reseller-home .purchase-button:hover,
#reseller-home .purchase-button:active {
  color: #1864ab;
}
#reseller-home .support-grid-container {
  display: grid;
  text-align: left;
  justify-content: center;
  width: 100%;
  height: 550px;
  column-gap: 60px;
  grid-template-columns: 0.7fr 4fr 2fr;
  grid-template-rows: 1fr auto 1fr;
}
#reseller-home .support-grid-container :first-child {
  justify-content: space-around;
}
#reseller-home .support-header {
  color: #1864ab;
}
#reseller-home .support-body {
  grid-column: 2/3;
  grid-row: 2/3;
  margin-top: -80px;
  font-size: 24px;
  line-height: 1.2;
  color: #1971c2;
}
#reseller-home .support-items {
  padding-left: 20px;
  padding-top: 10px;
}
#reseller-home .support-items a {
  text-decoration: none;
  border-bottom: 2px solid #d0ebff;
  color: inherit;
}
#reseller-home .support-items a:hover {
  background: #d0ebff;
}
#reseller-home .connect-items {
  max-width: 500px;
  font-size: 24px;
  line-height: 1.2;
}
#reseller-home .choiceblock {
  color: #555;
}
#reseller-home .icontop {
  max-width: 270px;
}
#reseller-home .card-text {
  margin: 14px;
  height: 120px;
}
#reseller-home .card-shadow {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  padding: 10px;
  border-radius: 10px;
}
#reseller-home .card-shadow:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
#reseller-home .reseller-cardSection {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
}
#reseller-home .reseller-cardFlexContainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-right: 30px;
  margin-left: 30px;
  padding: 100px 0 20px 0;
}
#reseller-home .reseller-cardFlexContainer > div {
  background-color: #fff;
  display: flex;
  line-height: 30px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 10px;
  padding: 20px;
  flex-direction: column;
  max-width: 500px;
}
#reseller-home .reseller-cardFlexContainer > div > div {
  display: flex;
  flex-direction: row;
}
#reseller-home .reseller-cardFlexContainer > div:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#reseller-home .reseller-cardDesc {
  color: #777777;
}
#reseller-home .reseller-cardLink {
  color: cornflowerblue;
}
#reseller-home .reseller-cardTitle {
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  #reseller-home .salesSupport-cardText {
    font-size: 16px;
  }
}

.partner-landingPageCardSection {
  padding: 20px;
  margin: 0;
}

.partnerCardContainer {
  background-color: #1864ab;
}

.partner-cardImageContainer {
  margin-top: 14px;
  height: 96px;
}

.partner-cardImage {
  height: 90px;
  width: 90px;
}

.partner-cardTitle {
  display: inline-block;
  vertical-align: middle;
  height: 96px;
  padding-left: 20px;
}

.partner-cardParagraph {
  font-size: 17px;
}

.partner-linkButton {
  margin-bottom: 20px;
}

.productInformation-card {
  line-height: normal;
  margin-top: 30px !important;
  margin-bottom: 30px !important;
  width: 300px;
}

.productInformation-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.productInformation-body {
  font-size: 16px;
}

.productInformation-trainingVideosTitle {
  text-align: center;
}

.productInformation-trainingVideosGrid {
  display: grid;
  --n: 5; /* The maximum number of columns */
  grid-template-columns: repeat(auto-fill, minmax(max(340px, 100% / var(--n)), 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 0px;
}

.purchaseCenter-header {
  text-align: center;
  color: #1864ab;
  margin: 48px 0 48px 0;
}

.purchaseCenter-section {
  margin: 0 0 24px 0;
}

.purchaseCenter-products {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  margin-bottom: 48px;
}

.purchaseCenter-product {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 9px;
  margin-bottom: 24px;
  max-width: 988px;
}

.purchaseCenter-productLink {
  display: flex;
  flex-direction: row;
}

.purchaseCenter-product:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.purchaseCenter-productImage {
  width: 100px;
  height: 100px;
  margin-right: 8px;
}

.purchaseCenter-productText {
  align-self: center;
  font-size: 16px;
  color: #1864ab;
}

.purchaseCenter-DeskConnect {
  color: #df7311;
  font-family: Calibri;
  font-weight: 700;
  font-size: 18px;
}

.purchaseCenter-MFDConnect {
  color: #00b050;
  font-family: Calibri;
  font-weight: 700;
  font-size: 18px;
}

.purchaseCenter-SysConnect {
  color: #002060;
  font-family: Calibri;
  font-weight: 700;
  font-size: 18px;
}

.purchaseCenter-connect {
  color: #929497;
  font-family: Calibri;
  font-weight: 700;
  font-size: 18px;
  font-style: italic;
}

.productsList-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.productsList {
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 1000px;
  margin-bottom: 48px;
}

.productsList-productsTitle {
  text-align: left;
  padding-left: 6px;
}

.productsList-productDescription {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 48px;
  padding-left: 6px;
}

/******************************/
/* product list feature table *new version */
/******************************/
.productList-response-container {
  display: none;
}

.productList-grid-container {
  display: grid;
  background-color: white;
  padding: 0px;
  border-radius: 9px;
  border-left: solid white 10px;
  border-right: solid white 10px;
  border-top: solid white 30px;
  border-bottom: solid white 30px;
  align-content: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  grid-template-columns: repeat(1, minmax(100px, 1fr));
}

.productList-grid-container > div {
  background-color: #e7f5ff;
  text-align: center;
  background-color: white;
  display: grid;
  border-collapse: collapse;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.productList-feature-row .productList-griditem {
  display: grid;
}

.productList-griditem .productList-product-container {
  width: 90%;
  background-color: #e7f5ff;
  display: flex;
  justify-content: center;
}

.productList-griditem .productList-mid {
  width: 80%;
  padding: 10px 0px;
  border-bottom: black solid 1px;
  display: flex;
  justify-content: center;
}

.productList-griditem .productList-header-container {
  width: 90%;
  border-radius: 9px 9px 0px 0px;
}

.productList-griditem .productList-mid > p {
  margin: auto;
}

.productList-feature-row:last-of-type .productList-griditem .productList-mid {
  border-bottom: 0px;
}

div.productList-header-row .productList-griditem:nth-of-type(1) {
  color: #555;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 90%;
}

.productList-feature-row {
  justify-content: center;
  align-content: center;
}

.productList-header-container a:nth-of-type(1) {
  color: white;
}

.productList-header-row .productList-griditem:nth-of-type(2) .productList-header-container {
  background-color: rgb(136, 199, 250);
}

.productList-header-row .productList-griditem:nth-of-type(3) .productList-header-container {
  background-color: rgb(77, 171, 247);
}

.productList-header-row .productList-griditem:nth-of-type(4) .productList-header-container {
  background-color: rgb(51, 114, 165);
}

.productList-price {
  margin-top: 10px;
  color: white;
}

.productList-header-container {
  padding: 10px 0px;
}

.productList-header-container p {
  margin: 0;
  margin-bottom: 10px;
}

.productList-header-container a:nth-of-type(2) img {
  height: 14px;
}

.productList-griditem div.productList-header-container a {
  font-size: 14px;
}

.productList-griditem:nth-of-type(2) div.productList-header-container a:nth-of-type(2) {
  color: rgb(136, 199, 250);
}

.productList-griditem:nth-of-type(3) div.productList-header-container a:nth-of-type(2) {
  color: rgb(77, 171, 247);
}

.productList-griditem:nth-of-type(4) div.productList-header-container a:nth-of-type(2) {
  color: rgb(51, 114, 165);
}

.productList-griditem:nth-of-type(2) div.productList-header-container img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(45%) saturate(523%) hue-rotate(179deg) brightness(104%) contrast(96%);
}

.productList-griditem:nth-of-type(3) div.productList-header-container img {
  filter: brightness(0) saturate(100%) invert(66%) sepia(18%) saturate(6044%) hue-rotate(181deg) brightness(100%) contrast(94%);
}

.productList-griditem:nth-of-type(4) div.productList-header-container img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(13%) saturate(2248%) hue-rotate(165deg) brightness(87%) contrast(88%);
}

.productList-feature-row .productList-griditem:nth-of-type(1) .productList-product-container {
  background-color: transparent;
}

.productList-addToCartContainer {
  margin-top: 16px;
}

.productList-add-to-cart-excep {
  background-color: lightgrey;
  padding: 5px 10px;
  border-radius: 9px;
  display: block;
  margin: auto;
  width: max-content;
  height: 16px;
}

.productList-add-to-cart-excep:link {
  background-color: lightgrey;
  padding: 5px 10px;
  border-radius: 9px;
  display: block;
  margin: auto;
  width: max-content;
  height: 16px;
}

.productsList-addToCart .add-to-cart-excep img {
  height: 14px;
}

.productList-add-to-cart-excep:visited {
  background-color: lightgrey;
  padding: 5px 10px;
  border-radius: 9px;
  display: block;
  margin: auto;
  width: max-content;
  height: 16px;
  margin-top: 16px;
}

.productList-add-to-cart-excep:hover {
  background-color: darkgrey;
}

.productList-add-to-cart-excep:active {
  background-color: #AAA;
}

.productList-add-to-cart {
  background-color: white;
  padding: 5px 10px;
  border-radius: 9px;
  display: block;
  margin: auto;
  width: max-content;
}

.productList-add-to-cart:hover {
  background-color: #CCC;
}

.productList-add-to-cart:active {
  background-color: #AAA;
}

@media (max-width: 939px) {
  .productList-response-container {
    display: block;
    background-color: white;
    border-left: solid white 30px;
    border-right: solid white 30px;
    border-top: solid white 30px;
    border-bottom: solid white 30px;
    border-radius: 9px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  .productList-grid-container {
    display: none;
  }
  .productList-response-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    background-color: #e7f5ff;
    padding: 0px;
    justify-content: center;
    border-collapse: collapse;
  }
  .productList-response-div {
    margin-bottom: 30px;
  }
  .productList-response-div:last-of-type {
    margin-bottom: 0px;
  }
  .productList-response-grid div {
    text-align: center;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    border-bottom: black solid 1px;
    display: flex;
    padding: 5px 0px;
  }
  .productList-response-grid div:first-child {
    border-bottom: 0px;
  }
  .productList-response-grid .productList-item:nth-last-child(-n+2) {
    border-bottom: 0px;
  }
  div.productList-response-header {
    grid-column: 1/-1;
    background-color: blue;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    color: white;
    display: block;
  }
  div.productList-response-header a {
    font-size: 18px;
    color: white;
    padding-bottom: 5px;
    display: block;
  }
  div.productList-response-div:nth-of-type(1) a:nth-of-type(2) {
    color: rgb(136, 199, 250);
    font-size: 18px;
    margin-top: 10px;
  }
  div.productList-response-div:nth-of-type(2) a:nth-of-type(2) {
    color: rgb(77, 171, 247);
    font-size: 18px;
    margin-top: 10px;
  }
  div.productList-response-div:nth-of-type(3) a:nth-of-type(2) {
    color: rgb(51, 114, 165);
    font-size: 18px;
    margin-top: 10px;
  }
  div.productList-response-header img {
    height: 18px;
  }
  div.productList-price {
    border-bottom: 0px;
  }
  .productList-response-div:nth-of-type(1) .productList-response-header {
    background-color: rgb(136, 199, 250);
  }
  .productList-response-div:nth-of-type(2) .productList-response-header {
    background-color: rgb(77, 171, 247);
  }
  .productList-response-div:nth-of-type(3) .productList-response-header {
    background-color: rgb(51, 114, 165);
  }
  .productList-response-div:nth-of-type(1) img {
    filter: brightness(0) saturate(100%) invert(68%) sepia(45%) saturate(523%) hue-rotate(179deg) brightness(104%) contrast(96%);
  }
  .productList-response-div:nth-of-type(2) img {
    filter: brightness(0) saturate(100%) invert(66%) sepia(18%) saturate(6044%) hue-rotate(181deg) brightness(100%) contrast(94%);
  }
  .productList-response-div:nth-of-type(3) img {
    filter: brightness(0) saturate(100%) invert(44%) sepia(13%) saturate(2248%) hue-rotate(165deg) brightness(87%) contrast(88%);
  }
  .productList-response-grid div p {
    margin: 0;
  }
}
@media (max-width: 595px) {
  .productList-response-grid {
    grid-template-columns: 75% 25%;
  }
}
/******************************/
/* product list feature table */
/******************************/
/*
.productsList-productTable {
background-color: #fff;
width: 100%;
border-bottom: 1px solid black;
border-collapse: collapse;
}

.productsList-tableEmptyCell {
background-color: #e7f5ff;
border-left: 1px solid #e7f5ff;
border-top: 1px solid #e7f5ff;
border-bottom: 1px solid black;
}

.productsList-productTable thead th {
border: solid 1px #000;
text-align: center;
font-weight: 500;
}

.productsList-tableHeaderInfo {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
}

.productsList-productTable tbody th {
text-align: left;
border-left: solid 1px #000;
padding: 12px 0 12px 6px;
font-weight: 500;
max-width: 400px;
}

.productsList-productTable tbody tr:nth-child(odd) {
background-color: rgba(77, 171, 247, 0.4);
}

.productsList-productTable tbody tr td {
border-left: solid 1px #000;
border-right: solid 1px #000;
text-align: center;
}

.productsList-productTitle {
font-family: Calibri;
font-weight: 500;
min-height: 50px;
}

.productsList-addToCart {
margin: 30px 2px 20px 2px;
}

.productsList-addToCart img {
vertical-align: top;
width: 20px;
height: 20px;
}
*/
/********************** ***/
/* serial number options */
/*************************/
.serialNumberOptions-Or {
  text-align: center;
  margin-bottom: 48px;
}

.serialNumberOptions-card {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 9px;
  margin-bottom: 48px;
  max-width: 1000px;
}

.serialNumberOptions-serialNumber {
  margin-bottom: 24px;
}

.serialNumberOptions-serialNumberLabel {
  font-size: 18px;
}

.serialNumberOptions-serialNumberTextbox {
  width: 210px;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.serialNumberOptions-links {
  text-align: right;
}

.serialNumberOptions-link:link,
.serialNumberOptions-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 8px;
  border-radius: 9px;
  background-color: #4dabf7;
  margin-bottom: 20px;
}

.serialNumberOptions-link:hover,
.serialNumberOptions-link:active {
  background-color: #1c7ed6;
}

.serialNumberOptions-link img {
  vertical-align: top;
  width: 20px;
  height: 20px;
}

.serialNumberOptions-errorMessage {
  text-align: center;
}

.serialNumberOptions-serialNumberError {
  color: red;
  font-size: 14px;
}

/***************************************/
/* product list groun no-feature-table */
/***************************************/
.productsList-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.productsList-item {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 9px;
  margin: 16px;
  max-width: 1000px;
}

.productsList-productImage {
  width: 48px;
  height: 48px;
}

.purchaseCenter-optionsHeading {
  text-align: center;
}

.purchaseCenter-options {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  margin-bottom: 48px;
}

.purchaseCenter-option {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 9px;
  margin-bottom: 16px;
  max-width: 988px;
  width: 350px;
}

.purchaseCenter-optionLink {
  display: flex;
  flex-direction: row;
}

.purchaseCenter-optionText {
  font-size: 20px;
}

.purchaseCenter-option:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  margin: 48px 0 48px 0;
}

.locationForm {
  flex: 1 1 auto;
  align-self: auto;
  background-color: #1864ab;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  margin-bottom: 64px;
  max-width: 988px;
}

.locationForm-heading {
  text-align: center;
  padding: 16px 24px 12px 24px;
  color: white;
}

.locationForm-repopulateData {
  text-align: center;
  padding: 0 24px 12px 24px;
  margin-top: -20px;
  color: white;
}

.locationForm-body {
  background: white;
}

.locationForm-row {
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 5px;
}

.locationForm-submitRow {
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  justify-content: flex-end;
  padding: 10px 10px 20px 5px;
}

.locationForm-group {
  width: 95%;
}

.locationForm-label {
  color: #555;
  margin: 8px;
}

.locationForm-product {
  border-radius: 6px;
  border: 0px solid #555;
  width: 100%;
  height: 30px;
  color: #000;
  margin: 4px;
  padding: 8px;
  font-size: 18px;
}

.locationForm-textbox {
  border-radius: 6px;
  border: 1px solid #1864ab;
  width: 100%;
  height: 30px;
  color: #000;
  margin: 4px 8px 4px 8px;
  padding: 8px;
  font-size: 18px;
  background-color: #e7f5ff;
}

.locationForm-textbox::placeholder {
  color: #555;
  opacity: 1;
  font-style: italic;
}

.locationForm-textbox:focus::placeholder {
  color: transparent;
}

.locationForm-dropdown {
  border-radius: 6px;
  border: 1px solid #1864ab;
  width: 100%;
  height: 50px;
  color: #000;
  background-color: #e7f5ff;
  margin: 4px 8px 4px 8px;
  padding: 8px;
  font-size: 18px;
}

.locationForm-dropdownPlaceholder {
  color: #555;
  opacity: 1;
  font-style: italic;
}

.locationForm-dropdown[data-chosen=""] {
  color: #555;
  opacity: 1;
  font-style: italic;
}

.locationForm-submit {
  align-self: flex-end;
  margin-right: 2px;
}

.locationForm-submit img {
  vertical-align: top;
  width: 20px;
  height: 20px;
}

.submitLink-link {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 12px;
  border-radius: 9px;
  background-color: #4dabf7;
  margin-bottom: 20px;
}

.submitLink-link:hover,
.submitLink-link:active {
  background-color: #1c7ed6;
  cursor: pointer;
}

.purchaseCenter-reforment15Heading {
  text-align: center;
}

.purchaseCenter-reforment15s {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  margin-bottom: 48px;
}

.purchaseCenter-reforment15 {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 9px;
  margin-bottom: 16px;
  max-width: 988px;
  width: 350px;
}

.purchaseCenter-reforment15Link {
  display: flex;
  flex-direction: row;
}

.purchaseCenter-reforment15Text {
  font-size: 20px;
}

.purchaseCenter-reforment15:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.productDetails-main {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  font-size: 16px;
  line-height: 1.2;
}

.productDetails {
  align-self: center;
  max-width: 988px;
}

.productDetails-data {
  margin-bottom: 24px;
  align-self: flex-start;
}

.productDetails-label {
  font-weight: 700;
  line-height: 32px;
}

.productDetails-article {
  margin: 24px 0 24px 0;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 20px 10px 20px 10px;
  border-radius: 9px;
}

.productDetails-productImage {
  max-width: 200px;
  max-height: 400px;
  padding: 10px 0 10px 0;
}

.productsList-addToCart {
  padding: 10px 0 10px 0;
}

.shoppingCart-header {
  text-align: center;
}

.shoppingCart-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}

/**********************/
/* product list table */
/**********************/
.shoppingCart-items {
  margin: 0 20px 40px 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 9px;
  min-width: 50%;
}

.shoppingCart-table {
  min-width: 100%;
  text-align: left;
  border-spacing: 10px;
  border-collapse: collapse;
  border-left: 2px solid #1864ab;
  border-right: 2px solid #1864ab;
  border-bottom: 2px solid #1864ab;
  font-size: 14px;
  line-height: 1.4;
}

.shoppingCart-table th,
td {
  padding: 8px 8px 8px 20px;
}

.shoppingCart-table a {
  text-decoration: none;
  color: #1c7ed6;
}

.shoppingCart-table a:visited {
  text-decoration: none;
  color: #4dabf7;
}

.shoppingCart-table a:hover {
  text-decoration: none;
  color: #4dabf7;
}

.shoppingCart-tableHeader {
  background-color: #1864ab;
  color: white;
}

.shoppingCart-tableItemHeader {
  min-width: 60%;
}

.shoppingCart-productName {
  font-size: 16px;
  font-weight: 700;
}

.shoppingCart-adjustNumeric {
  border: 1px solid #555;
  border-radius: 4px;
  width: 40px;
  text-align: center;
}

.shoppingCart-subcost {
  text-decoration: line-through;
  color: #dc3545;
}

.shoppingCart-addItem img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  padding-bottom: 3px;
}

.shoppingCart-removeItem {
  width: 20px;
  height: 20px;
}

.shoppingCart-dot {
  width: 6px;
  height: 6px;
  vertical-align: middle;
  padding-bottom: 2px;
}

.shoppingCart-included {
  padding-left: 20px;
}

.shoppingCart-addItem .main-nav-link:link {
  font-size: 14px;
  padding: 4px 8px 4px 8px;
}

.shoppingCart-footerTotalPrice {
  text-align: right;
}

.shoppingCart-footerTotalPriceAmount {
  font-weight: 700;
  text-align: left;
}

/****************/
/* summary card */
/****************/
.shoppingCart-summary {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  margin: 0 4px 4px 20px;
  padding: 20px;
}

.shoppingCart-total {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  font-size: 20px;
  color: #1864ab;
  margin-top: 12px;
}

.shoppingCart-totalLabel {
  padding-left: 20px;
}

.shoppingCart-totalPrice {
  padding-right: 20px;
}

.shoppingCart-checkout {
  margin: 40px 2px 20px 2px;
  align-self: center;
}

.shoppingCart-checkout img {
  vertical-align: top;
  width: 20px;
  height: 20px;
}

.shoppingCart-checkout .main-nav-link:link {
  font-size: 20px;
}

.shoppingCart-options {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  margin-top: 16px;
}

.shoppingCart-divider {
  width: 100%;
  border-top: 1px solid #1c7ed6;
  margin-bottom: 16px;
}

.shoppingCart-option {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  padding: 10px;
  margin-bottom: 8px;
}

.shoppingCart-optionLink {
  display: flex;
  flex-direction: row;
}

.shoppingCart-optionText {
  font-size: 18px;
}

.shoppingCart-option:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  border-radius: 9px;
}

.shoppingCart-adjustment {
  margin-top: 24px;
}

.shoppingCart-adjustmentCode {
  margin: 10px 2px 10px 2px;
  border: 1px solid #555;
  width: 180px;
  border-radius: 4px;
}

.checkout-quantity {
  text-align: center;
}

.checkout-years {
  text-align: center;
}

.checkout-price {
  text-align: right;
}

.checkout-footerTotalPriceAmount {
  font-weight: 700;
  text-align: right;
}

.checkout-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}

.checkout-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-between;
  align-items: flex-start;
  margin: 20px 20px 40px 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 9px;
  min-width: 50%;
}

.checkout-paymentContact {
  font-size: 14px;
  line-height: 2;
  color: #555;
}

.checkout-paymentTitle {
  font-weight: 700;
}

.checkout-InputItem {
  padding-top: 10px;
}

.checkout-disabledLabel {
  color: #a9a9a9;
}

.checkout-disabledInput {
  width: 97%;
  background-color: #f9f9f9;
  border-color: #dddddd;
  color: #a9a9a9;
  border-radius: 4px;
  border: 1px solid #8c8b8b;
  padding: 0.5rem;
}

.checkout-disabledInputSecond {
  width: 100%;
  background-color: #f9f9f9;
  border-color: #dddddd;
  color: #a9a9a9;
  border-radius: 4px;
  border: 1px solid #8c8b8b;
  padding: 0.5rem;
  margin-left: 10px;
}

.checkout-inputRow {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: space-between;
  align-items: flex-start;
}

.checkout-contactTitle {
  font-weight: 700;
  margin-top: 40px;
}

.checkout-Label {
  color: black;
}

.checkout-Input {
  display: block;
  width: 300px;
  background-color: #f7fdff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
}

.checkout-InputFirst {
  display: block;
  width: 128px;
  background-color: #f7fdff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
}

.checkout-InputSecond {
  display: block;
  width: 128px;
  background-color: #f7fdff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
}

.checkout-Select {
  display: block;
  width: 310px;
  height: 38px;
  background-color: #f7fdff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
}

.checkout-billingInfo {
  font-size: 14px;
  line-height: 2;
  color: #555;
}

.checkout-billingTitle {
  font-weight: 700;
}

.checkout-cityState {
  width: 45%;
}

.checkout-placeOrder {
  margin-top: 48px;
  text-align: right;
}

.orderSummary-main {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  text-align: center;
}

.orderSummary-section {
  align-self: center;
  max-width: 1000px;
  margin-bottom: 48px;
}

.orderSummary-title {
  text-align: left;
}

.orderSummary-thankYou {
  font-size: 24px;
  margin: 64px 0 48px 0;
}

.orderInfromation-card {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 9px;
  margin: 48px 0 48px 0;
  width: 700px;
}

.orderInfromation-cardSection {
  padding: 8px 0 8px 0;
}

.orderInfromation-cardTitle {
  font-size: 18px;
  text-align: left;
  color: #1864ab;
}

.orderInfromation-cardRow {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  text-align: center;
  font-size: 16px;
  text-align: left;
  margin: 20px 6px 20px 6px;
}

.orderCard-left {
  width: 35%;
}

.orderCard-right {
  width: 65%;
}

.orderCard-heading {
  font-weight: 700;
}

.invoice-icon {
  height: 18px;
  width: 18px;
  margin-right: 4px;
}

.invoiceViewLink {
  margin-right: 40px;
}

.invoice-box {
  max-width: 800px;
  margin: 48px auto 48px auto;
  padding: 30px;
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  line-height: 24px;
  font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  color: #555;
  background-color: #fff;
}

.invoice-box-print {
  max-width: 600px;
  margin: 48px auto 48px auto;
  padding: 10px;
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  line-height: 24px;
  font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  color: #555;
  background-color: #fff;
}

.invoice-logoImage {
  width: 101px;
}

.invoice-box table {
  width: 100%;
  line-height: inherit;
  text-align: left;
  border-collapse: collapse;
}

.invoice-box table td {
  padding: 5px;
  vertical-align: top;
}

.invoice-box table tr td:nth-child(2) {
  text-align: center;
}

.invoice-box table tr td:nth-child(3) {
  text-align: center;
}

.invoice-box table tr td:nth-child(4) {
  text-align: right;
}

.invoice-box table tr td table tr td:nth-child(2) {
  text-align: right;
}

.invoice-box table tr.top table td {
  padding-bottom: 20px;
}

.invoice-box table tr.information table td {
  padding-bottom: 40px;
}

.invoice-box table tr.heading td {
  background: #eee;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
}

.invoice-box table tr.details td {
  padding-bottom: 20px;
}

.invoice-box table tr.item td {
  border-bottom: 1px solid #eee;
}

.invoice-box table tr.item.last td {
  border-bottom: none;
}

.invoice-box table tr.total td:nth-child(4) {
  border-top: 2px solid #eee;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .invoice-box table tr.top table td {
    width: 100%;
    display: block;
    text-align: center;
  }
  .invoice-box table tr.information table td {
    width: 100%;
    display: block;
    text-align: center;
  }
}
@media print {
  .invoice-box {
    max-width: 600px;
    margin: auto;
    padding: 30px;
    border: none;
    box-shadow: none;
    font-size: 16px;
    line-height: 24px;
    font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    color: #555;
    background-color: #fff;
  }
  .page-header {
    display: none;
  }
}
.orderList-header {
  text-align: center;
}

.orderList-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}

/**********************/
/* order list table */
/**********************/
.orderList-table {
  min-width: 100%;
  text-align: left;
  border-spacing: 10px;
  border-collapse: collapse;
  border-left: 2px solid #1864ab;
  border-right: 2px solid #1864ab;
  border-bottom: 2px solid #1864ab;
  font-size: 14px;
  line-height: 1.4;
}

.orderList-table th,
td {
  padding: 8px 8px 8px 20px;
}

.orderList-table a {
  text-decoration: none;
  color: #1c7ed6;
}

.orderList-table a:visited {
  text-decoration: none;
  color: #4dabf7;
}

.orderList-table a:hover {
  text-decoration: none;
  color: #4dabf7;
}

.orderList-tableHeader {
  background-color: #1864ab;
  color: white;
}

.orderList-tableItemHeader {
  padding: 4px 0 4px 0;
}

.orderList-priceColumn {
  text-align: right;
}

.orderList-invoiceColumn {
  text-align: center;
}

.orderList-invoiceIcon {
  width: 13px;
}

.orderList-analyticsColumn {
  text-align: center;
}

.orderList-analyticsIcon {
  width: 13px;
}

.portalSidemenu-button:link,
.portalSidemenu-button:visited {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  background-color: #4dabf7;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  width: 134px;
  margin: 0 0 12px 12px;
}

.portalSidemenu-button:hover,
.portalSidemenu-button:active {
  background-color: #1c7ed6;
}

.portalSidemenu-buttonSelected:link,
.portalSidemenu-buttonSelected:visited {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  background-color: #1864ab;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  width: 134px;
  margin: 0 0 12px 12px;
}

.portalLayout-header {
  text-align: center;
  margin-left: 174px;
}

.portalLayout-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}

.portalLayout-mainContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
}

.portalLayout-verticalMenu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
}

.portalLayout-mainContent {
  width: 100%;
  margin: 0 20px 40px 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 9px;
  overflow-x: auto;
}

.portalLayout-searchContainer {
  display: inline-block;
  text-align: right;
  margin-bottom: 20px;
}

.portalLayout-search {
  width: 580px;
  height: 20px;
  padding: 10px;
  border: #1864ab solid 1px;
  border-radius: 9px;
  vertical-align: bottom;
}

.portalLayout-advancedSearchContainer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-around;
}

.portalLayout-advancedSearchFieldsContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 932px;
}

.portalLayout-advancedSearchFields {
  margin: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 428px;
  font-size: 16px;
}

.portalLayout-advancedSearchButton {
  margin: 10px 0 40px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.portalLayout-advancedSearch {
  width: 280px;
  height: 20px;
  padding: 10px;
  border: #1864ab solid 1px;
  border-radius: 9px;
  vertical-align: bottom;
}

.portalLayout-uiColumn {
  font-size: 14px;
  line-height: 2;
  color: #555;
}

.portalLayout-uiDoubleColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  width: 700px;
}

.portalLayout-uiDoubleColumnWide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  width: 1100px;
}

.portalLayout-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 10px 0;
}

.switch-button {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  overflow: hidden;
  width: 118px;
  height: 43px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  color: #1864ab;
  position: relative;
  padding-right: 120px;
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.switch-button:before {
  content: "All";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.switch-button-checkbox {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}

.switch-button-checkbox:checked + .switch-button-label:before {
  -webkit-transform: translateX(120px);
  transform: translateX(120px);
  -webkit-transition: -webkit-transform 300ms linear;
  transition: -webkit-transform 300ms linear;
  transition: transform 300ms linear;
  transition: transform 300ms linear, -webkit-transform 300ms linear;
}

.switch-button-checkbox + .switch-button-label {
  position: relative;
  padding: 15px 0;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.switch-button-checkbox + .switch-button-label:before {
  content: "";
  background: #4dabf7;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.switch-button-checkbox + .switch-button-label .switch-button-label-span {
  position: relative;
}

.analytics-chartContent {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60vw;
  height: 100%;
  min-height: 400px;
  border-radius: 9px;
  overflow: auto;
  margin-left: 20px;
}

.analytics-chartContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.analyticsModal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(211, 210, 210, 0.796);
}

.analyticsModal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  height: 80%;
  border-radius: 9px;
  overflow: auto;
}

.analyticsModal-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.analyticsModal-close:hover,
.analyticsModal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.analyticsModal-filterStartDate {
  border-radius: 6px;
  border: 1px solid #1864ab;
  width: 140px;
  height: 18px;
  color: #000;
  margin: 10px 8px 18px 8px;
  padding: 8px;
  font-size: 16px;
  background-color: #e7f5ff;
}

.analyticsModal-filterEndDate {
  border-radius: 6px;
  border: 1px solid #1864ab;
  width: 140px;
  height: 18px;
  color: #000;
  margin: 10px 8px 18px 8px;
  padding: 8px;
  font-size: 16px;
  background-color: #e7f5ff;
}

.analyticsModal-filterOption {
  border-radius: 6px;
  border: 1px solid #1864ab;
  width: 120px;
  height: 40px;
  color: #000;
  background-color: #e7f5ff;
  margin: 10px 8px 18px 8px;
  padding: 8px;
  font-size: 16px;
}

.analyticsModal-chartContainer {
  display: block;
  width: 100%;
  height: 100%;
}

.analyticsModal-filterContainer {
  padding: 24px 8px 24px 8px;
}

@media screen and (max-width: 1480px) {
  .analytics-chartContent {
    width: 50vw;
  }
}
@media screen and (max-width: 1200px) {
  .analytics-chartContent {
    width: 40vw;
  }
}
@media screen and (max-width: 990px) {
  .analytics-chartContent {
    width: 30vw;
  }
}
@media screen and (max-width: 830px) {
  .analytics-chartContent {
    width: 20vw;
  }
}
.company-userSettingsTitle {
  font-weight: 700;
  font-size: larger;
  padding-bottom: 14px;
}

.company-userPermission {
  display: block;
}

.company-newAccountInput {
  display: block;
  width: 220px;
  background-color: #f7fdff;
  border-color: #000;
  color: #000;
  border-radius: 4px;
  border: 1px solid #000;
  padding: 0.5rem;
}

.company-newAccountInputs {
  display: flex;
  justify-content: space-between;
}

.company-newAccountButton:link,
.company-newAccountButton:visited {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  background-color: #4dabf7;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s;
  padding: 4px 8px;
  border-radius: 9px;
  width: 34px;
  text-align: center;
}

.company-newAccountButton:hover,
.company-newAccountButton:active {
  background-color: #1c7ed6;
}

.company-removeAccountButton:link,
.company-removeAccountButton:visited {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  background-color: #4dabf7;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s;
  padding: 4px 8px;
  border-radius: 9px;
  margin-top: 12px;
  width: 284px;
  text-align: center;
}

.company-removeAccountButton:hover,
.company-removeAccountButton:active {
  background-color: #1c7ed6;
}

.company-saveSettings {
  margin-top: 24px;
  text-align: left;
}

.company-saveChanges {
  margin-top: 24px;
  text-align: right;
}

.company-permissions {
  margin-top: 117px;
  margin-left: 20px;
}

.company-accountResult {
  width: 284px;
  padding: 4px 8px;
}

.orderList-tableItemHeaderCenter {
  text-align: center;
}

.orderList-versionColumn {
  text-align: center;
}

.orderList-downloadsIcon {
  width: 13px;
}

.supportModal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(211, 210, 210, 0.796);
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
}

.supportModal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 315px;
  height: 80%;
  border-radius: 9px;
  overflow: auto;
}

.supportModal-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.supportModal-title {
  text-align: center;
  padding-bottom: 32px;
}

.supportModal-close:hover,
.supportModal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.supportModal-fields {
  font-size: 16px;
}

.supportModal-info {
  font-size: 14px;
  line-height: 2;
  color: #555;
}

.supportModal-InputItem {
  padding-top: 10px;
}

.supportModal-Label {
  color: black;
  font-size: 14px;
  line-height: 1.8;
}

.supportModal-Input {
  display: block;
  width: 300px;
  background-color: #f7fdff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
  width: 98%;
}

.supportModal-prevNext {
  text-align: right;
}

.supportModal-prevNext {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
}

.supportModal-prevNext input {
  width: 100px;
}

.addLicensesModal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(211, 210, 210, 0.796);
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.addLicensesModal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 315px;
  border-radius: 9px;
  overflow: auto;
}

.addLicensesModal-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.addLicensesModal-title {
  text-align: center;
  padding-bottom: 32px;
}

.addLicensesModal-close:hover,
.addLicensesModal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.usedLicensesModal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(211, 210, 210, 0.796);
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.usedLicensesModal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 315px;
  border-radius: 9px;
  overflow: auto;
  height: 94vh;
}

.usedLicensesModal-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.usedLicensesModal-title {
  text-align: center;
  padding-bottom: 32px;
}

.usedLicensesModal-close:hover,
.usedLicensesModal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.simple-modal {
  --gutter: 14px;
  --modal-color: #1864ab;
  --soft-color: #fafafa;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 2%;
}
.simple-modal__content {
  width: 95vw;
  height: 90vh;
  max-height: 700px;
  max-width: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 auto;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}
.simple-modal__content header {
  min-height: 60px;
  height: 60px;
  color: #ffffff;
  background-color: var(--modal-color);
  display: grid;
  padding-left: var(--gutter);
  align-items: center;
  grid-template-columns: auto 60px;
}
.simple-modal__content header h4 {
  margin: 0;
  text-align: left;
}
.simple-modal__content header span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 20px;
  opacity: 0.8;
  cursor: pointer;
}
.simple-modal__content header span:hover {
  opacity: 1;
}
.simple-modal__content .modal-main {
  flex: 1;
  text-align: left;
  overflow: auto;
  padding: var(--gutter);
}
.simple-modal__content footer {
  height: auto;
  text-align: right;
  border-top: solid 1px #cccccc;
  padding: var(--gutter);
  background-color: #ffffff;
  background-color: var(--soft-color);
}
.simple-modal__content footer button,
.simple-modal__content footer input {
  margin: 0;
}
.simple-modal__content footer button:not(:last-child),
.simple-modal__content footer input:not(:last-child) {
  margin-right: var(--gutter);
}

.settings-searchIcon {
  width: 17px;
}

.settings-searchInput {
  display: block;
  width: 394px;
  background-color: #f7fdff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
}

.settings-accountPermissions {
  margin-top: 80px;
  width: 450px;
}

.settings-accountsInput {
  display: block;
  width: 405px;
  background-color: #f7fdff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
}

.yourprofile-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: flex-start;
  align-items: baseline;
  width: 100%;
}

.yourprofile-cardNew {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: flex-start;
  align-items: baseline;
  min-width: 800px;
}

.yourprofile-CheckboxInput {
  background-color: #f7fdff;
  border-color: #000;
  color: #000;
  border-radius: 4px;
  border: 1px solid #000;
  padding: 0.5rem;
}

.yourprofile-Input {
  display: block;
  width: 300px;
  background-color: #f7fdff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
}

.yourprofile-InputFirst {
  display: block;
  width: 128px;
  background-color: #f7fdff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
}

.yourprofile-InputSecond {
  display: block;
  width: 128px;
  background-color: #f7fdff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
}

.yourprofile-InputDisabled {
  display: block;
  width: 300px;
  background-color: #f9f9f9;
  border-color: #dddddd;
  color: #a9a9a9;
  border-radius: 4px;
  border: 1px solid #dddddd;
  padding: 0.5rem;
}

.yourprofile-InputFirstDisabled {
  display: block;
  width: 128px;
  background-color: #f9f9f9;
  border-color: #dddddd;
  color: #a9a9a9;
  border-radius: 4px;
  border: 1px solid #dddddd;
  padding: 0.5rem;
}

.yourprofile-InputSecondDisabled {
  display: block;
  width: 128px;
  background-color: #f9f9f9;
  border-color: #dddddd;
  color: #a9a9a9;
  border-radius: 4px;
  border: 1px solid #dddddd;
  padding: 0.5rem;
}

.yourprofile-Error {
  font-size: 20px;
  color: red;
}

.yourprofile-Success {
  font-size: 20px;
  color: #555;
}

.priceSheet-date {
  margin: 0px 0px 20px 0px;
}

.priceSheet-table {
  width: 100%;
  font-size: 24;
  display: table;
  background-color: #e7f5ff;
  color: white;
  border-collapse: collapse;
  padding: 5px;
}

.priceSheet-table td,
.priceSheet-table th {
  font-weight: normal;
  display: table-cell;
  border: 1px solid white;
  padding: 5px 0px;
}

.priceSheet-table header {
  margin-bottom: 20px;
  margin-top: 20px;
  background-color: #1864ab;
  color: white;
  margin: 0;
  padding: 20px;
}

.priceSheet-header-table {
  background-color: #1864ab;
  color: white;
}

.priceSheet-sub-header-table {
  background-color: #5d94c7;
  color: white;
}

.priceSheet-sub-table {
  font-weight: normal;
  color: #555;
}

.priceSheet-footer {
  font-weight: 300;
  text-align: center;
}

.rebate-icon {
  width: 15px;
}

.rebate-details {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin: auto;
}

.rebate-table {
  min-width: 200px;
  width: 400px;
}

.rebate-tableAmounts {
  text-align: right;
}

.rebate-periodSelection {
  color: #000000;
  font-size: 11pt;
  padding: 10px;
  border: 2px solid #1864ab;
  border-radius: 6px;
  cursor: pointer;
}

.rebate-chart {
  width: 100%;
}

.rebate-subHeadingContainer {
  text-align: center;
  padding: 20px 0 8px 0;
}

.rebate-subHeading {
  font-size: 18px;
  font-weight: 700;
}

.rebate-modal {
  display: none;
}

.rebate-modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.2s;
  will-change: opacity;
  background-color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.rebate-modal__header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.rebate-modal__close {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='15px' height='16px' viewBox='0 0 15 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='2.-Menu' transform='translate(-15.000000, -13.000000)' stroke='%23000000'%3E%3Cg id='Group' transform='translate(15.000000, 13.521000)'%3E%3Cpath d='M0,0.479000129 L15,14.2971819' id='Path-3'%3E%3C/path%3E%3Cpath d='M0,14.7761821 L15,-1.24344979e-14' id='Path-3'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 15px;
  height: 15px;
}

.rebate-modal__wrapper {
  width: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 0;
  max-width: 580px;
  max-height: 80vh;
  transition: transform 0.2s, opacity 0.2s;
  will-change: transform;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  -webkit-transform: translateY(5%);
  transform: translateY(5%);
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 2px 6px #777;
  border-radius: 5px;
  margin: 20px;
}

.rebate-modal__content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  flex-grow: 1;
  /* Optional */
  padding: 1.5rem;
}

.rebate-modal.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
}

.rebate-modal.is-visible .rebate-modal__wrapper {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.rebate-modal.is-visible .rebate-modal__overlay {
  opacity: 0.5;
}

.proServ-criteria {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 40px;
  align-items: baseline;
}

.proServ-leadCompanySelect {
  height: 42px;
  font-size: 12px;
  background-color: #e7f5ff;
}

.proServ-projectsTable {
  margin: 10px 0 20px 0;
  min-width: 100%;
  text-align: left;
  border-spacing: 10px;
  border-collapse: collapse;
  border-left: 2px solid #1864ab;
  border-right: 2px solid #1864ab;
  border-bottom: 2px solid #1864ab;
  font-size: 14px;
  line-height: 1.4;
}

.proServ-projectsTableHeader {
  background-color: #1864ab;
  color: white;
}

.proServ-projectsTableItemHeader {
  width: 20%;
  padding: 8px 8px 8px 20px;
}

.proServ-projectsTableItemHeaderCenter {
  width: 20%;
  padding: 8px 8px 8px 20px;
  text-align: center;
}

.proServ-projectsTableItemHeaderRight {
  padding: 8px 8px 8px 20px;
  text-align: right;
}

.proServ-projectsTableItemRight {
  text-align: right;
}

.proServ-projectsTableItemCenter {
  text-align: center;
}

.proServ-projectsTableFooterRight {
  text-align: right;
  font-weight: 700;
}

.proServ-ordersTable {
  margin: 10px 0 20px 0;
  min-width: 100%;
  text-align: left;
  border-spacing: 10px;
  border-collapse: collapse;
  border-left: 2px solid #1864ab;
  border-right: 2px solid #1864ab;
  border-bottom: 2px solid #1864ab;
  font-size: 14px;
  line-height: 1.4;
}

.proServ-ordersTableHeader {
  background-color: #1864ab;
  color: white;
}

.proServ-ordersTableItemHeader {
  width: 20%;
  padding: 8px 8px 8px 20px;
}

.proServ-ordersTableItemHeaderCenter {
  width: 20%;
  padding: 8px 8px 8px 20px;
  text-align: center;
}

.proServ-ordersTableItemHeaderRight {
  padding: 8px 8px 8px 20px;
  text-align: right;
}

.proServ-ordersTableItemRight {
  text-align: right;
}

.proServ-ordersTableItemCenter {
  text-align: center;
}

.proServ-ordersTableFooterRight {
  text-align: right;
  font-weight: 700;
}

.proServ-summarySection {
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.proServ-summaryTable {
  margin: 10px 0 20px 0;
  width: 360px;
  min-width: auto;
  text-align: left;
  border-spacing: 10px;
  border-collapse: collapse;
  border-left: 2px solid #1864ab;
  border-right: 2px solid #1864ab;
  border-bottom: 2px solid #1864ab;
  font-size: 14px;
  line-height: 1.4;
}

.proServ-summaryTableHeader {
  background-color: #1864ab;
  color: white;
}

.proServ-summaryTableItemHeaderCenter {
  width: 20%;
  padding: 8px 8px 8px 20px;
  text-align: center;
}

.proServ-summaryTableItemBold {
  font-weight: 600;
}

.proServ-summaryTableItemBoldRight {
  font-weight: 600;
  text-align: right;
}

.proServ-summaryTableFooterTotal {
  font-weight: 800;
  text-align: right;
}

.proServ-summaryTableFooterTotalRed {
  font-weight: 800;
  text-align: right;
  color: red;
}

.proServ-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(211, 210, 210, 0.796);
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.proServ-modalContent {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 9px;
  overflow: auto;
  height: 90vh;
}

.proServ-modalClose {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.proServ-modalTitle {
  text-align: center;
  padding-bottom: 32px;
}

.proServ-modalClose:hover,
.proServ-modalClose:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.resellerSignup {
  display: flex;
  justify-content: center;
  width: 100%;
}

.resellerSignup-container {
  width: 700px;
  border-radius: 10px;
  box-shadow: 0 0 15px 0 rgba(70, 81, 94, 0.3);
  background-color: #e7f5ff;
  border: 1px solid #1864ab;
  margin: 20px 0 20px 0;
  padding: 20px;
}

.resellerSignup-heading {
  display: flex;
  justify-content: center;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}

.resellerSignup-section {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.resellerSignup-sectionContainer {
  font-size: 14px;
  line-height: 2;
  color: #000;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
}

.resellerSignup-sectionHeaderContainer {
  width: 100%;
}

.resellerSignup-sectionHeader {
  font-size: 20px;
  margin: 10px 0 0 0;
}

.resellerSignup-inputContainer {
  padding: 4px;
  font-weight: 600;
  font-size: 14px;
}

.resellerSignup-input {
  display: block;
  width: 300px;
  background-color: #fff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
  box-sizing: border-box;
}

.resellerSignup-inputDropDown {
  display: block;
  width: 310px;
  height: 42px;
  background-color: #fff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 0.5rem;
  font-size: 14px;
}

.newRewards-introSection {
  padding: 80px 100px;
  background-color: white;
  justify-items: center;
}

.newRewards-introContainer {
  display: flex;
  column-gap: 80px;
  justify-content: center;
  max-width: 1240px;
}

.newRewards-introTextContainer {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  width: calc(50% - 40px);
}

.newRewards-introTextHeader {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 39.96px;
  color: #303030;
  margin: 0;
}

.newRewards-introTextBody {
  color: #3A3A3A;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  margin: 0;
}

.newRewards-introImageContainer {
  width: calc(50% - 40px);
  text-align: center;
}

.newRewards-introImageContainer img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.newRewards-whySection {
  padding: 80px 100px;
  background-color: #F5F5F5;
  justify-items: center;
}

.newRewards-whyTextContainer {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  max-width: 1050px;
}

.newRewards-aimSection {
  padding: 80px 100px 80px 100px;
  text-align: center;
  background-color: white;
  background: radial-gradient(circle, rgba(40, 36, 96, 0.6), rgba(40, 36, 96, 0.9)), url("https://www.fabsoft.com/media/cxkl5urj/join-resellers-program-aim.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-items: center;
}

.newRewards-aimContainer {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  max-width: 941px;
}

.newRewards-aimHeader {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}

.newRewards-aimHeaderText {
  padding: 10px 0 10px 0;
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 39.96px;
  color: #ffffff;
  margin: 0;
}

.newRewards-aimHeaderSubText {
  color: #ffffff;
  font-family: "Roboto Slab", serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  vertical-align: middle;
  letter-spacing: 0;
}

.newRewards-aimText {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-family: "Roboto Slab", serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  vertical-align: middle;
  letter-spacing: 0;
}

.newRewards-aimText p {
  margin: 0;
}

.newRewards-section {
  padding: 80px 100px 80px 100px;
  background-color: white;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
}

.newRewards-header {
  padding: 10px 0 10px 0;
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 39.96px;
  color: #303030;
  margin: 0;
  text-align: center;
}

.newRewards-container {
  max-width: 525px;
}

.newRewards-YourInfoSection {
  display: flex;
  row-gap: 20px;
  flex-direction: column;
}

.newRewards-InputContainer {
  display: flex;
  column-gap: 12px;
  row-gap: 12px;
  flex-wrap: wrap;
}

.newRewards-accountInfo {
  display: flex;
  row-gap: 20px;
  flex-direction: column;
}

.newRewards-title {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #303030;
  margin: 0;
}

.newRewards-InputItem {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  column-gap: 12px;
}

.newRewards-Input {
  border: none;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 0;
  padding: 28px 28px 12px 28px;
  width: 100%;
  font-family: "Roboto Slab", serif;
  font-weight: 300;
  font-size: 16px;
  color: black;
}

.newRewards-InputLabel {
  font-size: 16px;
  font-family: "Roboto Slab", serif;
  position: absolute;
  font-weight: 300;
  left: 28px;
  top: 22px;
  color: #3A3A3A;
  transition: all 0.2s ease;
  pointer-events: none;
}

.newRewards-InputItem input:focus + .newRewards-InputLabel,
.newRewards-InputItem input:not(:placeholder-shown) + .newRewards-InputLabel {
  top: 8px;
  font-size: 12px;
  color: #333;
}

.newRewards-SelectWrapper {
  position: relative;
  width: 100%;
}

.newRewards-CountrySelect {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 20px 28px;
  padding-right: 40px;
  background-color: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-family: "Roboto Slab", serif;
  font-weight: 300;
  cursor: pointer;
  color: #3A3A3A;
  width: 100%;
}

.newRewards-SelectWrapper::after {
  content: "▾";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  color: #555;
  font-size: 14px;
  pointer-events: none;
}

.newRewards-SelectWrapper:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}

.newRewards-CountrySelect:focus {
  outline: none;
  background-color: rgba(0, 0, 0, 0.07);
}

.newRewards-CountrySelect option {
  font-size: 12px;
}

.newRewards-SubmitButton {
  padding: 16px 24px;
  background-color: #22559C;
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: white;
  border: 2px solid #22559C;
}

.newRewards-SubmitButton:hover {
  background-color: #1e4a88;
}

.newRewards-SubmitButton:focus {
  background-color: #193d6e;
}

.newRewards-SubmitContainer {
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 1160px) {
  .newRewards-introContainer {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .newRewards-introTextContainer {
    width: 100%;
  }
  .newRewards-introImageContainer {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .newRewards-introSection {
    padding: 24px 16px 24px 16px;
  }
  .newRewards-whySection {
    padding: 24px 16px 24px 16px;
  }
  .newRewards-section {
    padding: 24px 16px 24px 16px;
  }
  .newRewards-aimSection {
    padding: 24px 16px 24px 16px;
  }
}
.groupMembership-Inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#txtGroupSearch::placeholder {
  color: #555;
}

#txtGroupSearch {
  background-color: white;
  color: #555;
}

.groupMembership-groupTitle {
  font-weight: 700;
  padding: 10px;
}

.groupMembership-groupTitleOuter {
  font-weight: 700;
  padding: 10px;
  color: rgb(136, 199, 250);
}

.groupMembership-searchInput::placeholder {
  color: #555;
}

.groupMembership-searchInput {
  display: block;
  width: 350px;
  background-color: white;
  border-color: #000;
  color: #555;
  border-radius: 4px;
  border: 0px solid #000;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
}

.groupMembership-groupsInput {
  display: block;
  width: 360px;
  height: 400px;
  background-color: white;
  color: #555;
  border-radius: 4px;
  border: 0px solid rgb(0, 0, 0);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
}

.groupMembership-allUsersInput {
  display: block;
  width: 360px;
  height: 400px;
  background-color: white;
  color: #555;
  border-radius: 4px;
  border: 0px solid rgb(0, 0, 0);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
}

.groupMembership-groupUsersInput {
  display: block;
  width: 360px;
  height: 400px;
  background-color: white;
  color: #555;
  border-radius: 4px;
  border: 0px solid rgb(0, 0, 0);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
}

.groupMembershipAddDeleteUser {
  text-align: center;
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.groupMembership-saveChangesContainer {
  width: 100%;
  text-align: center;
}

.groupMembership-newAccountButtonAdd:link,
.groupMembership-newAccountButtonAdd:visited {
  display: inline-block;
  text-decoration: none;
  color: white;
  background-color: rgb(136, 199, 250);
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 6px 8px;
  border-radius: 9px;
  margin: 2px;
  text-align: center;
}

.groupMembership-newAccountButtonRemove:link,
.groupMembership-newAccountButtonRemove:visited {
  display: inline-block;
  text-decoration: none;
  color: white;
  background-color: #fa9588;
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 6px 8px;
  border-radius: 9px;
  margin: 2px;
  text-align: center;
}

.groupMembership-SelectGroup:link,
.groupMembership-SelectGroup:visited {
  display: inline-block;
  text-decoration: none;
  color: white;
  background-color: rgb(136, 199, 250);
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 6px 8px;
  border-radius: 9px;
  margin: 2px;
  text-align: center;
}

.groupMembership-SelectGroup:hover,
.groupMembership-newAccountButton:active {
  background-color: #1c7ed6;
}

.groupMembership-newAccountButtonRemove:hover,
.groupMembership-newAccountButtonRemove:active {
  background-color: #d6351c;
}

/*****************************/
/* Product Management Layout */
/*****************************/
.productManagementLayout-header {
  text-align: center;
  margin-left: 174px;
}

.productManagementLayout-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}

.productManagementLayout-mainContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
}

.productManagementLayout-verticalMenu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
}

.productManagementLayout-mainContent {
  width: 100%;
  margin: 0 20px 40px 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 9px;
}

.productManagementSidemenu-button:link,
.productManagementSidemenu-button:visited {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  background-color: #4dabf7;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  width: 160px;
  margin: 0 0 12px 12px;
}

.productManagementSidemenu-button:hover,
.productManagementSidemenu-button:active {
  background-color: #1c7ed6;
}

.productManagementSidemenu-buttonSelected:link,
.productManagementSidemenu-buttonSelected:visited {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  background-color: #1864ab;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  width: 160px;
  margin: 0 0 12px 12px;
}

.productManagement-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}

.productManagement-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: flex-start;
  align-items: baseline;
}

.productManagement-title {
  font-weight: 700;
  font-size: larger;
  padding-bottom: 14px;
}

.productManagement-uiColumn {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 0;
}

.productManagement-uiDoubleColumn {
  display: flex;
  width: 700px;
}

.productManagement-uiDoubleColumnWide {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 1100px;
}

.productManagement-InputItem {
  padding: 10px;
}

.productmanagement-outerColumn2 {
  background-color: white;
  padding: 20px 20px 20px 20px;
  border-radius: 0px;
  margin-right: 10px;
  margin-left: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.productManagement-innerColumn {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 0;
  margin-right: 10px;
  margin-left: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.productManagementTable-button:link,
.productManagementTable-button:visited {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  background-color: #4dabf7;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  width: 160px;
  margin: 24px 0 0;
}

.productManagementTable-button:hover,
.productManagementTable-button:active {
  background-color: #1c7ed6;
}

.productManagement-warning {
  width: 100%;
  text-align: center;
  color: red;
}

.productManagement-warningButton {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 12px;
  border-radius: 9px;
  margin-bottom: 20px;
  background-color: rgba(255, 93, 93, 0.973);
}

.productManagement-warningButton:hover {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 12px;
  border-radius: 9px;
  margin-bottom: 20px;
  background-color: red;
  cursor: pointer;
}

.productManagement-warningDescription {
  text-align: left;
}

.productManagement-warningInput {
  margin-left: auto;
  margin-right: auto;
}

.productManagement-enableBanner {
  height: 26px;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background-color: khaki;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productManagement-enableBannerButton {
  margin: 0 10px;
  color: #e7f5ff;
  background-color: #4dabf7;
  border-width: 1px;
  border-radius: 4px;
  padding: 6px;
}

.productManagement-enableBannerButton:hover {
  background-color: #1c7ed6;
  cursor: pointer;
}

.portalTemplatesModalHeadingContainer {
  text-align: center;
}

.portalTemplatesModalSubHeading {
  margin-bottom: 20px;
}

.portalTemplatesModalBody {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  align-items: baseline;
  justify-content: center;
}

.portalTemplatesModal {
  position: fixed;
  z-index: 0;
  left: 12px;
  width: calc(100% - 24px);
  height: -webkit-fill-available;
  overflow: auto;
  background-color: transparent;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.portalTemplatesCards {
  padding: 20px;
  border: 1px solid #888;
  border-radius: 9px;
  margin: 10px 20px;
  min-width: 300px;
  min-height: 386px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portalTemplatesCardGroup {
  font-weight: 800;
}

.portalTemplatesCardGroupImage {
  vertical-align: middle;
}

.portalTemplatesCardGroupDescriptionTop {
  padding-left: 20px;
  line-height: 30px;
  min-height: 150px;
}

.portalTemplatesCardGroupDescriptionBottom {
  padding-left: 20px;
  line-height: 30px;
  min-height: 100px;
}

.portalTemplatesCardButtonContainer {
  text-align: center;
}

.portalTemplatesCardNoTemplateContainer {
  text-align: center;
  margin-bottom: 20px;
}

.productManagement-footerButton {
  width: 100%;
  text-align: right;
  z-index: 3000;
  padding-bottom: 8px;
}

.productManagement-helpButton {
  border-radius: 33px;
  color: #fff;
  background-color: #F7994D;
  font-size: 16px;
  padding: 15px 30px;
  z-index: 100;
}

.products-videoContainer {
  display: none;
  position: absolute;
  top: 16%;
  left: 50%;
  width: 70%;
  margin-left: -35%;
  border: 2px solid #fff;
  background: #fff;
  z-index: 4000;
  overflow: visible;
}

#boxclose {
  float: right;
  cursor: pointer;
  color: #fff;
  border: 1px solid #aeaeae;
  border-radius: 3px;
  background: #222;
  font-size: 31px;
  font-weight: bold;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;
  position: absolute;
  right: 2px;
  top: 2px;
  z-index: 1002;
  opacity: 0.9;
  padding-bottom: 16px;
}

.boxclose:before {
  content: "x";
}

#boxclose {
  display: none;
}

#fade {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 3500;
  -moz-opacity: 0.8;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/*****************************/
/* Product Management Users */
/*****************************/
.users-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #ffffff;
  text-align: center;
  margin: 12px 0 0 48px;
}

.users-ImportTextArea {
  width: 360px;
}

.usersList-table {
  text-align: left;
  border-spacing: 10px;
  border-collapse: collapse;
  border-left: 3px solid #1864ab;
  border-right: 3px solid #1864ab;
  border-bottom: 3px solid #1864ab;
  font-size: 14px;
  line-height: 1.4;
  width: fit-content;
}

.usersList-table th,
td {
  padding: 8px 8px 8px 20px;
}

.usersList-table a {
  text-decoration: none;
  color: #1c7ed6;
}

.usersList-table a:visited {
  text-decoration: none;
  color: #4dabf7;
}

.usersList-table a:hover {
  text-decoration: none;
  color: #4dabf7;
}

.usersList-table tbody tr:nth-child(even) {
  background-color: #e7f5ff;
}

.usersList-tableItemHeader {
  padding: 10px 0px 10px 21px;
}

.users-importUsersModal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 9px;
  overflow: auto;
}

.updatingCartModal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  text-align: center;
  border-radius: 9px;
  overflow: auto;
}

/*******************************/
/* Product Management Settings */
/*******************************/
.settings-settingsInput {
  display: block;
  width: 470px;
  height: 400px;
  background-color: white;
  color: #555;
  border-radius: 4px;
  border: 0px solid rgb(0, 0, 0);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
}

.settings-searchInput {
  display: block;
  width: 460px;
  background-color: white;
  border-color: #000;
  color: #555;
  border-radius: 4px;
  border: 0px solid #000;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
}

.settings-radio {
  top: 2px;
  position: relative;
  margin-right: 2px;
}

.settings-radioSpacer {
  margin: 0 12px;
}

.settings-inputControls {
  display: flex;
  justify-content: center;
}

.salesTrial-body {
  background: rgb(246, 246, 246);
  background: linear-gradient(180deg, rgb(246, 246, 246) 0%, rgb(229, 238, 252) 100%);
  font-family: "League Spartan", sans-serif;
}

.salesTrial-main {
  width: 100%;
}

.salesTrial-mainContent {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: space-between;
  justify-content: space-between;
}

.salesTrial-logo {
  height: 80px;
  width: 80px;
  padding: 20px 0 0 20px;
}

.salesTrial-deskBranding {
  color: #DF7331;
  font-family: Calibri, "Open Sans", sans-serif;
  font-weight: bold;
}

.salesTrial-connectBranding {
  color: #929497;
  font-family: Calibri, "Open Sans", sans-serif;
  font-weight: bold;
  font-style: italic;
}

.salesTrial-signup {
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.salesTrial-focus {
  width: 46%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.salesTrial-learningFocus {
  width: 46%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.salesTrial-signupTitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px;
  font-weight: 500;
  text-align: left;
  color: #6997C4;
  flex-wrap: wrap;
  align-content: center;
}

.salesTrial-signupTitleText {
  font-size: 42px;
  padding: 10px;
}

.salesTrial-focusTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 40px 0 0 20%;
  font-weight: 500;
  text-align: left;
  color: #6997C4;
  flex-wrap: wrap;
  align-content: center;
  padding-left: 10px;
}

.salesTrial-learningTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 40px 0 0 20%;
  font-weight: 500;
  text-align: left;
  color: #6997C4;
  flex-wrap: wrap;
  align-content: center;
  max-width: 700px;
  padding-left: 10px;
}

.salesTrial-focusTitleText {
  font-size: 42px;
  padding: 10px;
}

.salesTrial-learningTitleText {
  font-size: 42px;
  padding: 10px;
}

.salesTrial-signupTitleHighlight {
  color: #FF914D;
}

.salesTrial-signupText {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 22px;
  text-align: left;
  flex-wrap: wrap;
  align-content: center;
}

.salesTrial-signupText {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 22px;
  text-align: left;
  flex-wrap: wrap;
  align-content: center;
}

.salesTrial-signupTextContent {
  max-width: 558px;
  padding: 10px;
}

.salesTrial-focusText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 22px;
  text-align: left;
  flex-wrap: wrap;
  align-content: center;
  margin: 0 0 0 20%;
}

.salesTrial-focusTextContent {
  padding: 10px;
}

.salesTrial-learningText {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 22px;
  text-align: left;
  flex-wrap: wrap;
  align-content: center;
  margin: 0 0 0 20%;
  max-width: 700px;
}

.salesTrial-signupTextContentHighlight {
  font-weight: bold;
  color: #000 !important;
}

.salesTrial-signupFormContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  text-align: left;
  flex-wrap: wrap;
  align-content: center;
  padding: 20px 0 0 20px;
}

.salesTrial-signupFormInputContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
}

.salesTrial-signupFormInput {
  display: block;
  width: 258px;
  background-color: #fff;
  color: black;
  border-radius: 4px;
  padding: 12px 24px 12px 24px;
  box-sizing: border-box;
  margin: 8px;
  font-size: 22px;
}

.salesTrial-signupFormSubmitContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  margin: 24px 0 0 0;
}

.salesTrial-submitButton {
  background: #6997C4;
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 22px;
  transition: all 0.3s;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  width: 112px;
}

.salesTrial-submitButton:hover,
.salesTrial-submitButton:active {
  background-color: #4E83BE;
  cursor: pointer;
}

.salesTrial-copyright {
  width: 100%;
  text-align: left;
  font-size: 18px;
  margin: auto 0 20px 20px;
  opacity: 0.4;
}

.salesTrial-marketing {
  width: 50%;
  height: 100vh;
  background-image: radial-gradient(rgb(78, 131, 190) 18%, transparent 18%), radial-gradient(rgb(78, 131, 190) 18%, transparent 18%);
  background-position: 10px 0px, 34px 24px;
  background-size: 48px 48px;
  background-color: rgb(105, 151, 196);
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.salesTrial-marketingImageContainer {
  width: 80%;
  height: 75vh;
  border-radius: 17px;
  box-shadow: 0 0 15px 0 rgba(40, 68, 91, 0.3);
  background-color: #fff;
  border: 10px solid #28445B;
  margin: 20px 0 20px 0;
  display: flex;
}

.salesTrial-marketingContainer {
  position: relative;
  width: 34%;
  margin: 20px 0 20px 0;
  display: flex;
  padding-top: 8%;
}

.salesTrial-marketingImage {
  width: 100%;
}

.salesTrial-marketingOverlapImage {
  border-radius: 17px;
  box-shadow: 0 0 15px 0 rgba(40, 68, 91, 0.3);
  background-color: #fff;
  border: 10px solid #6997C4;
  position: absolute;
  right: -30%;
  z-index: 1;
}

.salesTrial-spacer {
  width: 16%;
  height: 100vh;
  background-image: radial-gradient(rgb(78, 131, 190) 18%, transparent 18%), radial-gradient(rgb(78, 131, 190) 18%, transparent 18%);
  background-position: 10px 0px, 34px 24px;
  background-size: 48px 48px;
  background-color: rgb(105, 151, 196);
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.salesTrial-learningSpacer {
  width: 16%;
  height: 100vh;
  background-image: radial-gradient(rgb(78, 131, 190) 18%, transparent 18%), radial-gradient(rgb(78, 131, 190) 18%, transparent 18%);
  background-position: 10px 0px, 34px 24px;
  background-size: 48px 48px;
  background-color: rgb(105, 151, 196);
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.salesTrial-learningContainer {
  width: 34%;
  margin: 20px 0 20px 0;
  display: flex;
  padding-top: 8%;
}

.salesTrial-learningLinks {
  position: relative;
  width: 34%;
  margin: 20px 0 20px 0;
  display: flex;
  flex: 1 1;
  padding-top: 3%;
  text-align: center;
  flex-direction: column;
}

.salesTrial-learningLinksContainer {
  padding-bottom: 30px;
}

.salesTrial-learningIcons {
  width: 140px;
  height: 110px;
}

.salesTrial-learningLinkText {
  color: #000 !important;
  font-size: 24px;
}

.salesTrial-videoContainer {
  display: none;
  position: absolute;
  top: 16%;
  left: 50%;
  width: 70%;
  margin-left: -35%;
  border: 2px solid #fff;
  background: #fff;
  z-index: 4000;
  overflow: visible;
}

#boxclose2 {
  float: right;
  cursor: pointer;
  color: #fff;
  border: 1px solid #aeaeae;
  border-radius: 3px;
  background: #222;
  font-size: 31px;
  font-weight: bold;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;
  position: absolute;
  right: 2px;
  top: 2px;
  z-index: 1002;
  opacity: 0.9;
  padding-bottom: 16px;
}

.salesTrial-marketingPaymentContainer {
  position: relative;
  width: 64%;
  margin: 0 0 20px 0;
  display: flex;
  padding-top: 4%;
}

.salesTrial-purchaseTitle {
  justify-content: center;
  font-weight: 500;
  color: #6997C4;
  min-height: 300px;
  text-align: center;
}

.salesTrial-purhcaseText {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 22px;
  text-align: center;
  flex-wrap: wrap;
  align-content: center;
  margin: 80px 0 0 16%;
}

.salesTrial-purhcaseTextContent {
  line-height: 30px;
  margin: 0;
  color: rgb(85, 85, 85);
}

.salesTrial-purhcaseTextEmphasis {
  font-size: 36px;
  font-style: italic;
}

.salesTrial-purchaseInformation {
  width: 16%;
  display: flex;
  flex-direction: column;
}

.salesTrial-purchaseBullets {
  border-radius: 17px;
  box-shadow: 0 0 15px 0 rgba(217, 217, 217, 0.3);
  background-color: #D9D9D9;
  border: 10px solid #D9D9D9;
  margin: 80px 0 30px 16%;
  font-weight: bold;
  line-height: 24px;
  width: 100%;
}

.salesTrial-purchaseBulletUnordered {
  padding: 2px 0 2px 26px;
}

.salesTrial-purchaseBulletText {
  font-size: 22px;
}

.salesTrial-purchaseSubBulletText {
  font-size: 16px;
}

.salesTrial-purchasingOverlapImage {
  border-radius: 17px;
  box-shadow: 0 0 15px 0 rgba(40, 68, 91, 0.3);
  background-color: #fff;
  border: 10px solid #6997C4;
  position: absolute;
  right: -10%;
  z-index: 1;
}

.salesTrial-purchasingTitleHighlight {
  color: #DF7331;
  font-size: 64px;
}

.salesTrial-purchasingPaymentContainer {
  position: relative;
  width: 64%;
  margin: 0 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-top: 3%;
}

.salesTrial-purchasingForm {
  align-self: center;
}

.salesTrial-purchasingFormFields {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px 5px 10px;
}

.salesTrial-purchasingFormHeaderContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px 0 10px;
}

.salesTrial-purchasingFormHeader {
  height: 40px;
  display: block;
  width: 300px;
  margin: 8px 24px 0 24px;
}

.salesTrial-purchasingFormHeaderSeperator {
  width: 646px;
}

.salesTrial-purchasingInput {
  height: 40px;
  display: block;
  width: 300px;
  background-color: #fff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 10px;
  margin: 8px 24px 8px 24px;
  box-sizing: border-box;
}

.salesTrial-purchasingFormLabelField {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0 5px 25px;
}

.salesTrial-purchasingFormLabel {
  font-size: 22px;
}

.salesTrial-purchasingFormInfo {
  padding: 0 0 20px 60px;
  max-width: 630px;
}

.salesTrial-purchasingSpacer {
  width: 16%;
  background-image: radial-gradient(rgb(78, 131, 190) 18%, transparent 18%), radial-gradient(rgb(78, 131, 190) 18%, transparent 18%);
  background-position: 10px 0px, 34px 24px;
  background-size: 48px 48px;
  background-color: rgb(105, 151, 196);
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.salesTrial-purchasingTextArea {
  height: 172px;
  width: 100%;
  background-color: #fff;
  border-color: black;
  color: black;
  border-radius: 4px;
  border: 1px solid black;
  padding: 10px;
  margin: 8px 24px 20px 24px;
  box-sizing: border-box;
  display: none;
}

.salesTrial-purchasingFormTos {
  display: flex;
  max-width: 630px;
  padding: 0 0 20px 40px;
}

.salesTrial-purchasingFormTosText {
  padding-top: 16px;
}

.deskMsStore-subscribeButton {
  display: inline-block;
  text-decoration: none;
  color: #e7f5ff;
  font-size: 18px;
  border-radius: 9px;
  background-color: #6997C4;
  margin-bottom: 10px;
  padding: 20px;
  cursor: pointer;
}

.salesTrial-thankYouContainer {
  position: relative;
  width: 34%;
  margin: 20px 0 20px 0;
  display: flex;
  padding-top: 8%;
}

.newSalesTrial-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(40, 36, 96, 0.6) 0%, rgba(40, 36, 96, 0.9) 100%), url(/media/jxqjz4bl/homebackground.png) center/cover no-repeat;
  padding: 20px;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.newSalesTrial-form-wrapper {
  background: white;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 60px;
  max-width: 640px;
  width: 100%;
  position: relative;
}

.newSalesTrial-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.newSalesTrial-logo-icon {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.newSalesTrial-logo-icon::before {
  content: "F";
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.newSalesTrial-logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.newSalesTrial-heading {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: Lora;
}

.newSalesTrial-subheading {
  font-family: "Roboto Slab";
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 30px;
  color: #3A3A3A;
}

.newSalesTrial-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newSalesTrial-input-group {
  display: flex;
  flex-direction: column;
}

.newSalesTrial-input {
  padding: 16px 20px;
  border: none;
  font-size: 14px;
  color: #333;
  outline: none;
  height: 36px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.newSalesTrial-input:focus {
  outline: none;
  border-color: #4e54c8;
  background: white;
  box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.1);
}

.newSalesTrial-input::placeholder {
  color: #999;
}

.newSalesTrial-submit-btn {
  background: #22559C;
  color: white;
  padding: 15px 30px;
  border: none;
  font-family: Lora;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 140px;
  align-self: center;
}

.newSalesTrial-submit-btn:hover {
  background: #22559C;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(78, 84, 200, 0.3);
}

.newSalesTrial-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .newSalesTrial-container {
    padding: 15px;
  }
  .newSalesTrial-form-wrapper {
    padding: 30px 25px;
  }
  .newSalesTrial-heading {
    font-size: 28px;
  }
  .newSalesTrial-logo-text {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .newSalesTrial-form-wrapper {
    padding: 25px 20px;
  }
  .newSalesTrial-heading {
    font-size: 24px;
  }
  .newSalesTrial-input {
    padding: 12px;
    font-size: 14px;
  }
  .newSalesTrial-submit-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}
/* Animation for form appearance */
@keyframes newSalesTrial-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.newSalesTrial-form-wrapper {
  animation: newSalesTrial-fadeInUp 0.6s ease-out;
}

/* Loading state for button */
.newSalesTrial-submit-btn.loading {
  position: relative;
  color: transparent;
}

.newSalesTrial-submit-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media screen and (max-width: 1620px) {
  .salesTrial-purchasingOverlapImage {
    right: -20%;
  }
}
@media screen and (max-width: 1620px) {
  .salesTrial-purchasingOverlapImage {
    right: -20%;
  }
}
@media screen and (max-width: 1470px) {
  .salesTrial-focusTitle {
    margin: 40px 0 0 10%;
  }
  .salesTrial-focusText {
    margin: 0 0 0 10%;
  }
  .salesTrial-learningLinks {
    width: 20%;
  }
  .salesTrial-learningFocus {
    width: 50%;
  }
}
@media screen and (max-width: 1370px) {
  .salesTrial-purchasingOverlapImage {
    display: none;
  }
  .salesTrial-focusTitle {
    margin: 40px 0 0 0;
  }
  .salesTrial-focusText {
    margin: 0 0 0 0;
  }
  .salesTrial-purchaseInformation {
    width: 32%;
  }
  .salesTrial-purchasingPaymentContainer {
    width: 50%;
  }
  .salesTrial-purchasingSpacer {
    width: 10%;
  }
  .salesTrial-marketingContainer {
    width: 38%;
  }
  .salesTrial-thankYouContainer {
    width: 38%;
  }
}
@media screen and (max-width: 1272px) {
  .salesTrial-purchaseInformation {
    width: 28%;
  }
  .salesTrial-purchasingPaymentContainer {
    width: 50%;
  }
}
@media screen and (max-width: 1226px) {
  .salesTrial-purchasingPaymentContainer {
    width: 66%;
  }
  .salesTrial-purchasingSpacer {
    display: none;
  }
  .salesTrial-purchasingOverlapImage {
    right: 0;
    margin-right: 10px;
  }
  .salesTrial-marketingContainer {
    display: none;
  }
  .salesTrial-thankYouContainer {
    display: none;
  }
}
@media screen and (max-width: 1168px) {
  .salesTrial-marketingContainer {
    display: none;
  }
  .salesTrial-focus {
    width: 80%;
  }
  .salesTrial-spacer {
    display: flex;
    width: 20%;
  }
}
@media screen and (max-width: 1138px) {
  .salesTrial-signupTitleText {
    font-size: 36px;
  }
  .salesTrial-focusTitleText {
    font-size: 36px;
  }
  .salesTrial-marketingContainer {
    width: 54%;
  }
  .salesTrial-learningLinks {
    padding-top: 8%;
  }
}
@media screen and (max-width: 1040px) {
  .salesTrial-purchasingPaymentContainer {
    width: 66%;
  }
  .salesTrial-purchasingForm {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 360px;
  }
  .salesTrial-purchasingFormFields {
    flex-direction: column;
    align-items: flex-start;
  }
  .salesTrial-purchasingFormHeaderSeperator {
    width: 292px;
  }
  .salesTrial-purchasingTextArea {
    width: 300px;
  }
  .salesTrial-purchasingSpacer {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .salesTrial-purchasingOverlapImage {
    display: none;
  }
  .salesTrial-purchaseInformation {
    width: 40%;
    min-width: 360px;
  }
  .salesTrial-purchasingPaymentContainer {
    width: 50%;
    min-width: 360px;
  }
}
@media screen and (max-width: 800px) {
  .salesTrial-learningSpacer {
    display: none;
  }
  .salesTrial-learningLinks {
    align-items: flex-end;
  }
  .salesTrial-purchasingPaymentContainer {
    padding-top: 0;
    width: 100%;
  }
  .salesTrial-purchasingForm {
    padding-top: 0;
  }
}
@media screen and (max-width: 600px) {
  .salesTrial-signup {
    width: 100%;
    height: 100%;
  }
  .salesTrial-marketing {
    display: none;
  }
  .salesTrial-spacer {
    display: none;
  }
  .salesTrial-focus {
    width: 100%;
  }
  .salesTrial-learningLinks {
    align-items: center;
    width: 100%;
    min-width: 360px;
    padding-top: 20px;
  }
  .salesTrial-learningFocus {
    height: unset;
    width: 100vw;
  }
  .salesTrial-learningTitle {
    margin: 40px 0 0 0;
  }
  .salesTrial-learningText {
    margin: 0 0 0 0;
  }
}
@media screen and (max-width: 400px) {
  .salesTrial-purchaseBullets {
    margin: 10px 0 30px 10px;
  }
  .salesTrial-purchasingFormInfo {
    padding: 0 0 20px 32px;
  }
  .salesTrial-purchasingFormTos {
    padding: 0 0 20px 32px;
  }
}
.productInfo-learningFocus {
  width: 84%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.productInfo-learningText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 22px;
  text-align: left;
  flex-wrap: wrap;
  align-content: center;
}

.deskConnectSales-videoCarousel {
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.deskConnectSales-videoCarouselContainer {
  width: 70vw;
  align-self: center;
}

.deskConnectSales-videoThumb {
  background-size: cover !important;
  transition: 0.3s;
}

.deskConnectSales-videoThumbImage {
  width: auto;
  height: 430px;
}

.splide__slide {
  display: flex;
  justify-content: center;
}

.deskConnectSales-videoContainer {
  display: none;
  position: absolute;
  left: 50%;
  width: 70%;
  margin-left: -35%;
  border: 2px solid #fff;
  background: #fff;
  z-index: 1002;
  overflow: visible;
  margin-top: 10vh;
}

.deskConnectSales-videoCarouselTextContainer {
  width: 100%;
  text-align: center;
  font-size: 24px;
}

.deskConnectSales-videoCarouselText {
  margin: 0 0 10px 0;
}

.deskConnectSales-leapContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100vw;
  font-size: 32px;
}

.splide__pagination {
  margin: -20px !important;
}

/* LAYOUT */
.AIFileProQuotaPurchase_wrapper {
  display: flex;
  font-family: "Lora";
  flex-direction: column;
  background-color: black;
}

.AIFileProQuotaPurchase_mainContent {
  flex: 0 1 auto;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.AIFileProQuotaPurchase_gutter {
  flex: 1 5 0;
  min-width: 0;
  max-width: 100px;
}

.AIFileProQuotaPurchase_container {
  display: flex;
  min-height: 100vh;
}

.AIFileProQuotaPurchase_left {
  flex: 1 1 40%;
  background: #f7f7f7;
  padding: 40px;
}

.AIFileProQuotaPurchase_right {
  flex: 1 1 60%;
  padding: 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* LEFT PANEL STYLES */
.AIFileProQuotaPurchase_left-title {
  font-size: 40px;
  margin-bottom: 1.5rem;
}

.AIFileProQuotaPurchase_feature {
  margin-bottom: 1.5rem;
}

.AIFileProQuotaPurchase_feature-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.AIFileProQuotaPurchase_feature-text {
  font-size: 14px;
}

.AIFileProQuotaPurchase_feature-list {
  list-style: disc inside;
  font-size: 0.95rem;
}

/* RIGHT PANEL HEADINGS */
.AIFileProQuotaPurchase_logo {
  display: block;
  max-width: 140px;
  margin-bottom: 1rem;
}

.AIFileProQuotaPurchase_heading {
  font-size: 40px;
  color: #1a4e8a;
  margin: 40px 0 0 0;
}

.AIFileProQuotaPurchase_subheading {
  font-size: 28px;
  margin-bottom: 1rem;
}

.AIFileProQuotaPurchase_intro {
  margin-bottom: 2rem;
  font-size: 28px;
}

.AIFileProQuotaPurchase_rightContent {
  max-width: 660px;
  align-self: center;
}

/* GENERIC FORM GROUP */
.AIFileProQuotaPurchase_form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.AIFileProQuotaPurchase_form-group input,
.AIFileProQuotaPurchase_form-group select {
  width: 314px;
  height: 68px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  background: #f0f0f0;
}

/* 2-COLUMN GRIDS */
.AIFileProQuotaPurchase_form-grid--2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.AIFileProQuotaPurchase_form-grid--2 > .AIFileProQuotaPurchase_form-group {
  display: flex;
  flex-direction: column;
}

/* SECTION TITLES & NOTES */
.AIFileProQuotaPurchase_section-title {
  font-size: 34px;
  margin: 40px 0 0.5rem;
}

.AIFileProQuotaPurchase_note {
  font-size: 14px;
  color: #666;
  margin-bottom: 1.5rem;
}

.AIFileProQuotaPurchase_CcImgs {
  text-align: center;
  vertical-align: middle;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 36px;
}

.AIFileProQuotaPurchase_CcImgs img {
  padding: 0 4px;
}

/* CHECKBOX */
.AIFileProQuotaPurchase_checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.AIFileProQuotaPurchase_checkbox-group input {
  margin: 2px 12px;
  width: 24px;
  height: 24px;
}

.AIFileProQuotaPurchase_checkbox-group label {
  font-size: 14px;
  line-height: 1.4;
  padding: 5px 0 0 4px;
}

/* SUBMIT BUTTON */
.AIFileProQuotaPurchase_submit {
  font-size: 16px;
  background: #1a4e8a;
  color: #fff;
  border: 2px solid #1a4e8a;
  cursor: pointer;
  width: 197px;
  height: 48px;
  margin-top: 40px;
}

/* BOTTOM WAVE */
.AIFileProQuotaPurchase_wave {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #eef6fa;
  border-top-left-radius: 100% 60px;
  border-top-right-radius: 100% 60px;
  z-index: 0;
}

/* Grid of cards */
.AIFileProQuotaPurchase_products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0 0;
  padding: 0;
}

/* Card base */
.AIFileProQuotaPurchase_product {
  position: relative;
  background: white;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid #e5e7eb;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

/* Hover & Selected states */
.AIFileProQuotaPurchase_product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #1a4e8a;
}

.AIFileProQuotaPurchase_product:has(input[type=radio]:checked) {
  border-color: #1a4e8a;
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
  box-shadow: 0 6px 20px rgba(26, 78, 138, 0.2);
}

.AIFileProQuotaPurchase_product:has(input[type=radio]:checked)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #1a4e8a;
  z-index: 1;
}

/* Selected checkmark indicator */
.AIFileProQuotaPurchase_product:has(input[type=radio]:checked)::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: #1a4e8a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  z-index: 2;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(26, 78, 138, 0.2);
  }
  50% {
    box-shadow: 0 6px 20px rgba(26, 78, 138, 0.3);
  }
}
/* Hide default radio button */
.AIFileProQuotaPurchase_product-radio {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 18px;
  height: 18px;
  accent-color: #1a4e8a;
  z-index: 10;
}

/* Header zone */
.AIFileProQuotaPurchase_product-header {
  padding: 1.5rem 1.5rem 2.5rem;
  text-align: center;
  position: relative;
  margin-top: 40px;
}

.AIFileProQuotaPurchase_product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.AIFileProQuotaPurchase_product-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #1a4e8a;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Body */
.AIFileProQuotaPurchase_product-body {
  padding: 0 1.5rem 1rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.AIFileProQuotaPurchase_badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a4e8a, #1a668a);
  color: white;
  padding: 0.5rem 2.5rem;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.AIFileProQuotaPurchase_product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.AIFileProQuotaPurchase_product-caption {
  font-size: 1.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

/* Price styling */
.AIFileProQuotaPurchase_product-price {
  font-size: 2rem;
  font-weight: 800;
  color: #1a4e8a;
  margin: 0;
  line-height: 1;
  display: block;
  text-align: center;
  padding: 0.8rem 0;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}

.home-whoWeAreButton {
  display: inline-block;
  background-color: #22559c;
  color: #fff;
  text-decoration: none;
  margin: 26px 0 0 0;
  font-family: "Lora";
  font-size: 16px;
  padding: 24px 52px;
  border: 2px solid #22559c;
}

.home-whoWeAreButton:hover {
  color: #22559c;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid #ffffff;
}

.AIFileProQuotaPurchase_purchaseContainer {
  font-family: "Segoe UI", Roboto, sans-serif;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.AIFileProQuotaPurchase_header {
  background: #1a4e8a;
  color: #fff;
  padding: 16px;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
}

.AIFileProQuotaPurchase_table {
  width: 100%;
  border-collapse: collapse;
}

.AIFileProQuotaPurchase_table th,
.AIFileProQuotaPurchase_table td {
  padding: 12px 16px;
  text-align: left;
}

.AIFileProQuotaPurchase_table th {
  background: #e8eef3;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.AIFileProQuotaPurchase_row {
  transition: background 0.2s;
}

.AIFileProQuotaPurchase_row:nth-child(even) {
  background: #fafbfc;
}

.AIFileProQuotaPurchase_row:hover {
  background: rgba(26, 78, 138, 0.1);
}

.AIFileProQuotaPurchase_selected {
  background: rgba(26, 78, 138, 0.2) !important;
}

.AIFileProQuotaPurchase_btn {
  width: 28px;
  height: 28px;
  border: none;
  background: #1a4e8a;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.AIFileProQuotaPurchase_btn:active {
  background: #133a64;
}

.AIFileProQuotaPurchase_quantity {
  width: 50px;
  padding: 4px;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.AIFileProQuotaPurchase_price {
  font-weight: 600;
  font-size: 1rem;
  color: #1a4e8a;
}

.AIFileProQuotaPurchase_footer {
  text-align: right;
  padding: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
}

.AIFileProQuotaPurchase_footer span {
  color: #1a4e8a;
}

.AIFileProQuotaPurchase_controls {
  display: flex;
  flex-wrap: nowrap; /* never wrap items onto a second line */
  justify-content: center;
  align-items: center;
  gap: 4px;
  white-space: nowrap; /* prevent input text from wrapping the flex container */
}

/* Responsive design */
@media (max-width: 456px) {
  .AIFileProQuotaPurchase_controls {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .AIFileProQuotaPurchase_products {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }
  .AIFileProQuotaPurchase_product-header,
  .AIFileProQuotaPurchase_product-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .AIFileProQuotaPurchase_product-price {
    font-size: 1.8rem;
  }
}
/* Interactive feedback */
.AIFileProQuotaPurchase_product:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

/* dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddResponsive design */
@media (max-width: 768px) {
  .AIFileProQuotaPurchase_products {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0.5rem;
  }
  .AIFileProQuotaPurchase_product-header,
  .AIFileProQuotaPurchase_product-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .AIFileProQuotaPurchase_product-price {
    font-size: 2rem;
  }
}
/* Interactive feedback */
.AIFileProQuotaPurchase_product:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

@media screen and (max-width: 1486px) {
  .AIFileProQuotaPurchase_mainContent {
    flex: 0 1 100%;
  }
}
@media screen and (max-width: 1226px) {
  .AIFileProQuotaPurchase_gutter {
    display: none;
  }
}
@media (max-width: 768px) {
  .AIFileProQuotaPurchase_container {
    flex-direction: column;
  }
  .AIFileProQuotaPurchase_left,
  .AIFileProQuotaPurchase_right {
    padding: 20px;
  }
  .AIFileProQuotaPurchase_product {
    flex: 1 1 100%;
  }
  .AIFileProQuotaPurchase_wave {
    display: none;
  }
}
.blogs-heroImage {
  width: 64%;
  padding-top: 30px;
}

.blogs-postsSection {
  padding: 20px 10px 100px 10px;
  text-align: center;
  width: 100%;
}

.blogs-postsGrid {
  max-width: 1140px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 66px 0px;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}

.blogs-post {
  max-width: 350px;
  width: 100%;
  background-color: #fff;
  border-style: solid;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: left;
}

.blogs-postImageContainer {
  height: 240px;
  max-width: 350px;
  width: 100%;
  position: relative;
  flex: 0 1 auto;
}

.blogs-postImage {
  height: 100%;
  width: 100%;
}

.blogs-postImageContainer > .blogs-postImageOverlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 240px;
  max-width: 350px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: 300ms;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.blogs-postImageOverlay:hover {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
  transition: 300ms;
}

.blogs-postText {
  padding: 0 15px 20px 15px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
}

.blogs-postTitleText {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  flex: 0 1 auto;
  min-height: 48px;
}

.blogs-postAuthor {
  font-weight: 400;
  font-size: 14px;
  flex: 0 1 auto;
}

.blogs-postArticle {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  flex: 0 1 auto;
}

.blogs-postLink {
  font-size: 12px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
}

.blogs-budgetContainer {
  flex: 0 1 auto;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.blogs-budgetTitleContainer {
  flex: 0 1 auto;
  max-width: 1240px;
  width: 100%;
  margin: 60px auto 0 auto;
  text-align: center;
}

.blogs-pricingTableContainer {
  margin: 2rem auto;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.blogs-pricingTable {
  width: 100%;
  border-collapse: collapse;
  font-family: "Roboto Slab", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  color: #333;
}

.blogs-pricingTable thead {
  background-color: #f5f5f5;
}

.blogs-pricingTable th,
.blogs-pricingTable td {
  padding: 1rem;
  text-align: left;
  word-break: break-word;
}

.blogs-pricingTable td svg {
  vertical-align: bottom;
  padding-right: 10px;
}

.blogs-pricingTable th {
  font-weight: 600;
  color: #555;
}

.blogs-trialMessage {
  display: inline-flex;
  align-items: center;
  background-color: #f5fdf5;
  padding: 12px 16px;
  margin: 1rem auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  font-size: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.blogs-checkIcon {
  color: #4caf50;
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;
}

.blogs-featureSection {
  justify-content: center;
  gap: 2rem;
  padding: 60px 0 0 0;
}

.blogs-featureCard {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  max-width: 600px;
  background: white;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.blogs-featureImage {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.blogs-featureTextContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem 1rem;
}

.blogs-featureTitle {
  font-family: "Lora", "Roboto Slab", serif;
  font-size: 1.75rem;
  margin: 0 0 1rem;
  color: #222;
  line-height: 1.2;
}

.blogs-featureText {
  font-family: "Roboto Slab", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.blogs-keyDifferencesContainer {
  padding: 40px 0 40px 40px;
}

.blogs-keyDifferencesList li {
  padding: 10px 0;
}

.blog-video {
  height: 300px;
  width: 100%;
}

.blogs-videoTextContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem 1rem;
  text-align: center;
  padding: 40px 0 0 0;
}

.blogs-downloadCardContainer {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1rem 4rem 1rem;
}

.blogs-downloadCard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 0 1.5rem 1.25rem 1.5rem;
  min-width: 320px;
  max-width: 400px;
  flex: 1 1 300px;
}

.blogs-downloadContent {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blogs-downloadIcon {
  font-size: 2rem;
}

.blogs-downloadText {
  display: flex;
  flex-direction: column;
}

.blogs-downloadTitle {
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  font-size: 1rem;
  color: #111;
  margin-bottom: 0.25rem;
}

.blogs-downloadPrice {
  font-size: 0.9rem;
  color: #666;
}

.blogs-downloadButton {
  background-color: #1a4685;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.blogs-downloadButton:hover {
  background-color: #153a6d;
}

.blogs-videoContainer {
  padding: 20px;
}

.blogs-FinalThoughtsText {
  flex: 1 1;
}

.blogs-finalThoughtsTitle {
  font-family: "Lora";
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 40px 0;
  text-align: center;
  width: 100%;
}

.blogs-videoThumbnailWrapper {
  position: relative;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
}

.blogs-videoThumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blogs-playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 0.5rem 0.75rem;
  pointer-events: none;
}

.blogs-downloadButton {
  display: inline-block;
  text-decoration: none;
  background-color: #1a4685;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.blogs-downloadButton:hover {
  background-color: #153a6d;
}

.blogs-modalOverlay {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
  overflow: auto;
}

.blogs-modalOverlay.active {
  display: flex;
}

.blogs-modalContent {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background-color: #000;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.blogs-modalContent video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  border-radius: 8px;
  display: block;
  box-sizing: border-box;
}

.blogs-modalClose {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.5rem;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
}

.newBlogs-postsSection {
  padding: 80px 100px 80px 100px;
  text-align: center;
  width: 100%;
}

.newBlogs-postsGrid {
  max-width: 1140px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px 24px;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}

.newBlogs-post {
  max-width: 350px;
  width: 100%;
  background-color: #fff;
  border-style: solid;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: left;
}

.newBlogs-postImageContainer {
  height: 240px;
  max-width: 350px;
  width: 100%;
  position: relative;
  flex: 0 1 auto;
}

.newBlogs-postImage {
  height: 100%;
  width: 100%;
}

.newBlogs-postImageContainer > .blogs-postImageOverlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 240px;
  max-width: 350px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: 300ms;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.newBlogs-postImageOverlay:hover {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
  transition: 300ms;
}

.newBlogs-postText {
  padding: 0 15px 20px 15px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
}

.newBlogs-postTitleText {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  flex: 0 1 auto;
  min-height: 48px;
}

.newBlogs-postAuthor {
  font-weight: 400;
  font-size: 14px;
  flex: 0 1 auto;
}

.newBlogs-postArticle {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  flex: 0 1 auto;
}

.newBlogs-postLink {
  font-size: 12px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 650px) {
  .blogs-videoContainer {
    padding: 0;
  }
}
@media screen and (max-width: 500px) {
  .blogs-videoContainer {
    padding: 0;
  }
  .blogs-downloadCard {
    padding: 4px 10px 4px 0;
    min-width: 0;
  }
}/*# sourceMappingURL=style.css.map */