/* GLOBAL */
@font-face {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 200;
    src: url("/fonts/source-sans-pro/ExtraLight.ttf");
}

@font-face {
    font-family: Source Sans Pro;
    font-style: italic;
    font-weight: 200;
    src: url("/fonts/source-sans-pro/ExtraLightItalic.ttf");
}

@font-face {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 300;
    src: url("/fonts/source-sans-pro/Light.ttf");
}

@font-face {
    font-family: Source Sans Pro;
    font-style: italic;
    font-weight: 300;
    src: url("/fonts/source-sans-pro/LightItalic.ttf");
}

@font-face {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 400;
    src: url("/fonts/source-sans-pro/Regular.ttf");
}

@font-face {
    font-family: Source Sans Pro;
    font-style: italic;
    font-weight: 400;
    src: url("/fonts/source-sans-pro/Italic.ttf");
}

@font-face {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 700;
    src: url("/fonts/source-sans-pro/Bold.ttf");
}

@font-face {
    font-family: Source Sans Pro;
    font-style: italic;
    font-weight: 700;
    src: url("/fonts/source-sans-pro/BoldItalic.ttf");
}

:root {
  --font-base: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --rounded-full: 9999px;
  --rounded-md: 0.375rem;

  --claimyr-blue: #2A3856;
  --claimyr-pink: #FF6768;
  --claimyr-red: #f02849;
  --claimyr-red-dark: #d60f30;
  --claimyr-green: #1CCF2E;

  --black: #000;
  --white: #fff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;

  --yellow-50: #fefce8;
  --yellow-100: #fef9c3;
  --yellow-200: #fef08a;
  --yellow-300: #fde047;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --yellow-700: #a16207;
  --yellow-800: #854d0e;
  --yellow-900: #713f12;

  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;

  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

  --page-width: 600px;
  --nav-top-height: 4rem;
  --nav-top-height-small: 3rem;
  --nav-bottom-height: 4rem;
  --nav-communities-height: 8rem;
  --nav-content-hubs-height: 1rem;

  --social-blue: #1877f2;
  --social-dark-blue: #166fe5;
  --social-grey: #1c1e21;
  --social-light-grey: #606770;
  --social-green: #42b72a;
  --social-dark-green: #36a420;

  --priority-gold: rgba(223, 173, 86, 1);
}

* {
  font-family: Source Sans Pro,sans-serif;
}

button.div {
  color: black;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.no-scroll {
  overflow: hidden;
}
.row {
  display: flex;
  align-items: center;
}

/* END GLOBAL */
/* footer */
.footer {
  all: initial;
  align-items: center;
  background-color: var(--gray-800);
  display: flex;
  flex-direction: column;
  font-family: var(--font-base);
  padding: 3rem 0;
}
@media only screen and (max-width: 768px) {
  .footer {
    /*
    margin-bottom: var(--nav-bottom-height);
    */
  }
}
.footer .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}
.footer .links a {
  color: var(--gray-300);
  padding: .5rem 1rem;
  text-decoration: none;
}
.footer img {
  height: 2rem;
}
.footer p {
  display: inline-block;
}
/* END footer */
/* layout */
.layout {
  all: initial;
  box-sizing: border-box;
}
.layout > .container {
  /*
  background-color: var(--gray-100);
  */
  background-color: #fff;
  box-sizing: border-box;
  display: block;
  /*
  margin-top: calc(var(--nav-top-height) + var(--nav-content-hubs-height) + 1.5rem - 2px);
  padding: 0 calc(50% - var(--page-width) / 2);
  padding: 0 5vw;
  */
}
@media only screen and (max-width: 768px) {
  .layout > .container {
    /*
    padding: 0 0.5rem;
    */
  }
}
@media only screen and (max-width: 768px) {
  .layout > .container {
    /*
    margin-top: calc(var(--nav-top-height-small) + var(--nav-content-hubs-height) + 1.5rem - 2px);
    */
  }
}
.layout.show-communities > .container {
  /*
  margin-top: calc(var(--nav-top-height) + var(--nav-content-hubs-height) + 1.5rem - 3px);
  */
}
@media only screen and (max-width: 768px) {
  .layout.show-communities > .container {
    /*
    margin-top: calc(var(--nav-top-height-small) + var(--nav-content-hubs-height) + 1.5rem - 3px);
     */
    padding: 0;
  }
}
.layout.guide > .container {
  box-sizing: border-box;
  display: block;
  min-height: calc(100vh - var(--nav-top-height));
  padding: 0;
}
/*
.layout.show-communities .nav-top {
  height: var(--nav-top-height);
}
*/
@media only screen and (max-width: 768px) {
  /*
  .layout.show-communities .nav-top {
    height: var(--nav-top-height-small);
  }
  */
}
.layout.show-communities .nav-top.hide {
  top: calc((var(--nav-top-height) + var(--nav-communities-height)) * -1);
}
@media only screen and (max-width: 768px) {
  .layout.show-communities .nav-top.hide {
    top: calc((var(--nav-top-height-small) + var(--nav-communities-height)) * -1);
  }
}
/* END layout */
/* nav-top */
.nav-top .profile {
  align-items: center;
  display: flex;
  flex: 1 1 100%;
  justify-content: flex-end;
}
.nav-top .profile .details {
  cursor: pointer;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  font-size: 1em;
  height: 100%;
  margin-right: 0.5rem;
}
.nav-top .profile .details .name {
  white-space: nowrap;
}
.nav-top .profile .details .coins {
  color: var(--gray-500)
}
.nav-top .profile img {
  cursor: pointer;
  border-radius: var(--rounded-full);
  display: inline-block;
  height: 2rem;
  width: 2rem;
  object-fit: cover;
}
.nav-top .profile a {
  cursor: pointer;
}
.nav-top a.profile {
  color: var(--claimyr-blue);
  text-decoration: none;
}
.nav-top .profile svg {
  color: var(--gray-300);
  height: 2rem;
  width: 2rem;
}
.nav-top {
  color: #fff;
  box-sizing: border-box;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: top 0.3s;
  z-index: 800;
}
@media only screen and (max-width: 768px) {
  .nav-top {
  }
}
.nav-top.hide {
  top: calc(var(--nav-top-height) * -1);
}
@media only screen and (max-width: 768px) {
  .nav-top.hide {
    top: calc(var(--nav-top-height-small) * -1);
  }
}
.nav-top .main-nav {
  background-color: #00599c;
  border-bottom: #00599c;
  align-items: center;
  display: flex;
  height: 3rem;
  justify-content: space-between;
  padding: 0 1rem;
}

.nav-top .main-nav .logo-wrapper {
  flex: 1 1 100%;
}
.nav-top .home-link {
  width: fit-content;
  --home-link-height: 2rem;
  display: block;
  height: var(--home-link-height);
  outline: none;
}
.nav-top .home-link img {
  height: var(--home-link-height);
}
.nav-top .nav-buttons {
}
@media only screen and (max-width: 768px) {
  .nav-top .nav-buttons {
    display: none;
  }
}
.nav-top .communities-nav {
  border-top: 1px solid var(--gray-200);
  box-sizing: border-box;
  height: var(--nav-communities-height);
  padding: 1rem 0;
}
.nav-top .communities {
  box-sizing: border-box;
  display: flex;
  margin: auto;
  overflow-x: scroll;
  scrollbar-width: none;
  height: 100%;
  scroll-snap-type: x mandatory;
  width: var(--page-width);
  -ms-overflow-style: none;
}
.nav-top .communities::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 768px) {
  .nav-top .communities {
    padding: 0 1rem;
    scroll-padding: 1rem;
    width: 100%;
  }
}
.nav-top .community-option {
  border-radius: .5rem;
  box-sizing: border-box;
  filter: saturate(0) brightness(1.2) contrast(0.8);
  flex: 0 0 9rem;
  overflow: hidden;
  scroll-snap-align: start;
  transition: filter 0.1s;
}
.nav-top .community-option + .community-option {
  margin-left: 1rem;
}
.nav-top .communities::after {
  content: "";
  flex: 0 0 1rem;
}
.nav-top .community-option a {
  align-items: flex-end;
  border-radius: .35rem;
  box-sizing: border-box;
  color: var(--white);
  display: flex;
  font-size: .8rem;
  font-weight: 600;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
}
.nav-top .community-option a .content {
  background-color: rgba(0, 0, 0, 0.75);
  box-sizing: border-box;
  height: 50%;
  padding: 0.5rem;
  width: 100%;
}
.nav-top .community-option.selected {
  border: 2px solid var(--claimyr-pink);
  filter: saturate(1);
}
.nav-top .community-option.selected a {
  border: 2px solid var(--white);
}
.nav-top .community-option.new-line {
  align-items: center;
  background-color: var(--gray-300);
  display: flex;
  flex: 0 0 calc(var(--nav-communities-height) - 2rem);
  justify-content: center;
  filter: brightness(1) saturate(1);
}
.nav-top .community-option.new-line a {
  all: initial;
  align-items: center;
  color: var(--white);
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.nav-top .community-option.new-line svg {
  height: 4rem;
}
.nav-top .onboard-prompt {
  align-items: center;
  background-color: #0093E9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
  border-top: 1px solid var(--gray-200);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: var(--nav-communities-height);
  justify-content: center;
  padding: 1rem;
}
.nav-top .onboard-prompt h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.nav-top .onboard-prompt p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2rem;
  text-align: center;
}
.nav-top .onboard-prompt button {
  background-color: var(--white);
  border: none;
  border-radius: var(--rounded-full);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
}

.nav-top .content-hubs-nav {
  background-color: #002d62;
  border-bottom: 1px solid #002d62;
}

