@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Lora:wght@400;700&family=Raleway:wght@400;700&family=Nunito:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Source+Sans+Pro:wght@300;400;600&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.75;
  /* Increased for better readability */
  font-size: 1rem;
  /* Equivalent to ~18px */
}

.lead {
  font-size: 1rem !important;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

.btn-primary {
  background-color: #0056D2;
  border-color: #00419f;
  color: white;
}
.btn-primary:hover {
  background-color: #003786;
}

.text-primary {
  color: #0056D2 !important;
}

a.text-primary:hover {
  color: #00419f !important;
}

.lh-mobile-friendly {
  line-height: 1.2;
}

.form-control {
  border-radius: 5px;
  border: 1px solid #D6D6D6;
  padding: 10px;
}
.form-control:focus {
  border-color: #0056D2;
  box-shadow: 0 0 5px rgba(0, 86, 210, 0.5);
}

/*  Use "desktop" for default styling, then override with tablet & mobile */
header {
  /* Hide scrollbar in WebKit browsers */
}
header .navbar-sub .navbar-nav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  /* Allows scrolling if content overflows */
  white-space: nowrap;
  /* Prevents text from wrapping */
}
header .navbar-sub .nav-item {
  flex: 0 0 auto;
  /* Prevents items from stretching */
  list-style: none;
}
header li::marker {
  content: none;
  display: none;
}
header .navbar-sub .navbar-nav::-webkit-scrollbar {
  display: none;
}
header .navbar-brand {
  min-width: 200px;
  /* Adjust this value based on your design */
}
header .navbar .d-lg-flex {
  min-width: 200px;
  /* Match the logo width */
  text-align: right;
  /* Align buttons/profile to the right */
}

/*  Use "desktop" for default styling, then override with tablet & mobile */
footer {
  margin-top: 8em;
  font-size: 16px;
}
footer .list {
  position: relative;
  padding: 0;
}
footer .list::after {
  position: absolute;
  content: "";
  left: 0;
  top: 20px;
  width: 48px;
  border-top: 1px solid #FFFFFF;
}
footer .title {
  margin-top: 50px;
  font-size: 1.25em;
}

@media screen and (max-width: 640px) {
  footer {
    margin-top: 8em;
  }
  footer .list {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
  }
  footer .list::after {
    position: absolute;
    content: "";
    left: 20px;
    top: 20px;
    width: 48px;
    border-top: 1px solid #FFFFFF;
  }
  footer .title {
    margin-top: 50px;
    font-size: 1.25em;
  }
}
/*  Use "desktop" for default styling, then override with tablet & mobile */
.toast {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  min-width: 400px;
}
.toast .toast-header.success {
  background: #28a745;
  color: #fff;
}
.toast .toast-header.error {
  background: #ff0000;
  color: #fff;
}

/*  Use "desktop" for default styling, then override with tablet & mobile */
.navbar-sub .nav-link.active {
  background-color: #343a40;
  color: #ffffff !important;
  font-weight: bold;
  border-radius: 5px;
  padding: 8px 12px;
}

.navbar-sub {
  background-color: #6c757d;
}

.navbar-sub .nav-link {
  color: #ffffff;
}

.icon-width {
  width: 20px;
  text-align: center;
}

.dropdown-menu .dropdown-item {
  padding: 8px 40px 8px 20px;
}

/* Truncate long names */
.username {
  max-width: 100px;
  /* Adjust width as needed */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

.modal-dialog {
  top: 15vh !important;
  /* Moves modal down by 1/3 of the viewport height */
  transform: translateY(0) !important;
  /* Remove Bootstrap default centering */
}

/*  Use "desktop" for default styling, then override with tablet & mobile */
#index footer {
  margin-top: 0;
}
#index .pt-8 {
  padding-top: 5rem !important;
}
#index .mb-10 {
  margin-bottom: 8rem !important;
}
#index .icon-wrapper {
  min-width: 60px;
  /* Keeps icons the same width */
  display: flex;
  justify-content: center;
  /* Center icon inside */
}