.nav-top .content-hubs-nav nav {
  height: 36px;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  align-items: center;
  overflow-x: scroll;
  width: 100%;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.nav-top .content-hubs-nav nav::-webkit-scrollbar {
  display: none;
}


.nav-top .content-hubs-nav nav .item {
  margin-right: 1.5rem;
  display: inline;
  white-space: nowrap;
}
.nav-top .content-hubs-nav nav .item.last {
  margin-right: 0;
}

.nav-top .content-hubs-nav nav .item .carat {
  color: var(--gray-600);
}
.nav-top .content-hubs-nav nav .item .carat svg {
  width: 25px;
  height: 9px;
}

.nav-top .content-hubs-nav nav .item a {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  user-select: none;
}

.nav-top .content-hubs-nav nav a.selected {
  color: var(--claimyr-pink);
  cursor: default;
}

.nav-top .content-hubs-nav nav .marker {
  color: transparent;
}
.nav-top .content-hubs-nav nav .marker.left {
  margin-right: 0px;
}
.nav-top .content-hubs-nav nav .spacer {
  visibility: hidden;
}

.nav-top .content-hubs-nav nav .circle-caret {
  color: #fff;
  display: flex;
  position: fixed;
  height: 2rem;
  align-items: center;
  justify-content: center;
  top: 3.2rem;
  z-index: 10;
  width: 2rem;
  background-color: #002d62;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.12s, visibility 0.12s;
}
.nav-top .content-hubs-nav nav .circle-caret.left {
  left: 0;
}
.nav-top .content-hubs-nav nav .circle-caret.right {
  right: 0;
}
.nav-top .content-hubs-nav nav .circle-caret.hidden {
  opacity: 0;
  visibility: hidden;
}

.nav-top .content-hubs-nav nav .circle-caret button {
  border-radius: 25px;
  background-color: transparent;
  border: 1px solid var(--gray-600);
  color: var(--gray-600);
  border: 1px solid #fff;
  color: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  /* box-shadow: 0 0 0 1px var(--f-k-smk-x),0 0 0 4px var(--f-mkcy-f) */
}
.nav-top .content-hubs-nav nav .circle-caret svg {
  height: 12px;
  width: 12px;
}

.nav-top.light {
}
.nav-top.light .main-nav {
  background-color: #fff;
  border-bottom: 1px solid rgb(242, 242, 242);
}
.nav-top.light .logo-wrapper {
  flex: none;
}

/* END nav-top */
/* nav-bottom */
.nav-bottom {
  background-color: #002d62;
  bottom: 0;
  box-sizing: border-box;
  display: none;
  height: var(--nav-bottom-height);
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1000;
}
@media only screen and (max-width: 768px) {
  .nav-bottom {
    display: flex;
  }
}
.nav-bottom .nav-buttons {
  width: 100%;
}
/* END nav-bottom */
/* nav-buttons */
.nav-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  height: 100%;
}
.nav-buttons .nav-button {
  align-items: center;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  font-size: 1em;
  height: 100%;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  padding: 0 2vw;
}

.nav-buttons .nav-button::after {
  content: "";
  border-right: 1px solid #fff;
  position: absolute;
  height: 33%;
  right: 0;
  top: 34%;
}

.nav-buttons .nav-button:last-child::after {
  border-right: none;
}

.nav-buttons .nav-button.selected {
  color: var(--claimyr-pink);
}
.nav-buttons .nav-button svg {
  color: var(--gray-3);
  height: 1.25rem;
  margin-bottom: 0.25rem;
}
.nav-buttons .nav-button.selected svg {
  color: var(--claimyr-pink);
}
/* END nav-buttons */
/* menu */
.menu.menu-wrapper {
  background-color: rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  display: none;
  height: 100vh;
  left: 0;
  overflow-y: scroll;
  position: fixed;
  top: var(--nav-top-height);
  z-index: 900;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
@media only screen and (max-width: 768px) {
  .menu.menu-wrapper {
    top: 0;
  }
}
.menu.menu-wrapper::-webkit-scrollbar {
  display: none; 
}
.menu.menu-wrapper.visible {
  display: block;
}
.menu .menu-body {
  background-color: #f7f7f7;
  box-shadow: 0 0 25px -8px #333;
  box-sizing: border-box;
  overflow-y: scroll;
  padding: 2rem calc(50% - 300px);
  padding-top: 2rem;
  padding-bottom: 8rem;
}
.community-home .menu .menu-body {
  padding-top: 2rem;
}
@media only screen and (max-width: 768px) {
  .menu .menu-body {
    padding-top: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .menu .menu-body {
    padding: 1rem;
    padding-bottom: calc(var(--nav-bottom-height) + 2rem);
    height: 100%;
  }
}
.menu .header {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}
.menu .header .close {
  position: absolute;
  top: 2rem;
  right: calc(3% + .75rem);
}
@media only screen and (max-width: 768px) {
  .menu .header .close {
    position: inherit;
    display: block;
  } 
}
.menu .close {
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.menu .close img {
  opacity: .5;
  display: block;
  height: 1.5rem;
}
/* END menu */
/* user-menu */
.user-menu {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  padding: 1rem 2rem;
  position: absolute;
  right: 2rem;
  top: calc(var(--nav-top-height) - 0.5rem);
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .user-menu {
    right: 1rem;
    top: calc(var(--nav-top-height-small) - 0.25rem);
  }
}
.user-menu.hidden {
  display: none;
}
.user-menu a {
  color: var(--gray-800);
  text-decoration: none;
}
/* END user-menu */

/* referrer-home */
main.referrer-home {
}
.referrer-home .main-container {
  width: 600px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .referrer-home .main-container {
    width: 96%;
  }
}
.referrer-home .section {
  all: initial;
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  box-sizing: border-box;
  color: var(--claimyr-blue);
  display: block;
  margin-top: 1rem;
  overflow-x: hidden;
  padding: 1rem;
  text-align: center;
  width: 100%;
}
.referrer-home h1 {
  font-size: 1.75rem;
}
.referrer-home p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-top: .5rem;
}
.referrer-home .invite-friends-copy {
  background-color: transparent;
  box-shadow: none;
  color: var(--claimyr-blue);
  padding: 0;
}
.referrer-home .invite-friends-copy h3 {
  color: var(--gray-100)
}
.referrer-home .referral-stats {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
.referrer-home .referral-stats > div {
  flex: 0 0 33%;
}
.referrer-home .referral-stats > div + div {
  border-left: 1px solid var(--gray-300);
}
.referrer-home .referral-stats > div p {
  font-size: 0.8rem;
  line-height: 1rem;
  margin-top: 0.5rem;
  white-space: pre;
}
.referrer-home .referral-sharing {
  background-color: var(--claimyr-pink);
  color: var(--white)
}
.referrer-home .referral-link-container {
  display: flex;
}
.referrer-home .referral-sharing h3 {
  margin-bottom: 1rem;
}
.referrer-home .referral-sharing .referral-link-area {
  align-items: center;
  background-color: var(--white);
  border-radius: var(--rounded-full);
  color: var(--claimyr-pink);
  display: flex;
  flex: 1 1 100%;
  font-size: 1rem;
  font-weight: 600;
  height: 1.5rem;
  justify-content: center;
  padding: 0.5rem 1rem;
}
.referral-link-copy-button {
  background-color: transparent;
  align-items: center;
  border: none;
  display: flex;
  justify-content: center;
  margin-left: 0.5rem;
  outline: 0;
  padding: 0;
  width: 2rem;
  cursor: pointer;
}
.referral-link-copy-button svg {
  color: var(--white);
  height: 1.5rem;
}
.referrer-home .referral-inputs .contact-info {
}
.referrer-home .how-claimyr-rewards-work .info {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
@media only screen and (max-width: 768px) {
  .referrer-home .how-claimyr-rewards-work .info {
    flex-direction: column;
  }
}
.referrer-home .how-claimyr-rewards-work .info .panel {
  background-color: var(--gray-200);
  border-radius: 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex: 0 0 32%;
  flex-direction: column;
  padding: 1rem;
}
@media only screen and (max-width: 768px) {
  .referrer-home .how-claimyr-rewards-work .info .panel + .panel {
    margin-top: 1rem;
  }
}
.referrer-home .how-claimyr-rewards-work .info .panel p {
  font-weight: 500;
}
.referrer-home .how-claimyr-rewards-work .info .panel svg {
  height: 4rem;
}
.referrer-home .add-payout-info {
  margin: 1rem;
  margin-bottom: 8rem;
}
/* END referrer-home */
/* slider */
.slider {
  all: initial;
  overflow: hidden;
  width: 100%;
}
.slider .panels {
  display: flex;
  transition: transform 0.1s ease;
}
.slider .panel {
  box-sizing: border-box;
  flex: 1 1 100%;
  position: relative;
  top: 0;
}
.slider .flattened {
  height: 0;
  top: -9999px;
  visibility: hidden;
}
/* END slider */
/* find */
.find, .find *, .find *:before, .find *:after {
  box-sizing: border-box;
}
.find {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-x: visible;
}
.find .logo {
  margin-top: 50px;
  height: 6rem;
}
@media only screen and (max-width: 768px) {
  .find .logo {
    margin-top: 4rem;
    height: 5rem;
  }
}
.find > .slogan {
  margin-top: 30px;
  text-align: center;
}
.find > .slogan > h1 {
  font-size: 22px;
  font-weight: 800;
}
.find > .slogan > p {
  font-size: 18px;
  margin: auto;
  margin-top: 8px;
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .find > .slogan > p {
    width: 100%;
  }
}
.find > .slogan > p > .slogan-agency-name {
  color: var(--claimyr-pink);
  transition: opacity 0.42s;
  opacity: 1;
}
.find > .slogan > p > .slogan-agency-name.hidden {
  opacity: 0;
}
.find > .cta {
  margin-top: 20px;
}
/* END find */
/* phone-line-search */
.phone-line-search {
  width: var(--page-width);
  margin-top: 30px;
  min-height: 50vh;
}
@media only screen and (max-width: 768px) {
  .phone-line-search {
    width: 100%;
  }
}
.phone-line-search .search {
  background-color: var(--gray-100);
  box-shadow: 0 0.5rem 1rem var(--gray-100);
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  outline: none;
  position: sticky;
  top: 1.5rem;
  width: var(--page-width);
  -webkit-tap-highlight-color: transparent;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .phone-line-search .search {
    top: 1.5rem;
    width: 100%;
  }
}

.search-bar {
  background: url('https://yrcdn.net/assets/search-solid-gray-small.png') no-repeat .75rem .75rem;
  background-size: 1.5rem;
  background-color: var(--white);
  border: none;
  border-radius: var(--rounded-full);
  font-size: 1rem;
  height: 3rem;
  padding-left: 3rem;
  width: calc(100% - 3rem);
}
.phone-line-search .search-bar {
  width: 100%;
}

.line-selector {
  display: block;
  opacity: 1;
  transition: opacity 0.25s;
  transition-delay: 0.1s;
}
@media only screen and (max-width: 768px) {
  .line-selector {
  }
}
.line-selector.phone-lines-loaded {
}
.line-selector .line-option-wrapper {
  display: inline-block;
  text-align: center;
  width: 32%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 10px;
  text-decoration: none;
  border: none;
  padding: 0;
  outline: none;
  background-color: transparent;
}
@media only screen and (max-width: 768px) {
  .line-selector .line-option-wrapper {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
  }
}

main.tax-professionals .stamps {
  min-height: 588px;
}
main.tax-professionals .top.stamps {
  min-height: 196px;
}

main.tax-professionals .stamps .line-option-wrapper {
  width: 32%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 8px;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  main.tax-professionals .stamps .line-option-wrapper {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
  }
}

.line-selector .line-option-wrapper.active {
  outline: 5px solid var(--claimyr-pink);
  outline-offset: 2px;
}

main.tax-professionals .stamps .line-option-wrapper.active {
  outline: 3px solid var(--claimyr-pink);
  outline-offset: 1px;
}

.line-selector .line-option-wrapper.community-link {
  margin-bottom: 0;
}

.line-selector .line-option-wrapper .line-option {
  display: flex;
  height: 150px;
}
main.tax-professionals .stamps .line-option-wrapper .line-option {
  display: flex;
  height: 150px;
}
.line-selector .line-option-wrapper .line-option.active {
}

.line-selector .call-agency-now {
}

.line-selector .call-agency-now div.bar,
main.tax-professionals .stamps .call-agency-now div.bar
{
  width: 100%;
  color: #fff;
  background-color: #3DA83B;
  border: none;
  font-size: 17px;
  font-weight: 700;
  padding: 10px 0px;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.line-selector .call-agency-now div.bar svg,
main.tax-professionals .stamps .call-agency-now div.bar svg
{
  display: inline;
  width: 18px;
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.line-selector .line-option-wrapper .phone-icon {
  align-items: center;
  background-color: var(--claimyr-green);
  border-radius: var(--rounded-full);
  box-sizing: border-box;
  display: inline-flex;
  height: 2.5rem;
  position: relative;
  top: -1.25rem;
  justify-content: center;
  width: 2.5rem;
  color: white;
}
.line-selector .line-option-wrapper .phone-icon.disabled {
  background-color: var(--gray-500);
}
.line-selector .line-option-wrapper .phone-icon svg {
  color: white;
  height: 1.25rem;
  transform: rotate(90deg)
}
.line-selector .line-option-wrapper .phone-icon.disabled svg {
  transform: rotate(-135deg)
}
.line-selector .line-option,
main.tax-professionals .stamps .line-option
{
  align-items: flex-end;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  box-sizing: border-box;
  display: flex;
  overflow: hidden;
  position: relative;
}
.line-selector .line-option.community-link {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.line-selector .line-option-wrapper,
.line-selector .line-option-wrapper * {
  cursor: pointer;
}
.line-selector .line-option .content,
main.tax-professionals .stamps .content
{
  background-color: rgba(0, 0, 0, 0.75);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 50%;
  padding: 0.5rem;
  width: 100%;
}
.line-selector .line-option .content .header,
main.tax-professionals .stamps .content .header
{
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}
.line-selector .line-option .content .details,
main.tax-professionals .stamps .content .details
{
  color: var(--gray-300);
  font-size: .75rem;
  font-weight: 400;
  margin-top: 0.25rem;
  text-align: left;
}
.line-selector a.space-holder {
  visibility: hidden;
  min-height: 4rem;
}
/* END phone-line-search */
/* onboard */
.onboard {
  all: initial;
  box-sizing: border-box;
}
.onboard .container {
  box-sizing: border-box;
  display: block;
  min-height: calc(100vh - var(--nav-top-height));
  overflow-x: hidden;
  padding: 6rem calc(50% - var(--page-width) / 2);
}
.onboard .close {
  color: var(--black);
  cursor: pointer;
  position: absolute;
  right: 3rem;
  top: 2rem;
}
@media only screen and (max-width: 768px) {
  .onboard .close {
    right: 2rem;
    top: 2rem;
  }
}
.onboard .close svg {
  height: 3rem;
}
@media only screen and (max-width: 768px) {
  .onboard .close svg {
    height: 2rem;
  }
}
.onboard .progress-bar {
  bottom: 3rem;
  box-sizing: border-box;
  display: flex;
  position: fixed;
  width: var(--page-width);
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .onboard .progress-bar {
    bottom: 2rem;
    right: 0;
    padding: 0 2rem;
    width: 100%;
  }
}
.onboard .progress-bar .progress-step {
  background-color: var(--gray-200);
  flex: 1 1 100%;
  height: 1rem;
}
.onboard .progress-bar .progress-step:first-child {
  border-bottom-left-radius: var(--rounded-full);
  border-top-left-radius: var(--rounded-full);
}
.onboard .progress-bar .progress-step:last-child {
  border-bottom-right-radius: var(--rounded-full);
  border-top-right-radius: var(--rounded-full);
}
.onboard .progress-bar .progress-step.selected {
  background-color: var(--black);
}
.onboard .step-tracker {
  bottom: 4.5rem;
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 800;
  position: fixed;
  text-align: right;
  width: var(--page-width);
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .onboard .step-tracker {
    bottom: 3.5rem;
    padding: 0 2rem;
    right: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .onboard .onboard-steps .panel {
    padding: 0 1rem;
  }
}
.onboard .onboard-steps .panel p {
  font-size: 3rem;
  font-weight: 800;
}
.onboard .onboard-steps .panel input {
  border: 0;
  box-sizing: border-box;
  font-size: 2rem;
  height: 3.5rem;
  margin: 2rem 0;
  outline: none;
  padding: 0;
  width: 100%;
}
.onboard .onboard-steps .panel button {
  background-color: var(--claimyr-red);
  border-radius: var(--rounded-full);
  font-size: 1.5rem;
  font-weight: 600;
  width: 100%;
  transition: filter 0.3s;
}
.onboard .onboard-steps .panel button:hover {
  background-color: var(--claimyr-red-dark);
}
.onboard .onboard-steps .panel button.disabled {
  background-color: var(--claimyr-red);
  filter: saturate(0) brightness(1.5);
}
.onboard .onboard-steps .panel button.disabled:hover {
  filter: saturate(0) brightness(1.5);
}
.onboard .onboard-steps .panel .confirm {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0 1rem;
}
.onboard .onboard-steps .panel .confirm input {
  height: 1.5rem;
  width: 1.5rem;
  margin: 0;
  margin-right: 0.5rem;
}
.onboard .onboard-steps .panel .confirm label {
  font-weight: 500;
}
.onboard .onboard-steps .panel span {
  display: block;
  margin-bottom: 1rem;
  padding: 0 1rem;
  text-align: center;
}
.onboard .bottom-buffer {
  background-image: linear-gradient(to top,
  hsl(0, 0%, 100%) 80%,
  hsla(0, 0%, 100%, 0.738) 83.8%,
  hsla(0, 0%, 100%, 0.541) 86.8%,
  hsla(0, 0%, 100%, 0.382) 89.4%,
  hsla(0, 0%, 100%, 0.278) 91.3%,
  hsla(0, 0%, 100%, 0.194) 93%,
  hsla(0, 0%, 100%, 0.126) 94.6%,
  hsla(0, 0%, 100%, 0.075) 96.04%,
  hsla(0, 0%, 100%, 0.042) 97.22%,
  hsla(0, 0%, 100%, 0.021) 98.2%,
  hsla(0, 0%, 100%, 0.008) 99.04%,
  hsla(0, 0%, 100%, 0.002) 99.64%,
  hsla(0, 0%, 100%, 0) 100%
  );
  bottom: 0;
  height: 9rem;
  left: 0;
  position: fixed;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .onboard .bottom-buffer {
    height: 8rem;
  }
}
.onboard .disclaimer {
  color: var(--gray-400);
  font-size: 0.75rem;
  margin-bottom: 4rem;
  padding: 1rem 2rem;
}
.onboard .disclaimer a {
  color: var(--gray-400);
  text-decoration: underline;
}
/* END onboard */
/* onboard-sign-up-upload-profile-image */
.onboard-sign-up-upload-profile-image .image-upload {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.onboard-sign-up-upload-profile-image .image-upload button.profile-image-wrapper {
  all: initial;
  border: 0;
  border: 4px solid var(--black);
  border-radius: var(--rounded-full);
  height: 12rem;
  overflow: hidden;
  padding: 0;
  width: 12rem;
}
.onboard-sign-up-upload-profile-image .profile-image {
  all: initial;
  border: 2px solid white;
  border-radius: var(--rounded-full);
  box-sizing: border-box;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.onboard-sign-up-upload-profile-image .profile-image.default {
  filter: saturate(0) brightness(150%);
}
.onboard-sign-up-upload-profile-image .plus-icon {
  align-items: center;
  background-color: var(--black);
  border-radius: var(--rounded-full);
  color: var(--white);
  display: flex;
  height: 3rem;
  justify-content: center;
  left: calc(50% + 3.25rem);
  top: -4rem;
  position: relative;
  width: 3rem;
}
.onboard-sign-up-upload-profile-image .plus-icon svg {
  height: 2rem;
}
/* END onboard-sign-up-upload-profile-image */
/* onboard-sign-up-state-name */
.onboard-sign-up-state-name .phone-line-search {
  margin-bottom: 6rem;
}
.onboard-sign-up-state-name .phone-line-search .search {
  background-color: var(--white);
  box-shadow: none;
  margin-bottom: 0;
  padding-top: 0;
}
.onboard-sign-up-state-name .phone-line-search input {
  background: none;
  border-radius: 0;
}
.onboard-sign-up-state-name .phone-line-search .line-selector {
  padding: 0;
}
/* END onboard-sign-up-state-name */
/* communities */
.community-list {
  min-height: 100vh;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 3vh;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .community-list {
  }
}
/* END communities */
/* formatted-text */
main.privacy, main.terms, main.faq {
  padding: 2vh 5vw;
}
@media only screen and (max-width: 768px) {
  main.privacy, main.terms, main.faq {
    padding: 2vh 1vw;
  }
}

.formatted-text, .formatted-text * {
  all: initial;
  color: var(--gray-500);
  display: block;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.5em;
  text-align: justify;
}
.formatted-text h1 {
  text-align: left;
  color: var(--claimyr-blue);
  font-size: 2.5rem;
  font-weight: 800;
}
.formatted-text h2 {
  color: var(--claimyr-blue);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 3rem;
}
.formatted-text h3 {
  color: var(--claimyr-blue);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 3rem;
}
.formatted-text h4 {
  color: var(--claimyr-blue);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 3rem;
}
.formatted-text strong {
  color: var(--claimyr-blue);
  font-weight: 600;
}
.formatted-text .info {
  color: var(--gray-400);
  margin-top: 0;
}
.formatted-text p {
  margin: 1rem 0;
}
.formatted-text a {
  color: #4c74b9;
  cursor: pointer;
  display: inline;
  text-decoration: underline !important;
  text-decoration-color: #d2dcee !important;
  transition: all 0.3s ease;
}
.formatted-text a:hover {
  text-decoration-color: #829dce !important;
}
.formatted-text dt {
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.formatted-text dd + dd {
  margin-top: 1rem;
}
.formatted-text ul > li {
  display: list-item;
  list-style-type: disc;
  margin-top: 1rem;
  margin-left: 1.25rem;
}
.formatted-text ol > li {
  display: list-item;
  list-style-type: decimal;
  margin-top: 1rem;
  margin-left: 1.25rem;
}
/* END formatted-text */
/* call-widget-container */
td > .call-widget {
  margin-bottom: 0;
}
.call-widget-container {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  border-radius: 0.5rem;
  margin: 1rem 0;
  visibility: visible;
}
.call-widget-container.hidden {
  visibility: hidden;
}
.call-widget-container .info {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  margin: 0;
}
.call-widget-container .top {
  display: flex;
  justify-content: space-between;
}
.call-widget-container .top .title {
  display: flex;
  align-items: flex-start;
}
.call-widget-container .top .title .phone-line-image {
  border-radius: var(--rounded-full);
  height: 2rem;
  background-size: cover;
  width: 2rem;
  flex: 0 0 2rem;
}
.call-widget-container .top .title .info {
  all: unset;
  margin: 0 0.75rem;
}
.call-widget-container .top .title .info h2 {
  all: unset;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2rem;
}
.call-widget-container .top .title .info p {
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 0.25rem;
}
.call-widget-container .top .wait-time-container {
  box-sizing: border-box;
  text-align: right;
}
.call-widget-container .top .wait-time-container .last-updated {
  font-size: 0.6rem;
  white-space: pre-wrap;
  margin-top: 0.25rem;
  font-weight: 500;
  color: var(--gray-400);
}
.call-widget-container .top .wait-time {
  align-self: flex-start;
  background-color: var(--gray-100);
  border-radius: var(--rounded-full);
  color: var(--gray-800);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.125rem .625rem;
  white-space: nowrap;
}
.call-widget-container .top .wait-time.bad {
  background-color: var(--red-100);
  color: var(--red-800);
}
.call-widget-container .top .wait-time.ok {
  background-color: var(--yellow-100);
  color: var(--yellow-800);
}
.call-widget-container .top .wait-time.good {
  background-color: var(--green-100);
  color: var(--green-800);
}
.call-widget-container .actions {
  cursor: pointer;
  display: flex;
  z-index: 1;
  /* prevent select */
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.call-widget-container .actions .cta-button {
  white-space: nowrap;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  color: var(--claimyr-blue);
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 0;
  cursor: pointer;
  background-color: #fff;
  border: none;
  outline: none;
}
.call-widget-container .actions .cta-button.selected {
  border-bottom: 1px solid var(--claimyr-pink);
}
.call-widget-container .actions .cta-button .prompt {
  align-items: center;
  all: unset;
  display: flex;
  justify-content: center;
  line-height: 1.25rem;
}
.call-widget-container .actions .cta-button .prompt .claimyr-logo {
  height: 1.25rem;
  margin-left: 5px;
  margin-top: 1px;
}
.call-widget-container .actions .cta-button .wait-time-val {
  font-weight: 600;
}
.call-widget-container .actions .cta-button .wait-time-val.bad {
  color: var(--red-600);
}
.call-widget-container .actions .cta-button .wait-time-val.good {
  color: var(--green-600);
}
.call-widget-container .actions .cta-button .wait-time {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 0.1rem;
}
.call-widget-container .actions .divider {
  width: 1px;
  background-color: var(--gray-200);
}
.call-widget-container .details {
  max-height: 0;
  overflow: hidden;
}
.call-widget-container .details .call-app-cta {
  margin: 1rem 0 2rem 0;
}
.call-widget-container .details .call-app-container {
  box-sizing: border-box;
  max-height: 0px;
  overflow: hidden;
}
.call-widget-container .details .call-app-container.visible {
  max-height: fit-content;
  overflow: visible;
}
.call-widget-container .details.expand {
  max-height: none;
}
.call-widget-container .details > .panel {
  border-top: 1px solid var(--gray-200);
  display: block;
  padding: 1.5rem;
}
.call-widget-container .details > .panel.hide {
  display: none;
}
.call-widget-container .details h3 {
  background-color: var(--gray-200);
  border-radius: 0.25rem;
  color: var(--claimyr-blue);
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
}
.call-widget-container .details * + h3 {
  margin-top: 2rem;
}
.call-widget-container .details .on-your-own-info {
  display: grid;
  column-gap: 2rem;
  grid-template-columns: auto minmax(20ch, 1fr);
  margin-top: 1rem;
}
.call-widget-container .call-with-claimyr {
  background-color: var(--claimyr-blue);
  border: 0;
  border-radius: 0.25rem;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  line-height: 1.25rem;
  margin-top: 1rem;
  padding: 0.5rem 0.75rem;
}
.call-widget-container .call-with-claimyr .claimyr-logo {
  height: 1.25rem;
  margin-left: 5px;
  margin-top: 1px;
}
@media only screen and (max-width: 768px) {
  .call-widget-container .details .on-your-own-info {
    display: block;
  }
}
.community-post .call-widget-container a {
  color: #4c74b9;
  cursor: pointer;
  display: inline;
  text-decoration: underline !important;
  text-decoration-color: #d2dcee !important;
  transition: all 0.3s ease;
}
.community-post .call-widget-container a:hover {
  text-decoration-color: #829dce !important;
}
/* END call-widget-container */
/* twiml-instructions */
.twiml-instructions {
  font-size: 0.8rem;
  list-style-type: none;
  padding: 0;
}
.twiml-instructions li {
  margin: 0.25rem 0;
  white-space: nowrap;
}
.twiml-instructions .press {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 0.25rem;
  color: var(--claimyr-blue);
  display: inline-block;
  font-weight: 600;
  line-height: 1rem;
  padding: 0 0.25rem;
}
.twiml-instructions .wait,
.twiml-instructions .dial {
  font-weight: 800;
}
/* END twiml-instructions */
/* busy-times-chart */
.busy-times-chart .weekdays {
  display: flex;
  margin: 0.5rem 0;
}
.busy-times-chart .weekdays > button {
  background-color: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--claimyr-blue);
  cursor: pointer;
  flex: 1 1 100%;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
}
.busy-times-chart .weekdays > button.selected {
  background-color: var(--claimyr-blue);
  color: var(--white);
}
/* END busy-times-chart */
/* .call-widget & .call-list-widget placeholders */
.call-list-widget:empty, .call-widget:empty {
  height: 134px;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  border-radius: 0.5rem;
  margin: 1rem 0;
  visibility: visible;
}
.call-list-widget:empty:before, .call-widget:empty:before {
  content: ' ';
  background-image: url('https://yrcdn.net/assets/classic-spinner-grey.gif');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 50px;
  width: 100%;
  display: block;
  height: 100%;
  opacity: .25;
}
/* END .call-widget & .call-list-widget placeholders */
/* .call-list-widget-container */
.call-list-widget-container .search-bar {
  background: url('https://yrcdn.net/assets/search-solid-gray-small.png') no-repeat .75rem .75rem;
  background-size: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--rounded-full);
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  font-size: 1rem;
  height: 3rem;
  padding-left: 3rem;
  width: calc(100% - 3rem);
  outline:none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
/* END .call-list-widget-container */
/* call-app */
.call-app {
  width: 100%;
}
/* END call-app */
/* call-app-cta */
.call-app-cta {
  align-items: center;
  background-color: var(--claimyr-blue);
  border: none;
  border-radius: var(--rounded-md);
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-weight: 500;
  justify-content: center;
  padding: 0.5rem 1rem;
}
.call-app-cta .claimyr-logo {
  margin-left: 0.25rem;
  margin-top: 2px;
}
.call-app-cta svg {
  height: 1rem;
}
.call-app-cta span {
  font-weight: 800;
  margin: 0 0.25rem;
}
/* END call-app-cta */
/* call-app-payment-form */
.call-app-payment-form-container {
}

.call-app-payment-form-container .payment-info-and-order-summary {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .call-app-payment-form-container .payment-info-and-order-summary {
    flex-direction: column;
  }
}

.loading-spinner {
  opacity: 0.25;
  height: 50px;
  margin: 2rem auto;
}
.call-app-payment-form {
  width: 80%;
  margin-right: 2%;
  box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  transition: all 0.42s;
}
@media only screen and (max-width: 768px) {
  .call-app-payment-form {
    width: 100%;
    margin-right: 0%;
  }
}
.call-app-payment-form.visible {
  opacity: 1;
  max-height: 1000px;
}

.call-app-payment-form h3 {
  font-size: 22px;
}

.call-app-payment-form button.back-to-saved-payment-methods {
  float: left;
  border: none;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  margin-bottom: 8px;
  color: #666;
}

.call-app-payment-form .stripe-card {
  border: 1px solid lightgrey;
  box-sizing: border-box;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 10px 2%;
}
.call-app-payment-form .stripe-card.hidden {
  display: none;
}
.call-app-payment-form .payment-input {
  box-sizing: border-box;
  width: 100%;
}

.call-app-payment-form-container .order-summary {
  margin: 10px 0px;
  padding: 10px;
  border: 1px solid #000;
  height: fit-content;
}

.call-app-payment-form-container .order-summary h3 {
  text-align: center;
}

.call-app-payment-form-container .order-summary .order-info-items {
  padding: 10px 0px;
}

.call-app-payment-form-container .order-summary .order-info {
  align-items: center;
  display: flex;
  font-size: 0.8rem;
  font-weight: 600;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
}
.call-app-payment-form-container .order-summary .order-info:last-of-type {
  margin-bottom: 10px;
}
.call-app-payment-form-container .order-summary .order-info svg {
  height: 1rem;
  margin-right: 0.25rem;
  width: 20px;
}

.call-app-payment-form-container .order-summary .total-price {
  display: flex;
  justify-content: space-between;
  padding: 0px 5px;
  font-size: 20px;
  font-weight: 600;
}

.call-app-payment-form-container #payment-form-submit-button.disabled {
  background-color: var(--gray-600);
}

#refund-policy {
  color: var(--gray-400);
  padding: 5px 5px;
  text-align: center;
  font-size: 14px;
}

#refund-policy > span {
  display: flex;
  align-items: center;
  justify-content: center;
}

#refund-policy button {
  background: none;
  border: none;
  outline: none;
  text-decoration: underline;
  cursor: pointer;
  color: var(--gray-600);
  font-size: 14px;
}

#refund-policy .background {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1001;
  background: rgb(0, 0, 0, 0.75);
  width: 100vw;
  height: 100vh;
}
@media only screen and (max-width: 768px) {
  #refund-policy .background {
  }
}
#refund-policy .content {
  background: #fff;
  color: #000;
  overflow-y: scroll;
  text-align: left;
  height: 70vh;
  padding: 15px 20%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  #refund-policy .content {
    padding: 15px;
    padding-bottom: 50px;
  }
}
#refund-policy .content h3 {
  text-align: center;
  font-size: 22px;
}
#refund-policy .content > ol > li {
  padding: 10px 0px;
}
#refund-policy .content > ol > li ol[type="A"] {
  padding: 10px 0px;
  padding-left: 35px;
}