@media screen and (max-width: 1024px) {
  #index .mobile-mt-3 {
    margin-top: 1.5rem !important;
  }
  #index .mobile-mt-2 {
    margin-top: 0.5rem !important;
  }
  #index .mobile-mt-1 {
    margin-top: 0rem !important;
  }
}
@media screen and (max-width: 640px) {
  #index .mobile-mt-3 {
    margin-top: 1.5rem !important;
  }
  #index .mobile-mt-2 {
    margin-top: 0.5rem !important;
  }
  #index .mobile-mt-1 {
    margin-top: 0rem !important;
  }
}
/*  Use "desktop" for default styling, then override with tablet & mobile */
.legal h4:not(:first-of-type) {
  margin-top: 2rem;
}
.legal h4 {
  margin-bottom: 1.5rem;
}

.terms-of-service__banner {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.terms-of-service__banner-container > h1 {
  margin: 0 0 24px;
  padding-top: 64px;
  text-align: center;
  max-width: none;
}

.terms-of-service__banner-container > p {
  margin: 20px 0 48px;
  text-align: center;
  max-width: none;
}

.banner__text {
  color: #212124;
  font-size: 20px;
  line-height: 28px;
  max-width: 720px;
  margin: 0 auto 29px;
  font-family: PolySans-Slim, sans-serif;
  font-weight: 300;
}

.banner__title {
  font-size: 56px;
  line-height: 62px;
  font-family: PolySans-Median, sans-serif;
  font-weight: 500;
  font-size: 56px;
  margin-bottom: 22px;
}

.terms-of-service__container {
  max-width: 870px;
  margin: 0 auto;
  padding: 60px 0;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.terms-of-service__container ol .terms-of-service__level1 {
  font-family: PolySans-Median, sans-serif;
  font-weight: 500;
  padding-left: 36px;
  margin-bottom: 36px;
  border-top: 85px solid transparent;
  margin-top: -85px;
}

.terms-of-service__container ol .terms-of-service__level1 > p {
  font-family: PolySans-Slim, sans-serif;
  font-weight: 300;
  margin-top: 16px;
}

.terms-of-service__text {
  color: #212124;
  font-size: 20px;
  line-height: 28px;
  margin: 16px 0;
  font-family: PolySans-Slim, sans-serif;
  font-weight: 300;
}

/*  Use "desktop" for default styling, then override with tablet & mobile */
#subscribe {
  /* Style for the SAVE 20% badge */
  /* Custom styles to match Accessibility Widget page */
}
#subscribe .billing-toggle {
  width: 380px;
  height: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
#subscribe .toggle-btn {
  flex: 1;
  font-weight: 600;
  padding: 0.5em;
  border: none;
  background-color: transparent;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 20px;
  margin: 0 5px;
  font-size: 15px;
}
#subscribe .toggle-btn.active {
  background-color: #343a40;
  /* Dark gray */
  color: white;
}
#subscribe .toggle-btn.inactive {
  color: rgba(0, 0, 0, 0.7);
}
#subscribe .save-badge {
  position: absolute;
  top: -16px;
  right: 0px;
  background-color: #28a745;
  color: white;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 12px;
}
#subscribe .crossed {
  position: relative;
  display: block;
}
#subscribe .crossed span {
  position: relative;
  font-weight: normal;
  font-size: 0.75em;
}
#subscribe .crossed span:after {
  background: #d71d1d;
  content: "";
  display: block;
  height: 2px;
  left: -4px;
  position: absolute;
  right: -4px;
  top: 45%;
  transform: translateY(-50%) rotate(-15deg);
}
#subscribe .accordion-button {
  font-size: 1.5rem;
  /* Larger font size for questions to match Accessibility Widget page */
  font-weight: 600;
}
#subscribe .accordion-item {
  border: none;
  /* Remove borders for a cleaner look */
}
#subscribe .accordion-button:not(.collapsed) {
  background-color: #f7f7f7;
  /* Light gray background when expanded */
}
#subscribe .accordion-button:focus {
  box-shadow: none;
  /* Remove focus outline for cleaner look, but ensure accessibility */
}
#subscribe .accordion-body {
  padding: 1rem 1rem 1.5rem 1rem;
  /* Increase bottom padding to match FAQ page */
}