.call-app-payment-form-container input {
  background-color: var(--gray-100);
  border: none;
  color: var(--claimyr-blue);
  font-weight: 500;
}
.call-app-payment-form-container .stripe-card {
  background-color: var(--gray-100);
  border: none;
}

.call-app-payment-form-container .submit-buttons {
  padding: 10px 0px;
}

.call-app-payment-form-container #payment-form-submit-button {
  align-items: center;
  height: auto;
  background-color: #3DA83B;
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0px;
  line-height: 1.25rem;
  width: 100%;
  margin: 10px 0px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.25s;
}
.call-app-payment-form-container #payment-form-submit-button[disabled] {
  opacity: 0.5;
  cursor: default;
}

.call-app-payment-form-container #payment-form-submit-button span {
  font-weight: 800;
  white-space: nowrap;
}
.call-app-payment-form-container #payment-form-submit-button svg,
.call-app-payment-form-container #payment-form-submit-button img {
  height: 1.25rem;
  margin-right: 0.25rem;
  margin-top: -5px;
  position: relative;
  top: 3px;
  margin-left: 8px;
}

#powered-by-stripe {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#powered-by-stripe a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid lightgrey;
  border-radius: 5px;
  color: var(--claimyr-blue);
  font-size: 12px;
}
#powered-by-stripe svg {
  width: 50px;
}

.call-app-payment-form-container .how-claimyr-works {
  text-align: center;
  margin-top: 1rem;
}
.call-app-payment-form-container .how-claimyr-works button {
  border: none;
  background-color: var(--gray-200);
  border-radius: 999px;
  cursor: pointer;
  color: var(--gray-600);
  font-weight: 600;
  padding: 0.5rem 1rem;
}
.call-app-payment-form-container .how-claimyr-works-info {
  box-sizing: border-box;
  display: none;
  margin-top: 1rem;
}
.call-app-payment-form-container .how-claimyr-works-info.visible {
  display: block;
}
.call-app-payment-form-container .order-details {
  color: var(--claimyr-blue);
  list-style-type: none;
  padding: 10px 0px;
}
.call-app-payment-form-container .order-details li {
  display: flex;
  justify-content: space-between;
}
.call-app-payment-form-container .order-details li.total {
  font-weight: 600;
}
.call-app-payment-form-container .order-details li + li {
  margin-top: 0.5rem;
}

.skip-the-queue {
  padding: 10px 0px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  border: 5px solid var(--priority-gold);
  border-radius: 15px;
}

.skip-the-queue .container {
  width: 80%;
  margin: auto;
}

.skip-the-queue .title {
  font-size: 22px;
}
.skip-the-queue .description {
  padding: 10px 0px;
}
.skip-the-queue .price {
  font-size: 28px;
}

.skip-the-queue a {
  display: inline-block;
  border-radius: 5px;
  background-color: var(--priority-gold);
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  padding: 10px 25px;
}
@media only screen and (max-width: 768px) {
  .skip-the-queue a {
    width: 100%;
  }
}

.skip-the-queue button {
  display: inline-block;
  border-radius: 5px;
  background-color: var(--priority-gold);
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  padding: 10px 25px;
  border: none;
  outline: none;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .skip-the-queue button {
    width: 100%;
  }
}

/* END call-app-payment-form */
/* call-app-success */
.call-app-success .success-checkmark {
  height: 106px;
}
.call-app-success .checkmark {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 5;
  stroke-linecap: round;
  margin: 0 auto;
  box-shadow: inset 0px 0px 0px #5FCE3E;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}
.call-app-success .checkmark .circle {
  stroke-dasharray: 216;
  stroke-dashoffset: 216;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #5FCE3E;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.call-app-success .checkmark .check {
  transform-origin: 50% 50%;
  stroke-dasharray: 98;
  stroke-dashoffset: 98;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 100px #5FCE3E;
  }
}
.call-app-success .success-message {
  margin-top: 1rem;
}
.call-app-success .success-message h1 {
  color: var(--claimyr-blue);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
}
.call-app-success .success-message p {
  text-align: center;
}
/* END call-app-success */
/* call-app-phone-number && call-app-auth-code */
.call-app-phone-number h2,
.call-app-why-are-you-calling h2,
.call-app-email-full-name-phone-number h2,
.call-app-auth-code h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
}
.call-app-phone-number input,
.call-app-why-are-you-calling .calling-issue,
.call-app-email-full-name-phone-number input,
.call-app-auth-code input {
  border: 0;
  box-sizing: border-box;
  font-size: 2rem;
  height: 3.5rem;
  margin: 2rem 0;
  outline: none;
  padding: 0;
  width: 100%;
  resize: none;
}
.call-app-email-full-name-phone-number input {
  margin: 1rem 0;
  font-size: 1.5rem;
  border-radius: 20px;
  padding: 8px;
  border: 1px solid lightgrey;
}
.call-app-phone-number button,
.call-app-why-are-you-calling button,
.call-app-email-full-name-phone-number button,
.call-app-auth-code button {
  background-color: var(--claimyr-red);
  border-radius: var(--rounded-full);
  font-size: 1.5rem;
  font-weight: 600;
  width: 100%;
  transition: filter 0.3s;
  margin-bottom: 1rem;
}
.call-app-phone-number button:hover,
.call-app-why-are-you-calling button:hover,
.call-app-email-full-name-phone-number button:hover,
.call-app-auth-code button:hover {
  background-color: var(--claimyr-red-dark);
}
.call-app-phone-number button.disabled,
.call-app-why-are-you-calling button.disabled,
.call-app-email-full-name-phone-number button.disabled,
.call-app-auth-code button.disabled {
  background-color: var(--claimyr-red);
  filter: saturate(0) brightness(1.5);
}
.call-app-phone-number button.disabled:hover,
.call-app-why-are-you-calling button.disabled:hover,
.call-app-email-full-name-phone-number button.disabled:hover,
.call-app-auth-code button.disabled:hover {
  filter: saturate(0) brightness(1.5);
}
/* END call-app-phone-number && call-app-auth-code */
/* call-app-phone-number */
.call-app-phone-number .disclaimer,
.call-app-why-are-you-calling .disclaimer {
  color: var(--gray-400);
  font-size: 0.75rem;
  padding: 0 1rem;
}
.call-app-phone-number .disclaimer a,
.call-app-why-are-you-calling .disclaimer a {
  color: var(--gray-400);
  text-decoration: underline;
}
/* END call-app-phone-number */
/* call-app-confirm */
.call-app .close {
  display: flex;
  justify-content: flex-start;
}
.call-app .close button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--gray-600);
  font-size: 18px;
  display: flex;
  align-items: center;
}

.call-app-confirm .trustpilot-widget-container {
  margin-top: 2rem;
  position: relative;
  padding: 0;
}
.call-app-confirm .trustpilot-overlay {
  cursor: pointer;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
.call-app-confirm .value-prop { 
}
.call-app-confirm .value-prop h2 { 
  font-size: 1.5rem;
  margin-top: 1rem;
}
.call-app-confirm .value-prop p {
  font-weight: 800;
}
.call-app-confirm .value-prop li {
  line-height: 1.5rem;
}
.call-app-confirm .how-claimyr-works {
  text-align: center;
  margin-top: 1rem;
}
.call-app-confirm .how-claimyr-works button {
  border: none;
  background-color: var(--gray-200);
  border-radius: 999px;
  cursor: pointer;
  color: var(--gray-600);
  font-weight: 600;
  padding: 0.5rem 1rem;
}
.call-app-confirm .how-claimyr-works-info {
  box-sizing: border-box;
  display: none;
  margin-top: 1rem;
}
.call-app-confirm .how-claimyr-works-info.visible {
  display: block;
}
.call-app-confirm .order-info {
  align-items: center;
  color: var(--claimyr-blue);
  display: flex;
  font-size: 0.8rem;
  font-weight: 600;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.call-app-confirm .order-info svg {
  height: 1rem;
  margin-right: 0.25rem;
}
.call-app-confirm .order-info:last-of-type {
  margin-bottom: 2rem;
}
.call-app-confirm h1 {
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
}
.call-app-confirm .offering-details {
  align-items: center;
  border: 2px solid var(--claimyr-blue);
  border-radius: 2rem;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-weight: 500;
  color: var(--claimyr-blue);
}
.call-app-confirm .offering-details > p:first-child {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
}
.call-app-confirm .offering-details > * + * {
  margin-top: 1rem;
}
.call-app-confirm .offering-details .hold-time {
  text-align: center;
  font-weight: 800;
  margin: 2rem 0;
}
.call-app-confirm .offering-details .hold-time p:first-child{
  font-size: 8rem;
  line-height: 8rem;
}
.call-app-confirm .offering-details .hold-time p:last-child{
  font-size: 2rem;
}

.call-app-confirm .selections {
  width: 100%;
  display: flex;
  padding: 30px 0px;
}

.call-app-confirm .selections .panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  cursor: pointer;
  background-color: #fff;
  outline: none;
  padding: 10px 5px;
  color: #000;
  min-height: 15vh;
}
.call-app-confirm .selections .panel.left {
  margin-right: 2%;
}
.call-app-confirm .selections .panel.right {
  margin-left: 2%;
}
.call-app-confirm .selections .panel.selected {
  border: 1px solid #000;
}
.call-app-confirm .selections .panel .title {
  font-size: 22px;
  font-weight: 500;
}
.call-app-confirm .selections .panel .priority-lightning-bolt {
  height: 22px;
  width: 22px;
  position: relative;
  top: 3px;
  margin-left: 5px;
}
.call-app-confirm .selections .panel .description {
  font-size: 12px;
  padding: 5px 0px;
}
.call-app-confirm .selections .panel.right .spacer {
  height: 100%;
}
.call-app-confirm .selections .panel.left .spacer {
  height: 15px;
}
.call-app-confirm .selections .panel .price {
  font-size: 18px;
  font-weight: 500;
}

.call-app-confirm .discount-disclaimer {
  padding: 15px 0px;
}

.call-app-confirm .confirm-button {
  align-items: center;
  background-color: #3DA83B;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  color: var(--white);
  display: flex;
  font-weight: 500;
  font-size: 1.25rem;
  justify-content: center;
  padding: 1.25rem;
  width: 100%;
  margin: 0;
  height: 61px;
  position: relative;
  z-index: 1000;
}
.call-app-confirm .confirm-button.sticky {
  width: 558px;
  margin-top: 0px;
  position: fixed;
  /* top: specified by js */
}
@media only screen and (max-width: 768px) {
  .call-app-confirm .confirm-button.sticky {
    left: 5.5%;
    width: 89%;
  }
}

.call-app-confirm .confirm-button-placeholder {
  margin-top: 2rem;
  height: 61px;
}

.call-app-confirm .confirm-button span, .call-app-confirm .confirm-button s {
  font-weight: 800;
  margin-right: 0.25rem;
}
.call-app-confirm .confirm-button svg {
  height: 1.25rem;
  margin-right: 0.25rem;
  margin-top: -1px;
}

.call-app-confirm .press {
  margin-top: 10px;
}

.press-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.press-logos img,
.guide-page .press .press-logos img {
  width: 20%;
}
.press-logos img.abc-7,
.guide-page .press .press-logos img.abc-7 {
  opacity: 42%;
}

.call-app-confirm .press .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.call-app-confirm .press .logos img {
  width: 20%;
}
.call-app-confirm .press .logos img.abc-7 {
  opacity: 42%;
}

.call-app-confirm .back-to-top {
  display: flex;
  justify-content: center;
}
.call-app-confirm .back-to-top a {
  color: var(--gray-600);
  cursor: pointer;
}
.call-app-confirm .back-to-top a:hover {
  text-decoration: underline;
}

.call-app-confirm .goto-community {
  margin-top: 5px;
  display: flex;
  justify-content: center;
}
.call-app-confirm .goto-community a {
  color: var(--gray-600);
  cursor: pointer;
  text-decoration: none;
}
.call-app-confirm .goto-community a:hover {
  text-decoration: underline;
}

.call-app-confirm .inputs {
  margin-top: 15px;
}

.call-app-confirm .inputs > div {
  margin-top: 8px;
}

.call-app-confirm .inputs > div > input {
  width: 97%;
  max-width: 450px;
  height: 25px;
}

/* END call-app-confirm */
/* prose */
.prose {
  align-items: flex-start;
  flex-direction: column;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  color: rgb(55, 53, 47);
  display: flex;
  line-height: 1.5;
  padding-bottom: 2rem;
}
.prose > * {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .prose > iframe {
    height: 250px;
  }
}
.prose ul, .prose ol {
  box-sizing: border-box;
  width: 100%;
}
.prose h1:not(.call-widget-container *) {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2em;
  margin-bottom: 1rem;
  margin-top: 1em;
}
.prose h2:not(.call-widget-container *) {
  font-size: 1.875em;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  margin-top: 1em;
}
.prose h3 {
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  margin-top: 0.5em;
}
@media only screen and (max-width: 768px) {
  .prose h1:not(.call-widget-container *) {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1em;
    margin-bottom: 1rem;
    margin-top: 0.5em;
  }
  .prose h2:not(.call-widget-container *) {
    font-size: 1.5em;
    line-height: 1;
  }
  .prose h3 {
    font-size: 1em;
  }
}
.prose img:not(.call-widget-container *) {
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0.5rem auto;
  max-width: calc(100% + 4rem);
  margin-left: -2rem;
}
@media only screen and (max-width: 768px) {
  .prose img:not(.call-widget-container *) {
    border-radius: 0;
    max-width: calc(100% + 2rem);
    margin-left: -1rem;
  }
}
.prose a {
  color: #4c74b9;
  text-decoration: underline;
  text-decoration-color: #d2dcee;
  transition: all 0.3s ease;
}
.prose a:hover {
  text-decoration-color: #829dce !important;
}
.prose .call-widget a {
  display: block;
  text-align: center;
  color: #fff;
  background-color: #3DA83B;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  padding: 10px 0px;
  border-radius: 1rem;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .prose .call-widget a {
    width: 100%;
  }
}
.prose p:not(.call-widget-container *) {
  font-weight: 500;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
}
.prose h4:not(.call-widget-container *) {
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--gray-500)
}
.prose h3:not(.call-widget-container *) {
  font-weight: 800;
  color: var(--gray-600);
  margin: 0.5rem 0;
}
.prose table:not(.call-widget-container *) {
  border-collapse: separate;
  box-sizing: border-box;
  border-spacing: 0.5rem;
  border: none;
  margin-bottom: 1.5rem;
  margin-left: -0.5rem;
  padding: 0;
  width: calc(100% + 1rem);
}
.prose th:empty {
  box-sizing: border-box;
  height: 0;
  margin: 0;
  padding: 0;
}
.prose td:not(.call-widget-container *) {
  background-color: var(--gray-100);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.75rem;
  line-height: 1rem;
  text-align: center;
}
.prose td:empty {
  background-color: transparent;
}
.prose .call-list-widget-container {
  margin-top: 1rem;
}
/* END prose */
/* call-stats */
.call-stats {
  display: flex;
  color: var(--claimyr-blue);
  margin-bottom: 2rem;
}
.call-stats > div {
  background-color: var(--gray-100);
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  padding: 1rem 0;
  line-height: 1rem;
}
.call-stats > * + * {
  margin-left: 0.25rem;
}
.call-stats > div:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.call-stats > div:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background-color: var(--claimyr-blue);
  color: var(--white);
}
.call-stats > div span {
  white-space: pre-wrap;
}
.call-stats > div span:first-child {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}
.call-stats > div span:last-child {
  font-size: 0.8rem;
  text-align: center;
}
/* END call-stats */