/*  Use "desktop" for default styling, then override with tablet & mobile */
#websites .table {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#websites .table thead tr {
  background-color: #f8f9fa;
  font-weight: bold;
}
#websites .table tbody tr:hover {
  background-color: #f1f1f1;
}
#websites .table td,
#websites .table th {
  vertical-align: middle;
  padding: 12px 16px;
}
#websites .badge {
  font-size: 0.875rem;
  font-weight: 600;
}
#websites .btn-outline-primary {
  font-size: 0.875rem;
  font-weight: 600;
}

/*  Use "desktop" for default styling, then override with tablet & mobile */
#websites-manage {
  /* Increase toggle switch size */
  /* Adjust spacing for better alignment */
}
#websites-manage .code-container {
  background-color: #1e1e1e;
  /* Dark background */
  padding: 25px;
  border-radius: 6px;
  overflow-x: auto;
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
}
#websites-manage pre {
  margin-bottom: 0;
}
#websites-manage .code-tag {
  color: #d19a66;
  /* Orange */
  font-weight: bold;
}
#websites-manage .code-attribute {
  color: #61afef;
  /* Blue */
}
#websites-manage .code-value {
  color: #98c379;
  /* Green */
}
#websites-manage #website_widget-button {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#websites-manage #website_widget-icon {
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
#websites-manage .position-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}
#websites-manage .position-grid label {
  display: flex;
  justify-content: center;
  align-items: center;
}
#websites-manage .position-grid input[type=radio] {
  display: none;
}
#websites-manage .position-grid span {
  width: 40px;
  height: 40px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: block;
  cursor: pointer;
}
#websites-manage .position-grid input[type=radio]:checked + span {
  background-color: blue;
  border-color: blue;
}
#websites-manage .hidden {
  visibility: hidden !important;
}
#websites-manage .setting-toggle.form-check-input {
  width: 3rem;
  /* Adjust width */
  height: 1.5rem;
  /* Adjust height */
  cursor: pointer;
  transform: scale(1.25);
  /* Makes the toggle switch larger */
}
#websites-manage .setting-toggle.form-check-input:checked {
  background-color: #0d6efd;
  /* Bootstrap primary blue */
  border-color: #0d6efd;
}

@media screen and (max-width: 640px) {
  #websites-manage .position-grid {
    width: 100%;
    height: 300px;
  }
}
/*  Use "desktop" for default styling, then override with tablet & mobile */
#contact {
  /* Custom styles to match Accessibility Widget page */
}
#contact .help-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* Space between items */
  padding: 20px 0;
  /* Padding for breathing room */
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
}
#contact .help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 350px;
  background: #fff;
}
#contact .help-icon {
  font-size: 40px;
  margin-bottom: 10px;
}
#contact .help-button {
  margin-top: 10px;
  padding: 10px 20px;
  width: 100%;
}
#contact .accordion-button {
  font-size: 1.5rem;
  /* Larger font size for questions to match Accessibility Widget page */
  font-weight: 600;
}
#contact .accordion-item {
  border: none;
  /* Remove borders for a cleaner look */
}
#contact .accordion-button:not(.collapsed) {
  background-color: #f7f7f7;
  /* Light gray background when expanded */
}
#contact .accordion-button:focus {
  box-shadow: none;
  /* Remove focus outline for cleaner look, but ensure accessibility */
}
#contact .accordion-body {
  padding: 1rem 1rem 1.5rem 1rem;
  /* Increase bottom padding to match FAQ page */
}