.home-phone-line-stamp-call-app-container {
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
}

.super-seminar-2022 > #logos {
  width: 100%;
  margin-top: 12px;
  display: flex;
  justify-content: center;
}
.super-seminar-2022 > #logos > img {
  width: 80%;
}

.super-seminar-2022 > #send-call {
  color: var(--claimyr-blue);
  background-color: #fff;
  padding: 18px 25px;
  border-radius: 20px;
}

.super-seminar-2022 > #send-call > .header > h1 {
  font-size: 48px;
}
.super-seminar-2022 > #send-call > form {
  width: 100%;
  margin-top: 16px;
}
.super-seminar-2022 > #send-call > form > .input {
  margin-bottom: 15px;
}

.super-seminar-2022 > #send-call .success-checkmark {
  display: flex;
  justify-content: center;
  align-items: center;
}
.super-seminar-2022 > #send-call .success-checkmark > img {
  width: 100px;
}

.super-seminar-2022 > #send-call .success-message {
  text-align: center;
}

#request-another-callback {
  width: 100%;
}

#request-another-callback > button {
  color: #fff;
  background-color: #3DA83B;
  width: 50%;
  height: 50px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s;
}

#request-another-callback > button[disabled] {
  background-color: var(--gray-300);
  cursor: default;
}

.success-checkmark {
}
.success-checkmark > img {
  width: 10%;
}

#payment-success > ul {
  text-align: left;
}

main.tax-professionals {
}

main.tax-professionals h1,
main.tax-professionals h2,
main.tax-professionals h3
{
  color: var(--claimyr-blue);
}

main.tax-professionals section {
  width: 600px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  main.tax-professionals section {
    width: 100%;
  }
}

main.tax-professionals section.header {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

main.tax-professionals h1 {
  font-size: 36px;
}
main.tax-professionals h2 {
  font-size: 18px;
}

main.find nav {
  margin-top: 25px;
}

main.find nav a {
  text-decoration: underline;
  color: var(--claimyr-blue);
}

main.communities {
}
main.communities h1 {
  text-align: center;
  padding-top: 5vh;
}

main.refund-policy {
  padding: 2vh 5vw;
  width: calc(100% - 10vw);
}
@media only screen and (max-width: 768px) {
  main.refund-policy {
    padding: 2vh 1vw;
    width: calc(100% - 2vw);
  }
}

main.refund-policy h1 {
  font-size: 32px;
  text-align: center;
}
main.refund-policy ol[type="1"] > li {
  padding: 10px 0px;
}

main.refund-policy ol[type="A"] {
  padding: 10px 35px;
}

.content-hub {
  min-height: 100vh;
  width: calc(100% - 10vw);
  padding: 25px 5vw;
  margin-top: 85px;
}
@media only screen and (max-width: 768px) {
  .content-hub {
    width: calc(100% - 2vw);
    padding: 25px 1vw;
  }
}

.content-hub header {
  position: relative;
}

.content-hub h1 {
}

.content-hub .content-hub-create {
  position: relative;
}

.content-hub .content-hub-create .create-fields {
  padding: 15px 2%;
  position: absolute;
  right: 0;
  z-index: 10;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid var(--gray-200);
}
.content-hub .content-hub-create .create-fields h2 {
  margin-bottom: 5px;
}
.content-hub .content-hub-create .create-fields section {
}

.content-hub .content-hub-create button.show {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}
.content-hub .content-hub-create button.show.plus {
  top: -50px;
  right: 0;
}
.content-hub .content-hub-create button.show.minus {
  top: -27px;
  right: 15px;
}

.content-hub .content-hub-create button img.plus {
  width: 50px;
}
.content-hub .content-hub-create button img.minus {
  width: 15px;
}

.content-hub .search {
  width: 600px;
  padding: 10px 0px;
}
@media only screen and (max-width: 768px) {
  .content-hub .search {
    width: 100%;
  }
}

.content-hub .topic {
  position: relative;
  padding-top: 20px;
}

.content-hub .topic h2 {
  margin-bottom: 5px;
}

.content-hub .topic.create {
}
.content-hub .topic.create section {
}

.content-hub .topic .items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media only screen and (max-width: 1180px) {
  .content-hub .topic .items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .content-hub .topic .items {
    grid-template-columns: 1fr 1fr;
  }
}

.content-hub .topic .item {
  width: 96%;
  padding: 0 1%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .content-hub .topic .item {
    padding: 0 1%;
  }
}

.content-hub .topic .item.create {
}

.content-hub .topic .item.create button.add {
  width: 100%;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  background-color: rgba(0, 0, 0, 0.1);
  /*
  border: 1px solid rgba(0, 0, 0, 0.5);
  */
}
.content-hub .topic .item.create button.add:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.content-hub .topic .item.create button.create {
  width: 100%;
  padding: 10px 0px;
  cursor: pointer;
  border: none;
  background-color: var(--claimyr-red);
  color: #fff;
  border-radius: 5px;
}
.content-hub .topic .item.create button.create:hover {
  background-color: var(--claimyr-red-dark);
}

.content-hub .topic .item.create .phone-line-selector {
  position: relative;
}

.content-hub .topic .item.create .selector {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: scroll;
  top: 0;
  background-color: #fff;
  padding: 15px 5vw;
  z-index: 10;
  border-radius: 5px;
  left: -10%;
}

.content-hub .topic .item.create .selector section {
  margin-bottom: 5px;
}
.content-hub .topic .item.create .selector .search-bar {
  border: 1px solid var(--gray-500);
  outline: none;
  margin-bottom: 5px;
}
.content-hub .topic .item.create .selector button.cancel {
  cursor: pointer;
  background: none;
  border: none;
  float: right;
  margin-bottom: 5px;
  outline: none;
}
.content-hub .topic .item.create .selector .options-list .option {
  padding: 5px 0px;
}

.content-hub .topic .item.create .phone-line-selector button.add {
  padding: 0;
  height: 190px;
}
.content-hub .topic .item.create .phone-line-selector button.add img {
  width: 50px;
}

.content-hub .topic .item.create .community-selector {
  position: relative;
}
.content-hub .topic .item.create .community-selector button.add {
  padding: 0;
  height: 50px;
}
.content-hub .topic .item.create .community-selector button.add img {
  width: 35px;
}

.content-hub .topic .item.create .community-selector button.add .community-link,
.content-hub .topic .item.create .selector .option .community-link {
  text-align: center;
  display: flex;
  align-items: center;
  background-color: var(--claimyr-blue);
  color: #fff;
  text-decoration: none;
  padding: 8px 5%;
  border-radius: 5px;
  cursor: pointer;
}

.content-hub .topic .item.create .guide-selector {
  position: relative;
}
.content-hub .topic .item.create .guide-selector .selections {
  margin-bottom: 10px;
}
.content-hub .topic .item.create .guide-selector button.add {
  height: 35px;
}
.content-hub .topic .item.create .guide-selector button.add img {
  width: 25px;
}

.content-hub .topic .item .background {
  position: relative;
  padding: 10px 5%;
  border-radius: 5px;
}

.content-hub .remove {
  position: absolute;
  right: 2%;
}
.content-hub > .remove {
  position: initial;
  padding: 15px 0px;
}
.content-hub > .remove button {
  color: red;
}
.content-hub > .remove button span {
  position: relative;
  top: -2px;
  font-size: 18px;
}
.content-hub .topic > .row {
  display: flex;
  align-items: center;
}
.content-hub .topic > .row > .remove {
  position: relative;
  margin-left: 10px;
  top: -3px;
  right: 0;
}
.content-hub .remove button {
  outline: none;
  background: none;
  border: none;
  cursor: pointer;
}
.content-hub .remove button svg {
  width: 15px;
  height: 15px;
}

.content-hub .topic .item.active {
  grid-column: 1 / span 3;
}
@media only screen and (max-width: 768px) {
  .content-hub .topic .item.active {
    grid-column: 1 / span 2;
  }
}

.content-hub .topic .item section {
  padding-bottom: 15px;
}
.content-hub .topic .item section p {
  color: var(--gray-800);
  margin-bottom: 5px;
}

.content-hub .topic .item > p {
  padding: 0px;
  padding-top: 15px;
  padding-bottom: 5px;
}

.content-hub .topic .line-option-wrapper {
  width: 100%;
  margin: 0;
}
.content-hub .topic .item.active .line-option-wrapper {
  width: 32%;
}
@media only screen and (max-width: 768px) {
  .content-hub .topic .item.active .line-option-wrapper {
    width: 48%;
  }
}

.content-hub .topic .item > .background > section > .community-link
{
  text-align: center;
  display: flex;
  align-items: center;
  background-color: var(--claimyr-blue);
  color: #fff;
  text-decoration: none;
  padding: 8px 5%;
  border-radius: 5px;
}

.content-hub .topic .community-link img {
  width: 25px;
  max-height: 25px;
}
.content-hub .topic .community-link span {
  text-align: center;
  width: 100%;
  padding: 0 2%;
  font-size: 14px;
}

.content-hub .topic .item .guide-link {
  display: block;
  background-color: #fff;
  color: rgb(55, 53, 47);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 10px;
  margin: 10px 0px;
  border: 1px solid rgb(55, 53, 47);
}
.content-hub .topic .item .guide-link.first {
  margin: 0;
  margin-bottom: 10px;
}
.content-hub .topic .item .guide-link.last {
  margin: 0;
  margin-top: 10px;
}

.trustpilot-reviews {
  margin-top: 15px;
}

.trustpilot-reviews .review {
  border: 1px solid #e4e4e4;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.trustpilot-reviews .profile {
  display: flex;
  align-items: center;
}

.trustpilot-reviews .profile .user-info {
  margin-left: 10px;
}

.trustpilot-reviews .profile .profile-pic {
  display: flex;
  position: relative;
  width: 50px;
  height: 50px;
}

.trustpilot-reviews .profile .profile-pic img {
  border-radius: 30px;
  width: 50px;
  position: absolute;
}

.trustpilot-reviews .trustpilot-stars img {
  width: 125px;
}

.trustpilot-reviews .title {
  padding: 10px 0px;
}
.trustpilot-reviews .content {
}

.trustpilot-reviews .read-all-reviews {
  text-decoration: none;
  padding-left: 5px;
}

.update-order-info-home {
  min-height: 100vh;
  padding-top: 5vh;
}

.update-order-info-home button[type="submit"] {
  margin-top: 1vh;
}

.update-order-info-home .container {
  width: 450px;
}
@media only screen and (max-width: 768px) {
  .update-order-info-home .container {
    width: 100%;
  }
}

.left-arrow svg {
  width: 20px;
  height: 10px;
}
.left-arrow.big svg {
  width: 30px;
  height: 15px;
}

.calling-issue-input {
  padding: 11px 3.6%;
  border-radius: 25px;
  border: 1px solid #e4e4e4;
  margin-top: 10px;
  margin-bottom: 10px;
  outline: none;
}

.call-app-ai-agent .chat-input-area {
  position: relative;
}
.call-app-ai-agent .chat-input {
  position: relative;
  z-index: 1;
  outline: none;
  overflow: scroll;
  white-space: pre-wrap;
  word-wrap: break-word;
  border: 1px solid #e4e4e4;
  transition: min-height 0.25s;
  padding: 11px 3.6%;
  border-radius: 25px;
  width: 100%;
  overflow: hidden;
}

[placeholder]:empty:before {
  content: attr(placeholder);
  color: #555;
  cursor: text;
}

.call-app-ai-agent .agent-profile {
  text-align: center;
}

.call-app-ai-agent button.send img {
  width: 33px;
  height: 33px;
}
.call-app-ai-agent button.send {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  background-color: #263859;
  padding: 0;
  z-index: 1;
  width: 33px;
  height: 33px;
  border-radius: 25px;
  transition: background-color 0.42s;
  right: 6px;
  bottom: 6px;
}
.call-app-ai-agent button.send[disabled] {
  background-color: var(--gray-500);
}

.call-app-ai-agent .chat-messages {
  display: flex;
  flex-direction: column;
  padding-bottom: 25px;
}

.chat-messages .message-with-info {
  width: 100%;
  margin-bottom: 15px;
}
.chat-messages .message-with-info.agent {
}
.chat-messages .message-with-info.user {
  align-self: flex-end;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.chat-messages .message-with-info.user .media {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.chat-messages .message-with-info.user .media .item {
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  max-height: 150px;
  max-width: 150px;
  overflow: hidden;
  margin: 0 5px;
}
@media only screen and (max-width: 768px) {
  .chat-messages .message-with-info.user .media .item {
    max-height: 100px;
    max-width: 100px;
  }
}
.chat-messages .message-with-info.user .media .item img {
  max-width: 100px;
  cursor: pointer;
}

#ai-expert-home .typing-indicator img {
  width: 50px;
  opacity: 1;
}

.typing-indicator img {
  width: 50px;
  opacity: 0;
}
.typing-indicator.visible img {
  opacity: 1;
}

#ai-expert-home {
  background-color: #fff;
  padding-top: 65px;
  padding-bottom: 110px;
}

#ai-expert-home .messages {
  width: 768px;
  padding-bottom: 85px;
}
@media only screen and (max-width: 768px) {
  #ai-expert-home .messages {
    width: 100%;
  }
}
.chat-container-container {
  z-index: 100;
  padding-top: 15px;
  padding-bottom: 15px;
  left: 0;
  bottom: 30vh;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  transition: bottom 0.3s;
}
.chat-container-container.active {
  bottom: 0vh;
}
.chat-container {
  display: flex;
  position: relative;
  width: 768px;
  justify-content: center;
  /*
  height: 100px;
  */
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.06) 0px -5px 11px -5px;
}
@media only screen and (max-width: 768px) {
  .chat-container {
    width: 100%;
  }
}
.chat {
  display: flex;
  flex-direction: column;
  width: 768px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 2px;
  padding-right: 2px;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  height: fit-content;
  position: relative;
  bottom: 0px;
}
@media only screen and (max-width: 768px) {
  .chat {
    width: 92%;
  }
}

.chat > .chat-inputs {
  display: flex;
}

.chat-input-container {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.chat-input-container .chat-input {
  width: calc(100% - 10px);
  margin: 0 auto;
  min-height: 25px;
  max-height: 50vh;
  padding: 5px 15px;
  padding-right: 62px;
  outline: none;
  overflow-y: scroll;
  overflow-x: hidden;
}

.chat .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
}

button.send {
  width: 25px;
  height: 25px;
  border-radius: 25px;
  background-color: #00599c;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
button.send[disabled] {
  background-color: var(--gray-300);
  cursor: default;
}
button.send img {
  width: 25px;
  height: 25px;
}

/*
.call-app-ai-agent button.send {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  background-color: #263859;
  padding: 0;
  z-index: 1;
  width: 33px;
  height: 33px;
  border-radius: 25px;
  transition: background-color 0.42s;
  right: 6px;
  bottom: 6px;
}
*/

#ai-expert-home .phone-line-search {
  width: 768px;
}
@media only screen and (max-width: 768px) {
#ai-expert-home .phone-line-search {
  width: 100%;
}
}

#ai-expert-home .line-selector {
  width: 768px;
}
@media only screen and (max-width: 768px) {
  #ai-expert-home .line-selector {
    width: 100%;
  }
}
#ai-expert-home .line-selector .line-option-wrapper {
}

#ai-expert-home .chat-messages {
  width: 768px;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  #ai-expert-home .chat-messages {
    width: 96%;
    padding-right: 2%;
    padding-left: 2%;
  }
}

.chat-messages.multiple {
  margin-top: 0vh;
}

.chat-messages .message {
  word-wrap: break-word;
  min-height: 37px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.chat-messages .message * {
  margin-bottom: 10px;
}
.chat-messages .message *:last-child {
  margin-bottom: 0px;
}
.chat-messages .message-with-info.user .message {
  width: 100%;
  min-height: 0px;
}
@media only screen and (max-width: 768px) {
  .chat-messages .message-with-info.user .message {
    width: 95%;
  }
}
.chat-messages .message-with-info.user .message * {
  min-height: 0;
}

.chat-messages .user-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 33px;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  padding: 5px;
}

.chat-messages .user-info .upload {
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
}
.chat-messages .user-info .upload:hover {
  opacity: 1;
}
.chat-messages .user-info .upload .plus {
  position: relative;
  top: 2px;
}
.chat-messages .user-info .upload svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.chat-messages .user-info img {
  height: 33px;
  border-radius: 33px;
}

#ai-expert-home .agent-profile {
  margin-bottom: 25px;
}
#ai-expert-home .agent-profile img {
  width: 50px;
  border-radius: 50px;
}

.chat-messages .message-with-info {
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: start;
  font-size: 16px;
}
.chat-messages .message-with-info.agent {
}
.chat-messages .message-with-info.agent .message {
  padding-left: 5px;
}
.chat-messages .message-with-info.agent .message p {
}
.chat-actions {
  margin-bottom: 15px;
  text-align: center;
}
.chat-messages .message-with-info.agent .chat-actions {
  margin-top: 15px;
}
.chat-messages .message-with-info.agent .widgets {
  margin-top: 10px;
}
.chat-messages .message-with-info.user {
}
.chat-messages .message-with-info.user .message {
  background-color: rgb(239, 239, 248);
  border-radius: 10px;
  padding: 10px;
}

#ai-expert-home .call-app-confirm .confirm-button.sticky {
  width: 770px;
}
@media only screen and (max-width: 768px) {
  #ai-expert-home .call-app-confirm .confirm-button.sticky {
    width: 91%;
  }
}

.chat-action-button {
  width: 48%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background-color: transparent;
  border-radius: 5px;
  border: 1px solid #e4e4e4;
  padding: 10px;
  cursor: pointer;
  margin: 0 1%;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .chat-action-button {
    width: 98%;
    margin: 5px auto;
  }
}
.chat-action-button .image-info {
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat-action-button .image-info > img {
  margin-right: 5px;
}
.chat-action-button .image-info > span {
  margin-left: 5px;
}
.chat-action-button img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

#ai-expert-home .phone-line-search-container {
  margin: 0 auto;
}

#ai-expert-home .phone-line-search {
  margin-top: 0;
  margin: 0 auto;
}

#ai-expert-home > * > .call-app {
  width: 768px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #ai-expert-home > * > .call-app {
    width: 96%;
  }
}

#ai-expert-home .close {
  margin-bottom: 10px;
}

.phone-line-search .close {
  display: flex;
  justify-content: flex-start;
}
.phone-line-search .close button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--gray-600);
  font-size: 18px;
  display: flex;
  align-items: center;
}

#ai-expert-home .call-app {
  width: calc(100% - 22px);
}

.call-app.widget {
  padding: 10px;
  border: 1px solid #f2f2f2;
  border-radius: 15px;
}