@media screen and (max-width: 1024px) {
  #contact .help-container {
    flex-direction: column;
    /* Stack items on small screens */
    gap: 15px;
    /* Reduce space between stacked items */
  }
  #contact .help-card {
    width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 640px) {
  #contact .help-container {
    flex-direction: column;
    /* Stack items on small screens */
    gap: 15px;
    /* Reduce space between stacked items */
  }
  #contact .help-card {
    width: 100%;
    padding: 20px;
  }
}
/*  Use "desktop" for default styling, then override with tablet & mobile */
#pricing {
  /* Style for the SAVE 20% badge */
  /* Custom styles to match Accessibility Widget page */
}
#pricing .billing-toggle {
  width: 380px;
  height: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
#pricing .toggle-btn {
  flex: 1;
  font-weight: 600;
  padding: 0.5em;
  border: none;
  background-color: transparent;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 20px;
  margin: 0 5px;
  font-size: 15px;
}
#pricing .toggle-btn.active {
  background-color: #343a40;
  /* Dark gray */
  color: white;
}
#pricing .toggle-btn.inactive {
  color: rgba(0, 0, 0, 0.7);
}
#pricing .save-badge {
  position: absolute;
  top: -16px;
  right: 0px;
  background-color: #28a745;
  color: white;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 12px;
}
#pricing .crossed {
  position: relative;
  display: block;
}
#pricing .crossed span {
  position: relative;
  font-weight: normal;
  font-size: 0.75em;
}
#pricing .crossed span:after {
  background: #d71d1d;
  content: "";
  display: block;
  height: 2px;
  left: -4px;
  position: absolute;
  right: -4px;
  top: 45%;
  transform: translateY(-50%) rotate(-15deg);
}
#pricing .accordion-button {
  font-size: 1.5rem;
  /* Larger font size for questions to match Accessibility Widget page */
  font-weight: 600;
}
#pricing .accordion-item {
  border: none;
  /* Remove borders for a cleaner look */
}
#pricing .accordion-button:not(.collapsed) {
  background-color: #f7f7f7;
  /* Light gray background when expanded */
}
#pricing .accordion-button:focus {
  box-shadow: none;
  /* Remove focus outline for cleaner look, but ensure accessibility */
}
#pricing .accordion-body {
  padding: 1rem 1rem 1.5rem 1rem;
  /* Increase bottom padding to match FAQ page */
}

/*  Use "desktop" for default styling, then override with tablet & mobile */
#billing .table {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#billing .table thead tr {
  background-color: #f8f9fa;
  font-weight: bold;
}
#billing .table tbody tr:hover {
  background-color: #f1f1f1;
}
#billing .table td,
#billing .table th {
  vertical-align: middle;
  padding: 12px 16px;
}
#billing .badge {
  font-size: 0.875rem;
  font-weight: 600;
}
#billing .btn-outline-primary {
  font-size: 0.875rem;
  font-weight: 600;
}

/*  Use "desktop" for default styling, then override with tablet & mobile */
#website-accessibility {
  /* Custom styles for FAQ accordion */
}
#website-accessibility .accordion {
  font-size: 1.1rem;
  line-height: 1.6;
}
#website-accessibility .accordion-button {
  font-size: 1.5rem;
  /* Larger font size for questions to make them pop */
  font-weight: 600;
  /* Slightly bolder for prominence */
}
#website-accessibility .accordion-item {
  border: none;
  /* Keep borders removed for a cleaner look */
}
#website-accessibility .accordion-button:not(.collapsed) {
  background-color: #f7f7f7;
  /* Light gray background when expanded */
}
#website-accessibility .accordion-button:focus {
  box-shadow: none;
  /* Remove focus outline for cleaner look, but ensure accessibility */
}
#website-accessibility .accordion-body {
  padding: 1rem 1rem 1.5rem 1rem;
  /* Increase bottom padding (pb-4 equivalent) while keeping others at p-3 equivalent */
}

/*  Use "desktop" for default styling, then override with tablet & mobile */
#widget {
  /* Custom styles for consistency with FAQ page */
}
#widget section h4 {
  font-size: 1.5rem;
  /* Match FAQ question size for prominence */
  font-weight: 600;
}
#widget section h5 {
  font-size: 1.25rem;
  /* Slightly smaller for hierarchy */
}

/*# sourceMappingURL=styles.css.map */