.call-app .close.x {
  justify-content: flex-end;
}
.call-app .close.x img {
  width: 15px;
  height: 15px;
}
.phone-line-search .close.x {
  justify-content: flex-end;
}
.phone-line-search .close.x img {
  width: 15px;
  height: 15px;
}

#ai-expert-home .phone-line-search {
  padding: 10px;
  width: calc(100% - 22px);
}

.phone-line-search.widget {
  border: 1px solid #f2f2f2;
  border-radius: 15px;
}

#ai-expert-home .phone-line-search .line-selector {
  width: 100%;
}
#ai-expert-home .phone-line-search .search {
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #f2f2f2;
  border-radius: 25px;
}

.phone-icon-container {
  background-color: #3da83b;
  padding: 8px;
  border-radius: 10px;
}
.phone-icon-container svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

#ai-expert-home .call-app-payment-form {
  position: relative;
  width: 100%;
}

.call-app.condensed .selections {
  padding: 10px 0px;
}

.call-app.condensed #saved-cards .saved-card {
  width: fit-content;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .call-app.condensed #saved-cards .saved-card {
    width: calc(100% - 10px);
  }
}

.bullet {
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 5px;
}

#auth-home {
  padding-top: 50px;
  padding-bottom: 100px;
  background-color: #fff;
  width: 100%;
  height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#auth-home .step {
  width: 768px;
}
@media only screen and (max-width: 768px) {
  #auth-home .step {
    width: calc(100% - 30px);
    padding: 0 15px;
  }
}
#auth-home .step h2 {
  font-size: min(8vw, 32px);
  margin-bottom: 5px;
}
#auth-home .step input {
  display: block;
  width: calc(100% - 32px);
  padding: 10px 15px;
  font-size: min(8vw, 32px);
  border-radius: 5px;
  border: 1px solid #000;
}

#auth-home .step button {
  margin-top: 5px;
  width: 100%;
}

#auth-home .disclaimer {
  margin-top: 5px;
}

main.post-home {
  min-height: 100vh;
}

.post-home .chat-container-container {
  background-color: transparent;
}

.post-home .chat-and-send-container {
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 25px;
  width: calc(600px - 30px);
}
@media only screen and (max-width: 768px) {
  .post-home .chat-and-send-container {
    width: calc(100% - 30px);
  }
}

.post-home .chat-panel .chat-and-send-container {
  padding: 0;
  width: 100%;
}

.chat-container-container.fixed > .chat-and-send-container {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chat-and-send-container .top-banner {
  background-color: #263859;
  width: calc(100% - 50px);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding: 10px 25px;
  color: #fff;
  font-size: 16px;
}

.chat-and-send-container .top-banner h3 {
  font-size: 18px;
}

.chat-and-send-container .top-banner > .left {
  margin-right: auto;
}

.chat-and-send-container .chat-body {
  width: calc(100% - 30px);
  padding: 15px;
  padding-bottom: 0px;
}

.post-home .chat-container {
  /*
  width: 600px;
  */
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .post-home .chat-container {
    width: 100%;
  }
}

.post-home .chat-container-container {
  padding: 0;
  transition: none;
}
.post-home .chat-container-container.fixed {
  position: fixed;
  bottom: 0;
}

.post-home [placeholder]:empty:before {
  content: attr(placeholder);
  color: #333;
  font-weight: 500;
  cursor: text;
}

.post-home .chat-input-container .chat-input {
  font-size: 18px;
}

.post-home .chat-container-container .buttons {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .post-home .chat-container-container .buttons {
  }
}

.post-home .chat-space {
  margin: 15px 0;
  width: 100%;
}

.post-home .chat {
  width: 100%;
}

button.send-rectangle {
  width: 38px;
  height: 38px;
  color: #fff;
  transition: all 0.3s;
  opacity: 1;
  background-color: #000;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  border: none;
  outline: none;
  margin: 5px;
}
button.send-rectangle[disabled] {
  cursor: default;
  opacity: 0.5;
}

.chats-slider {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.3s;
  margin-bottom: 15px;
}

.chats-slider .panel {
  background-color: transparent;
}

.chats-slider .panel > .content {
  border-radius: 25px;
  width: calc(100% - 30px);
  margin: 0 15px;
  background-color: #fff;
}

.chats-slider .chat-panel {
  width: 600px;
}
@media only screen and (max-width: 768px) {
  .chats-slider .chat-panel {
    width: 100%;
  }
}

.chats-slider .chat-panel > .content {
  width: calc(100% - 60px);
  padding: 15px;
}

.panel.post {
  width: 600px;
}
@media only screen and (max-width: 768px) {
  .panel.post {
    width: 100%;
  }
}

.panel .close {
  text-align: right;
  margin-bottom: 10px;
}
.panel .close img {
  width: 12px;
}

button.a {
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  color: black;
  text-decoration: underline;
  text-decoration-style: solid;
  outline: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: none;
}

button.a-dot {
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  color: black;
  text-decoration: underline;
  text-decoration-style: dotted;
  outline: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: none;
}

button.primary {
  color: #fff;
  background-color: var(--claimyr-red);
  padding: 15px 25px;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

main#profile {
  margin-top: 85px;
  min-height: 100vh;
}

.community-post h3.explicit {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 5px;
}

main#referrer-sign-up-container {
  margin-top: 85px;
  min-height: 100vh;
}

main#not-found-home {
  margin-top: 85px;
  min-height: 100vh;
  padding-top: 32vh;
}

#not-found-home a {
  margin-top: 15px;
  padding: 8px 20px;
}

a.button-primary {
  background-color: var(--claimyr-red);
  border: none;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.paperclip {
}
.paperclip svg {
  width: auto;
  height: 20px;
}

button.transparent {
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

#ai-expert-home .uploaded-images {
  width: 768px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  padding: 0 10px;
}
@media only screen and (max-width: 768px) {
  #ai-expert-home .uploaded-images {
    width: 92%;
  }
}

#ai-expert-home #upload-image {
  padding: 0;
}

.uploaded-images > .uploaded-image {
  position: relative;
  margin: 5px 5px;
}
.uploaded-images > .uploaded-image > .image-mask {
  border-radius: 5px;
  width: 100px;
  height: 100px;
}
.uploaded-images > .uploaded-image > .image-mask > img.foreground {
  width: auto;
  height: 100px;
}
.uploaded-images > .uploaded-image > .image-mask > img.background {
  width: 100px;
  height: auto;
}

.similar-posts {
  width: calc(100% - 30px);
  margin: 30px 15px;
}

.similar-posts .similar-post {
  margin: 10px 0;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
}

.content-hub .home-phone-line-stamp-call-app-container {
  margin-top: 10px;
  background-color: transparent;
}

.content-hub .call-app {
  background-color: #fff;
  width: calc(var(--page-width) - 20px);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .content-hub .call-app {
    width: calc(100% - 20px);
  }
}

.community-home .call-app-container {
  width: 600px;
  background-color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 300;
}
@media only screen and (max-width: 768px) {
  .community-home .call-app-container {
    width: 100%;
  }
}

.community-home .call-app-container .call-app {
  width: calc(100% - 20px);
}

#sign-up-google-auth {
  margin-bottom: 15px;
}

#sign-up-google-auth button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid rgb(209 213 219);
  border-radius: 5px;
}
#sign-up-google-auth button > .icon {
  position: relative;
  top: 2px;
}
#sign-up-google-auth button > span {
  margin-left: 8px;
}

#ai-chat-logo-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 10px 0px;
}
#ai-chat-logo-container > p {
  margin-right: 5px;
  font-weight: 550;
  font-size: 16px;
}
#ai-chat-logo-container img {
  width: 30px;
}

.active-bullet {
  width: 6px;
  height: 6px;
  border-radius: 10px;
  transition: opacity 0.25s;
  background-color: #49de80;
  margin: 0px 3px;
  margin-left: 0px;
}

.flex-row {
  display: flex;
  align-items: center;
  justify-content: start;
}

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

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

.chat-icon {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  background-color: #5c87f4;
}
.chat-icon svg {
  width: 15px;
  height: 15px;
  color: #fff;
  position: relative;
  top: 1px;
}

.rotate-180 {
  transform: rotate(180deg);
}

.send-arrow svg {
  width: 15px;
  height: 15px;
}

.secure {
  background-color: #131b25;
  border-radius: 15px;
  padding: 5px 10px;
  width: 60px;
}
.lock-icon {
}
.lock-icon svg {
  width: 10px;
  height: 10px;
}

.users-helped-today {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .users-helped-today {
    flex-direction: column;
    align-items: start;
  }
}

.users-helped-today span {
  white-space: nowrap;
  margin-left: 5px;
}
@media only screen and (max-width: 768px) {
  .users-helped-today span {
    white-space: normal;
    margin-left: 0px;
  }
}

.circle-row {
  display: flex;
  align-items: center;
  justify-content: start;
}

.circle-with-letter {
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: pink;
  margin: 0 -2px;
  font-weight: 600;
}

.unsubscribe-home {
  min-height: 100vh;
}

.unsubscribe-home .card {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px;
  position: relative;
  top: -5vh;
  text-align: center;
}
.unsubscribe-home .card h1 {
}
.unsubscribe-home .card p {
}
.unsubscribe-home .card textarea {
  width: calc(100% - 20px);
  outline: none;
  resize: none;
  height: 10vh;
  border-radius: 5px;
  padding: 10px;
  display: block;
}
.unsubscribe-home .card button {
}
.unsubscribe-home .card > * {
  margin-bottom: 15px;
}
.unsubscribe-home .card > *:last-child {
  margin-bottom: 0;
}

.popup {
  top: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1000;
}
.popup > .background {
  background-color: #000;
  opacity: 0.8;
  width: 100vw;
  height: 100vh;
  position: absolute;
}
.popup > .foreground {
  position: relative;
}
.popup > .foreground > .message {
  background-color: #fff;
  padding: 15px 25px;
  border-radius: 15px;
  text-align: center;
  max-width: 30vw;
}
@media only screen and (max-width: 768px) {
  .popup > .foreground > .message {
    padding: 15px;
    max-width: 100vw;
  }
}
.popup > .foreground > .message > * {
  margin-bottom: 15px;
}
.popup > .foreground > .message > *:last-child {
  margin-bottom: 0;
}
.popup > .foreground > .message > h2 {
  margin-bottom: 20px;
}
.popup > .foreground > .message > button {
}
.popup > .foreground > .message > .gif {
}
.popup > .foreground > .message > .gif img {
  width: 100%;
}

#promo-code {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e3e3e3;
  padding: 10px 15px;
  border-radius: 5px;
}
#promo-code input {
  padding: 5px 10px;
}
#promo-code button#apply {
  margin-left: 5px;
  cursor: pointer;
  background-color: #fff;
  color: #3DA83B;
  border-color: #3DA83B;
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  transition: box-shadow 0.2s;
}
#promo-code button#apply:hover {
  box-shadow: 0px 0px 5px rgba(61, 168, 59, 0.5);
}

.call-app-confirm s {
  margin-right: 5px;
}
