* {
  /*
  font-family: Inter, -apple-system, system-ui;
  -webkit-font-smoothing: antialiased;
  */

  /*
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 
             'Segoe UI', Roboto, 'Helvetica Neue', 
             Ubuntu, Arial, sans-serif;
             */
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p, html, body, section {
  margin: 0;
}

#react-root {
  overflow-x: hidden;
  /* background-color: #f0f2f5; */
  background-color: #fff;
  padding-top: 47px; /* for fixed navbar */
}

.medium-zoom-image--opened {
  z-index: 3000;
}
.medium-zoom-overlay {
  z-index: 2999;
}
@media only screen and (max-width: 768px) {
}

nav {
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  height: 26px;
  border-bottom: 1px solid #eee;
  box-shadow: 0 0 25px -8px #999;
}
nav > a.home {
  outline: none;
}
nav > a.home > img {
  margin-left: min(5vw, 31px);
  margin-top: min(2vw, 8px);
  width: 116px;
}
nav > a.call {
  margin-left: auto;
  margin-right: 5%;
}
nav > a.call > img {
  width: 32px;
  margin-top: 10px;
}
nav .spacer {
  width: 100%;
}
nav a#call-support {
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  color: #263859;
  top: 2px;
  font-size: 24px;
  margin-right: 15px;
  font-weight: 700;
}

#show-more-posts {
  display: flex;
  justify-content: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.25s;
}
#show-more-posts.posts-loaded {
  opacity: 1;
}

#show-more-posts button {
  border-radius: 8px;
  font-size: 26px;
  width: 603px;
  height: 75px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background-color 0.42s;
  background-color: #f02849;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #show-more-posts button {
    width: 96%;
  }
}
#show-more-posts button.loading {
  background-color: #c4c4c4;
}

footer {
  background-color: #1e0735;
  padding: 72px 10px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer h1 {
  margin-top: 25px;
  font-size: min(8vw, 20px);
  line-height: 28px;
  color: #fff;
  text-align: center;
}

footer p {
  color: hsla(0, 0%, 100%, .5);
  font-size: min(7vw, 14px);
}

footer a {
  text-decoration: none;
}

#footer-top {
  width: 100%;
  max-width: 328px;
  margin-bottom: 30px;
}

#footer-top img {
  max-width: 98%;
}

#footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer-socials {
  margin-bottom: 41px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}

#footer-bottom {
  display: flex;
  margin-top: 16px;
}

#footer-bottom > div {
  margin-left: 15px;
}

#footer-bottom > div > a {
  display: flex;
  margin-bottom: 6px;
}

#footer-bottom > div > a > p {
  text-align: center;
}

header {
  display: flex;
  justify-content: center;
}

#call-your-state {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  background-image: linear-gradient(90deg,#ff6768,#5132c0);
  transition: background-color 1s cubic-bezier(.6,-.28,.735,.045), opacity 0.25s;
  width: 50%;
  padding: 25px 0px;
  border-radius: 18px;
  margin: 15px 0;
  height: 46px;
}
#call-your-state:hover {
  background-image: linear-gradient(107deg,#ff4a4b,#ff6768 25%,#5132c0 75%,#2903af);
}
@media only screen and (max-width: 768px) {
  #call-your-state {
    width: 96%;
    background-image: linear-gradient(107deg,#ff4a4b,#ff6768 25%,#5132c0 75%,#2903af);
  }
}

#call-your-state > h3 {
  font-size: min(6vw, 32px);
  margin-right: 5px;
}
#call-your-state > select {
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  outline: none;
  cursor: pointer;
  color: #fff;
  border: 1px solid hsla(0, 0%, 100%, 0.342);
  background-color: hsla(0,0%,100%,.25);
  width: 70%;
  border-radius: 6px;
  font-size: min(6vw, 32px);
  padding: 10px 0;
  padding-right: 15px;
}
#call-your-state > select > option {
  color: black;
}

#claimyr-call-anchor {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 3%;
  transition: opacity 0.5s;
  opacity: 1;
}
#claimyr-call-anchor.disabled {
  pointer-events: none;
  opacity: 0.6;
}

#phone-icon-40f040 {
  width: 36px;
}

.spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.spinner > img {
  height: 25px;
}

#dropdown-karat {
  position: absolute;
  right: 18%;
  transition: transform 0.35s, opacity 0.35s;
  opacity: 1;
}
#dropdown-karat.hidden {
  opacity: 0;
}
#round-right-karat-fff {
  width: 15px;
  transform: rotate(90deg);
}

#community-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.42s;
}
#community-header.posts-loaded {
  opacity: 1;
}
#community-header > .content {
  display: flex;
  min-width: 600px;
  width: 42%;
}
@media only screen and (max-width: 768px) {
  #community-header > .content {
    min-width: auto;
    width: 95%;
  }
}
#community-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
#community-banner > img {
  height: 65px;
}
#community-name {
  display: flex;
  align-items: center;
  color: #263859;
  font-size: min(5vw, 20px);
}

.shadow {
  position: absolute;
  width: 200%;
  height: 420px;
  box-shadow: inset 0px 7px 57px 0 #000;
  bottom: 0;
  left: -50%;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 100%;
  min-height: 100vh;
  margin-bottom: 100px;
}

#sign-up {
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.42s;
}
#sign-up.posts-loaded {
  opacity: 1;
}

#home-sign-up-slider {
  display: flex;
  color: #333;
  transition: transform 0.10s, height 0.26s;
  transform: translate(50vw);
  width: 200vw;
}
#home-sign-up-slider.sign-up-none {
}
#home-sign-up-slider.sign-up-state-select {
  transform: translate(-50vw);
  height: 110px;
}
#home-sign-up-slider > div.panel {
  display: flex;
  justify-content: center;
  align-items: start;
  min-width: 600px;
  width: 42vw;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #home-sign-up-slider > div.panel {
    min-width: auto;
    width: 100vw;
    margin: 0;
  }
}

#post-slider {
  display: flex;
  color: #333;
  opacity: 0;
  transition: transform 0.10s, opacity 0.42s, height 0.26s;
  transform: translate(250vw);
  margin-top: 15px;
  width: 600vw;
}
#post-slider.retracted {
  height: 0px !important;
}
#post-slider.expanded {
  height: fit-content !important;
}
#post-slider.posts-loaded {
  opacity: 1;
}
#post-slider.sign-up-join-community {
}
#post-slider.sign-up-full-name {
  transform: translate(150vw);
  height: 222px;
}
#post-slider.sign-up-register {
  transform: translate(50vw);
  height: 222px;
}
#post-slider.sign-up-sms-auth {
  transform: translate(-50vw);
  height: 222px;
}
#post-slider.sign-up-upload-profile-image {
  transform: translate(-150vw);
  height: fit-content;
}
#post-slider.sign-up-complete {
  height: 100px;
  transform: translate(-250vw);
}

#post-slider > div.panel {
  display: flex;
  justify-content: center;
  align-items: start;
  min-width: 600px;
  width: 42vw;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #post-slider > div.panel {
    min-width: auto;
    width: 100vw;
    margin: 0;
  }
}

#post-slider button.continue,
.post-comment-editor-with-sign-up button.continue {
  padding: 15px 0;
  font-size: min(8vw, 32px);
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #f02849;
  color: #fff;
  border-radius: 8px;
  transition: background-color 0.5s;
}
#post-slider button.continue:hover {
  background-color: #d60f30;
}

.post-comment-editor-with-sign-up > .slider {
  display: flex;
  width: 600%;
  transition: transform 0.10s;
}
.post-comment-editor-with-sign-up > .slider > .panel {
  display: flex;
  justify-content: center;
  width: 100%;
}
.post-comment-editor-with-sign-up > .sign-up-join-community {
}
.post-comment-editor-with-sign-up > .sign-up-full-name {
  transform: translate(-16.67%);
  height: 222px;
}
.post-comment-editor-with-sign-up > .sign-up-register {
  transform: translate(-33.33%);
  height: 222px;
}
.post-comment-editor-with-sign-up > .sign-up-sms-auth {
  transform: translate(-50%);
  height: 222px;
}
.post-comment-editor-with-sign-up > .sign-up-upload-profile-image {
  transform: translate(-66.67%);
  height: fit-content;
}
.post-comment-editor-with-sign-up > .sign-up-complete {
  transform: translate(-83.33%);
}

#sign-up-join-community {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sign-up-join-community > button {
  color: #fff;
  background-color: #f02849;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: min(8vw, 32px);
  border-radius: 8px;
  padding: 15px 0;
  min-width: 600px;
  width: 42%;
  transition: background-color 0.25s;
  height: 100px;
}
@media only screen and (max-width: 768px) {
  #sign-up-join-community > button {
    min-width: auto;
    width: 88%;
  }
}
#sign-up-join-community > button:hover {
  background-color: #d60f30;
}
#sign-up-join-community > button.disabled {
  background-color: #999;
}

#sign-up-full-name,
#sign-up-phone-number,
#sign-up-sms-auth-code,
#sign-up-profile-image
{
  display: flex;
  flex-direction: column;
  visibility: visible;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #sign-up-full-name,
  #sign-up-phone-number,
  #sign-up-sms-auth-code,
  #sign-up-profile-image {
    width: 96%;
  }
}

.post-comment-editor-with-signup #sign-up-full-name,
.post-comment-editor-with-signup #sign-up-phone-number,
.post-comment-editor-with-signup #sign-up-sms-auth-code,
.post-comment-editor-with-signup #sign-up-profile-image
{
  display: flex;
  flex-direction: column;
  visibility: visible;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #sign-up-full-name,
  #sign-up-phone-number,
  #sign-up-sms-auth-code,
  #sign-up-profile-image {
  }
}

#sign-up-full-name > input,
#sign-up-phone-number > input,
#sign-up-sms-auth-code > input
{
  outline: none;
  border: none;
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 15px 3%;
  margin: 10px 0;
  font-size: min(8vw, 32px);
}
#sign-up-full-name.hidden,
#sign-up-phone-number.hidden,
#sign-up-sms-auth-code.hidden,
#sign-up-profile-image.hidden
{
  visibility: hidden;
  transition: visibility 0.25s;
  height: 0px
}

#sign-up-profile-image {
  transition: height 0.26s;
  display: flex;
  flex-direction: column;
  align-items: center;
  visibility: visible;
  height: fit-content;
  margin-bottom: 25px;
}
/*
#sign-up-profile-image.visible {
  height: fit-content;
  visibility: hidden;
}
#sign-up-profile-image.hidden {
  height: 0px;
  visibility: hidden;
}
*/

#sign-up-profile-image-mask {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #ccc;
  z-index: 1;
  margin-top: 8px;
  border-radius: 500px;
  width: 100px;
  height: 100px;
}
#sign-up-profile-image > input {
  margin-top: 5px;
}
#sign-up-profile-image img {
  position: relative;
}
#sign-up-profile-image img.foreground {
  z-index: 0;
  width: auto;
  height: 100px;
}
#sign-up-profile-image img.background {
  position: absolute;
  filter: blur(8px);
  z-index: -1;
  width: auto;
  height: 150px;
}
#sign-up-profile-image button.continue {
  margin-top: 15px;
  width: 100%;
  border-radius: 15px;
}

#post-editor, #faux-post-editor {
  position: relative;
  width: 100%;
}
#faux-post-editor {
  top: -1px;
}
@media only screen and (max-width: 768px) {
  #post-editor, #faux-post-editor {
    width: 95%;
  }
}
#post-editor > .row-1, #faux-post-editor > .row-1 {
  margin-bottom: 15px;
}
#post-editor > .row-1, #faux-post-editor > .row-1,
#post-editor > .row-2, #faux-post-editor > .row-2 {
  width: 100%;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  justify-content: center;
  position: relative;
}
#post-editor > .row-2, #faux-post-editor > .row-2 {
  margin-top: 10px;
  transition: opacity 0.25s;
  opacity: 1;
}
#post-editor > .row-2.expanded, #faux-post-editor > .row-2.expanded {
  opacity: 1;
}

#post-editor-content-wrapper, #faux-post-editor-content-wrapper {
  position: relative;
}

#post-editor-action-bar, #faux-post-editor-action-bar {
  display: flex;
  /*
  grid-template-columns: 43px 80% 80px;
  max-width: 67vw;
  */
}

#post-editor-action-bar > .spacer, #faux-post-editor-action-bar > .spacer {
  width: 100%;
}

#create-post, #faux-create-post {
  color: #fff;
  background-color: #263859;
  border: none;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  font-size: min(6vw, 15px);
  transition: background-color 0.42s;
  padding: 0px 15px;
  border-radius: 15px;
  height: 30px;
  font-size: min(8vw, 16px);
  width: 32%;
}
#create-post:hover, #faux-create-post:hover {
  background-color: #172235;
}
#create-post[disabled], #faux-create-post[disabled],
#create-post[disabled]:hover, #faux-create-post[disabled]:hover {
  cursor: default;
  background-color: #c4c4c4;
}

#post-editor-hint, #faux-post-editor-hint {
  position: absolute;
  color: #999;
  line-height: 1em;
  z-index: 0;
  top: 11px;
  left: 3.1%;
  opacity: 1;
}
#post-editor-hint.visible, #faux-post-editor-hint.visible {
  opacity: 1;
}
#post-editor-hint.hidden, #faux-post-editor-hint.hidden {
  opacity: 0;
}

#post-editor-content, #faux-post-editor-content {
  position: relative;
  z-index: 1;
  outline: none;
  overflow: scroll;
  transition: min-height 0.25s;
  padding: 11px 3%;
  border-radius: 8px;
  min-height: 16px;
  width: 94%;
  margin-bottom: 10px;
  max-width: 42vw;
}
@media only screen and (max-width: 768px) {
  #post-editor-content, #faux-post-editor-content {
    max-width: 100vw;
  }
}
#post-editor-content.expanded, #faux-post-editor-content.expanded {
  min-height: 111px;
}

#post-editor-album, #faux-post-editor-album {
  display: flex;
  flex-wrap: wrap;
  width: 125%;
}
#post-editor-album .uploaded-image, #faux-post-editor-album .uploaded-image {
  position: relative;
  margin-right: 15px;
}
#post-editor-album .image-mask, #faux-post-editor-album .image-mask {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 8px !important;
  width: 150px !important;
  height: 150px !important;
  margin-bottom: 25px;
}
#post-editor-album .image-mask > img.foreground, #faux-post-editor-album .image-mask > img.foreground {
  height: auto !important;
  width: 100% !important;
}
#post-editor-album .image-mask > img.background, #faux-post-editor-album .image-mask > img.background {
  height: auto !important;
  width: 150% !important;
  position: absolute;
  z-index: -1;
  filter: blur(8px);
}

#post-editor-album button.x, #faux-post-editor-album button.x {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c4c4c4;
  outline: none;
  cursor: pointer;
  border: 3px solid #fff;
  right: -9px;
  top: -7px;
  padding: 9px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  z-index: 1;
}
#post-editor-album button.x > img, #faux-post-editor-album button.x > img {
  width: 12px;
  height: 12px;
}

#profile-image {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #ccc;
  z-index: 1;
  border-radius: 500px;
  width: 50px;
  height: 50px;
}
#profile-image > img
{
  position: relative;
  width: auto;
}
#profile-image > img.foreground {
  height: 50px;
  z-index: 0;
}
#profile-image > img.background {
  position: absolute;
  filter: blur(8px);
  height: 75px;
  z-index: -1;
}
#profile .edit-image {
  height: 100%;
  position: absolute;
  width: 100%;
}
#profile .edit-image.hidden {
  display: none;
}
#profile #profile-image-edit {
  display: none;
}
#profile label {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
#profile a.edit-headline {
  color: #999;
  font-size: 0.8rem;
  margin-left: 0.25rem;
}
#profile p.edit-headline {
  cursor: pointer;
}
#profile span.edit-headline {
  color: #999;
}
#profile span.edit-headline:hover {
  text-decoration: underline;
}
#profile .edit-headline .edit-icon {
  height: 0.75rem;
  opacity: 0.5;
}
#profile .edit-image .edit-icon {
  height: 3rem;
  filter: invert();
  opacity: 0.5;
}

#upload-image, #faux-upload-image {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 0;
  padding-left: 8px;
  margin: 0;
  transition: opacity 0.42s;
  opacity: 1;
  z-index: 2;
}
#upload-image.reply, #faux-upload-image.reply {
  margin-right: 8px;
}
#upload-image.expanded, #faux-upload-image.expanded {
  opacity: 1;
}
#upload-image[disabled], #faux-upload-image[disabled] {
  filter: greyscale(0);
  opacity: 0.2;
  cursor: not-allowed;
}
#upload-image > img, #faux-upload-image > img {
  width: 36px;
}
#upload-image > input, #faux-upload-image > input {
  display: none;
}

#community-posts .image-mask,
#home-community-posts .image-mask {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #ccc;
  z-index: 1;
  border-radius: 500px;
  min-width: 50px;
  min-height: 50px;
  width: 50px;
  height: 50px;
}
#home-community-posts .comment-comment-editor > .image-mask,
#community-posts .comment-comment-editor > .image-mask {
  width: 33px;
  height: 33px;
}

#home-community-posts .image-mask > img.foreground,
#community-posts .image-mask > img.foreground {
  z-index: 0;
  height: 50px;
  width: auto;
}
#home-community-posts .image-mask > img.background,
#community-posts .image-mask > img.background {
  width: 150%;
  position: absolute;
  z-index: -1;
  filter: blur(8px);
}

#home-community-posts .post-with-comment-editor,
#community-posts .post-with-comment-editor {
  width: 100%;
}

#profile-image {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #ccc;
  z-index: 1;
  border-radius: 500px;
  width: 50px;
  height: 50px;
}
#profile-image > img
{
  position: relative;
  width: auto;
}
#profile-image > img.foreground {
  height: 50px;
  z-index: 0;
}
#profile-image > img.background {
  position: absolute;
  filter: blur(8px);
  height: 75px;
  z-index: -1;
}

#state-select {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.42s;
  width: 100%;
}
#state-select.posts-loaded {
  opacity: 1;
}
#state-select select {
  font-size: 27px;
  font-weight: 600;
  height: 100px;
  width: 604px;
  padding-left: min(5vw, 25px);
  border: 1px solid #f02849;
  border-radius: 6px;
  background-color: #f02849;
  color: #fff;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}
@media only screen and (max-width: 768px) {
  #state-select select {
    width: 100%;
  }
}
#state-select select > option {
  background-color: #fff;
  color: black;
}
#state-select img.drop-down-karat {
  position: absolute;
  width: 12px;
}

#home-community-posts,
#community-posts {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.42s;
  opacity: 0;
  min-width: 600px;
  width: 42%;
}
@media only screen and (max-width: 768px) {
  #home-community-posts,
  #community-posts {
    min-width: auto;
    width: 100%;
  }
}
#home-community-posts.posts-loaded,
#community-posts.posts-loaded {
  opacity: 1;
}

.community-post {
  padding-top: 15px;
  border-radius: 3px;
  width: 100%;
}
.community-post > .header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 15px;
}
.community-post > .header > a > .image-mask {
  margin-right: 10px;
}
.community-post > .content {
  padding-left: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e4e4e4;
  white-space: pre-wrap;
  word-break: break-word;
}
.moderator-remove {
  margin: auto;
  margin-bottom: -1.2rem;
  text-align: right;
  width: 95%;
}
.moderator-remove > button {
  position: relative;
  background-color: transparent;
  border: none;
  color: red;
  cursor: pointer;
  font-size: 0.8rem;
  height: 1rem;
  margin: 0;
  padding: 0;
}

.community-post > .media {
}
.community-post > .media.single-panel {
  min-height: 25vh;
}
.community-post > .media.multi-panel {
  min-height: 25vh;
}
.community-post > .media > img {
  width: 100%;
}

.community-post > .comments {
}
.community-post > .comments > .comment {
  padding-top: 15px;
  padding-left: 15px;
}
.community-post > .comments > .comment > .header {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
}
.community-post > .comments > .comment > .header > a > .image-mask {
  margin-right: 10px;
  margin-top: 8px;
}
.community-post > .comments > .comment .content-wrapper {
  max-width: 81%;
}
.community-post > .comments > .comment .info-text {
  margin-left: 10px;
  margin-top: 5px;
}
.community-post > .comments > .comment .content {
  background-color: #f7f7f7;
  padding: 10px 15px;
  border-radius: 25px;
  max-width: 100%;
}
.community-post > .comments > .comment .content > h3 {
  white-space: nowrap;
}
.community-post > .comments > .comment .content > p {
  white-space: pre-wrap;
  word-break: break-word;
}

.community-post > .comments .comments > .comment > .header > .content {
  background-color: #f7f7f7;
  padding: 8px 12px;
  border-radius: 25px;
}
.community-post > .comments .comments > .comment > .header > .content > p {
  white-space: pre-wrap;
}
.community-post > .comments .comments > .comment > .header {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
}
.community-post > .comments .comments {
  padding-left: 65px;
}
.community-post > .comments .comments > .comment > .header > a > .image-mask {
  width: 33px !important;
  height: 33px !important;
  margin-right: 10px;
  margin-top: 8px;
}
.community-post > .comments .comments > .comment > .header > .image-mask > img.foreground {
  z-index: 1;
  width: 100%;
}
.community-post > .comments .comments > .comment > .header > .image-mask > img.background {
  position: absolute;
  filter: blur(8px);
  z-index: 0;
  width: auto;
  height: 150%;
}
.community-post > .comments > .comment > .media {
  width: 60%;
  margin-left: 9%;
  margin-bottom: 10px;
}
.community-post > .comments .comments > .comment > .media {
  width: 60%;
  margin-left: 12%;
  margin-bottom: 10px;
}
.community-post a.profile-link,
.community-post a.community-link {
  color: #000;
  text-decoration: none;
}
.community-post a.profile-link:hover,
.community-post a.community-link:hover {
  text-decoration: underline;
}
.community-post .header > .profile-link > .image-mask > .foreground:hover {
  zoom: 110%;
}
.community-post a.profile-link.secondary {
  color: #999;
}
.community-post a.profile-link.secondary > h3 {
  font-weight: 500;
}

.info-text h3, .info-text p {
  margin-bottom: 3px;
}
.info-text a {
  text-decoration: none;
}
.info-text a:hover {
  text-decoration: underline;
  text-decoration-color: #999;
}
.info-text .relative-time {
  color: #999;
}
.info-text .posted-to-arrow {
}
.info-text .posted-to-arrow > img {
  width: 12px;
}

.photo-album {
  display: grid;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.42s;
}
.photo-album.ready {
  opacity: 1;
}

.photo-album .panel {
  position: relative;
}
.photo-album img.foreground {
  z-index: 1;
  cursor: zoom-in;
}
.photo-album img.background {
  position: absolute;
  filter: blur(8px);
  z-index: 0;
  width: auto;
  height: 150%;
  cursor: default;
}
.photo-album > .panel.width-primary > img.foreground {
  height: auto;
  width: 100%;
}
.photo-album > .panel.height-primary > img.foreground {
  height: auto;
  width: 100%;
  /*
  height: 100%;
  width: auto;
  */
}

.photo-album.frame-0 {
  height: 0px;
}
.photo-album.frame-1 {
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  height: fit-content;
}
.photo-album.frame-1 > .panel {
  max-height: 50vh;
}

.photo-album.frame-2.width-primary {
  grid-template-columns: 100%;
  grid-template-rows: 50% 50%;
}
.photo-album.frame-2.height-primary {
  grid-template-columns: 50% 50%;
}
.photo-album.frame-2 > .panel {
  max-height: 25vh;
}

.photo-album.frame-3 {
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
}
.photo-album.frame-3 > .panel.index-0 {
  grid-column-start: 1;
  grid-column-end: 3;
}
.photo-album.frame-3 > .panel.index-1 {
  grid-column-start: 1;
  grid-column-end: 2;
}
.photo-album.frame-3 > .panel.index-2 {
  grid-column-start: 2;
  grid-column-end: 3;
}
.photo-album.frame-3 > .panel {
  max-height: 25vh;
}

.photo-album.frame-4 > {
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
}
.photo-album.frame-4 > .panel.index-0,
.photo-album.frame-4 > .panel.index-2
{
  grid-column-start: 1;
  grid-column-end: 2
}
.photo-album.frame-4 > .panel.index-1,
.photo-album.frame-4 > .panel.index-3
{
  grid-column-start: 2;
  grid-column-end: 3;
}
.photo-album.frame-4 > .panel {
  max-height: 25vh;
}

.photo-album.frame-5 > .panel.index-0 {
  grid-column-start: 1;
  grid-column-end: 4;
}
.photo-album.frame-5 > .panel.index-1 {
  grid-column-start: 4;
  grid-column-end: 7;
}
.photo-album.frame-5 > .panel.index-2 {
  grid-column-start: 1;
  grid-column-end: 3;
}
.photo-album.frame-5 > .panel.index-3 {
  grid-column-start: 3;
  grid-column-end: 5;
}
.photo-album.frame-5 > .panel.index-4 {
  grid-column-start: 5;
  grid-column-end: 7;
}
.photo-album.frame-5 > .panel {
  max-height: 25vh;
}

.photo-album > .panel {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.post-with-comment-editor {
  border: 1px solid #e4e4e4;
  margin-bottom: 15px;
}

.post-comment-editor-content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 7px;
}

.post-comment-editor {
  height: fit-content;
  width: 98%;
  padding-left: 2%;
  padding-top: 10px;
  margin-bottom: 10px;
  transition: opacity 0.42s, height 0.42s;
  opacity: 1;
}
.post-comment-editor[hidden] {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
}
.post-comment-editor .image-mask > img.foreground {
  width: 100%;
}
.post-comment-editor .image-mask > img.background {
  width: 150%;
  position: absolute;
  z-index: -1;
  filter: blur(8px);
}

.post-comment-editor > .input-bar,
.comment-comment-editor > .input-bar {
  display: flex;
  align-items: center;
  height: fit-content;
}

.post-comment-editor-hint {
  position: absolute;
  color: #999;
  line-height: 1em;
  z-index: 0;
  top: 15px;
  left: 3.9%;
  opacity: 1;
}
.post-comment-editor-hint.hidden {
  opacity: 0;
}

.post-comment-editor-content {
  position: relative;
  z-index: 1;
  outline: none;
  overflow: scroll;
  white-space: pre-wrap;
  border: 1px solid #e4e4e4;
  transition: min-height 0.25s;
  padding: 11px 3.6%;
  padding-top: 15px;
  padding-right: 10%;
  border-radius: 25px;
  min-height: 17px;
  width: 90%;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .post-comment-editor-content {
    max-width: 100vw;
  }
}

.post-comment-editor-send-button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  background-color: #263859;
  padding: 0;
  right: 57px;
  bottom: 12px;
  z-index: 1;
  width: 33px;
  height: 33px;
  border-radius: 25px;
  transition: background-color 0.42s;
}
.post-comment-editor-send-button[disabled] {
  cursor: default;
  background-color: #c4c4c4;
}
.post-comment-editor-send-button.faded {
  background-color: #fff;
}
.post-comment-editor-send-button > img {
  width: 33px;
  height: 33px;
  transition: filter 0.42s;
  filter: greyscale(0);
}
.post-comment-editor-send-button.faded {
  cursor: default;
}
.post-comment-editor-send-button.faded > img {
  cursor: default;
}

.comment-comment-editor-content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 90%;
  margin-left: 2%;
  margin-top: 10px;
}

.comment-comment-editor {
  margin-bottom: 10px;
  transition: opacity 0.42s, height 0.42s;
  opacity: 1;
}
.comment-comment-editor[hidden] {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
}
.comment-comment-editor > .input-bar {
  display: flex;
  align-items: center;
  height: fit-content;
}
.comment-comment-editor .image-mask > img.foreground {
  width: 100%;
}
.comment-comment-editor .image-mask > img.background {
  width: 150%;
  position: absolute;
  z-index: -1;
  filter: blur(8px);
}

.comment-comment-editor > #post-editor-album,
.post-comment-editor > #post-editor-album {
  padding-left: 55px;
  width: 92%;
  margin-top: 8px;
}

.comment-comment-editor-hint {
  position: absolute;
  color: #999;
  line-height: 1em;
  z-index: 0;
  top: 12px;
  left: 4.2%;
  opacity: 1;
}
.comment-comment-editor-hint.hidden {
  opacity: 0;
}

.comment-comment-editor-content {
  position: relative;
  z-index: 1;
  outline: none;
  overflow: scroll;
  white-space: pre-wrap;
  border: 1px solid #e4e4e4;
  transition: min-height 0.25s;
  padding: 11px 3.6%;
  padding-right: 6%;
  border-radius: 25px;
  min-height: 17px;
  width: 90%;
  margin-bottom: 5px;
  max-width: 42vw;
}
@media only screen and (max-width: 768px) {
  .comment-comment-editor-content {
    max-width: 100vw;
  }
}

.comment-comment-editor-send-button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  background-color: #263859;
  padding: 0;
  right: 57px;
  bottom: 9px;
  z-index: 1;
  width: 33px;
  height: 33px;
  border-radius: 25px;
  transition: background-color 0.42s;
}
.comment-comment-editor-send-button[disabled] {
  cursor: default;
  background-color: #c4c4c4;
}
.comment-comment-editor-send-button.faded {
  background-color: #fff;
}
.comment-comment-editor-send-button > img {
  width: 33px;
  height: 33px;
  transition: filter 0.42s;
  filter: greyscale(0);
}
.comment-comment-editor-send-button.faded {
  cursor: default;
}
.comment-comment-editor-send-button.faded > img {
  cursor: default;
}

.community-post > .view-previous-comments {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: min(8vw, 16px);
  padding-top: 15px;
  margin-left: 15px;
}
.comment > .view-previous-comments {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: min(8vw, 16px);
  margin-left: 65px;
  margin-bottom: 10px;
}

.engagement {
  text-align: right;
  margin-top: 10px;
  padding-bottom: 5px;
  padding-right: 10px;
  border-bottom: 1px solid #e4e4e4;
}

#call-app {
  width: 100%;
}

#closed-today-warning {
  margin-top: 10px;
  font-size: min(7vw, 14px);
}

#payment-slider {
  display: flex;
  width: 300vw;
  transform: translate(250vw);
  align-items: start;
  transition: transform 0.1s, height 0.25s ease, opacity 0.25s;
  opacity: 0;
}
#payment-slider.hidden {
  display: none;
}
#payment-slider.posts-loaded {
  opacity: 1;
}
#payment-slider.payment-none {
  height: 111px;
}

#payment-slider > .panel {
  position: relative;
  z-index: -1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#payment-slider.payment-rendering {
}
#payment-slider.payment-visible {
  transform: translate(150vw);
}
#payment-slider.payment-success {
  transform: translate(50vw);
}

#place-call-now, #faux-place-call-now {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#place-call-now > button, #faux-place-call-now > button {
  outline: none;
  cursor: pointer;
  background-color: rgb(0, 209, 0);
  box-shadow: 0 0 25px -8px #999;
  border: 1px solid hsla(0, 0%, 100%, 0.342);
  color: #fff;
  border-radius: 7px;
  padding-top: 32px;
  padding-bottom: 32px;
  min-width: 600px;
  width: 42%;
  font-size: min(7vw, 26px);
  transition: background-color 0.42s;
  white-space: nowrap;
}
#place-call-now > button.coming-soon,
#faux-place-call-now > button.coming-soon
{
  background-color: #c4c4c4;
}
#place-call-now > button.coming-soon:hover,
#faux-place-call-now > button.coming-soon:hover
{
  background-color: #c4c4c4;
}
#place-call-now > button[disabled],
#faux-place-call-now > button[disabled]
{
  pointer-events: none;
}

#faux-place-call-now > button {
  width: 100%;
  margin-bottom: 10px;
}
#place-call-now > button.payment-none {
  opacity: 1;
}
#place-call-now > button.payment-rendering,
#place-call-now > button.payment-visible,
#place-call-now > button.payment-success {
  opacity: 0;
}
#place-call-now > button:hover, #faux-place-call-now > button:hover {
  border: 1px solid white;
  background-color: rgb(0, 238, 0);
}
#place-call-now > button img#phone-icon-fff, #faux-place-call-now > button img#phone-icon-fff {
  width: 32px;
  margin-left: 2%;
  margin-bottom: -5px;
}

@media only screen and (max-width: 768px) {
  #place-call-now, #faux-place-call-now {
    width: 96%;
    padding: 0 2%;
  }
  #place-call-now > button, #faux-place-call-now > button {
    min-width: auto;
    width: 100%;
  }
}
#place-call-now > button[disabled] {
  background-color: #c4c4c4;
  cursor: default;
  pointer-events: none;
}

#payment-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  width: 37.8%;
  margin-top: 22px;
  margin-bottom: 18px;
  padding: 17px 2%;
  border-radius: 25px;
  box-shadow: 0 0 20px -12px #8f2df0;
  transition: opacity 0.25s;
}
#payment-form > h1 {
  color: #263859;
  text-align: center;
}
#payment-form > div#payment-billing-details {
  position: relative;
  right: -1.9%;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #payment-form {
    width: 96%;
  }
}

#payment-form.payment-none,
#payment-form.payment-rendering,
#payment-form.payment-visible {
  opacity: 1;
}
#payment-form.payment-success {
  opacity: 0;
}

#payment-form-submit-button {
  font-size: min(7vw, 14px);
  color: lightgrey;
  background-color: #263859;
  padding: 12px 2%;
  border-radius: 5px;
  border: none;
  box-shadow: 0 6px 20px -8px #3c5ccf;
  width: 96%;
  cursor: pointer;
}

#payment-form-submit-button.payment-in-progress,
#payment-form-submit-button.payment-success {
  color: #000;
  cursor: default;
  box-shadow: none;
  padding: 7px 10px;
}

#payment-form-submit-button > img {
  width: 25px;
  height: 25px;
}

#stripe-card {
  border: 1px solid lightgrey;
  width: 91.8%;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 10px 2%;
}

.payment-input-container {
  width: 100%;
  margin-bottom: 15px;
  margin-top: 15px;
}
.payment-input {
  padding: 10px 2%;
  border: 1px solid lightgrey;
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  width: 92%;
}
.payment-input::placeholder {
  font-size: 16px;
  font-weight: 500;
}

#payment-success-container {
  display: flex;
  align-items: start;
  justify-content: center;
  width: 100vw;
  margin-top: 139px;
}

#payment-success {
  color: #263859;
  /* background-color: #f7f7f7; */
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border: 1px solid #ccc; */
  border-radius: 25px;
  min-width: 600px;
  width: 42%;
  padding-top: 24px;
  padding-bottom: 24px;
  margin-bottom: 36px;
  margin-top: 36px;
}
#payment-success > button {
  align-self: flex-end;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}
#payment-success > button > img {
  width: 18px;
}
#payment-success > img {
  width: 100px;
  height: 100px;
}
#payment-success > p {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  #payment-success {
    min-width: auto;
    width: 100%;
  }
  #payment-success > p {
    padding: 0 10px;
  }
}

#powered-by-stripe {
  display: flex;
  width: 100%;
  padding-top: 10px;
  padding-right: 5%;
}
#powered-by-stripe > .spacer {
  width: 80%;
}
#powered-by-stripe > img {
  width: 111px;
}

#profile > * {
  min-width: 600px;
  width: 42%;
}
@media only screen and (max-width: 768px) {
  #profile > * {
    min-width: auto;
    width: 100%;
  }
}
#post-header {
  margin-top: 5px;
  width: 592px;
}
@media only screen and (max-width: 768px) {
  #post-header {
    width: 100%;
    padding-left: 5%;
  }
}
#profile-header > div:first-child {
  color: red;
  display: flex;
  font-size: 0.8rem;
  justify-content: space-between;
  margin-top: 0.5rem;
}
#profile-header > div:first-child > button {
  background-color: transparent;
  border: none;
  color: red;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
#profile-header > div:first-child > button:hover {
  text-decoration: underline;
}
#profile-header > div > a.clear-profile, #post-header > a {
 color: #666;
 text-decoration: none;
}
#profile-header > div > a.clear-profile:hover, #post-header > a:hover {
  color: #333;
}
#profile-header > .content {
  display: flex;
  margin: 1.5rem 0;
}
@media only screen and (max-width: 768px) {
  #profile-header > .content {
    padding: 0 1rem;
  }
}
#profile-header > .content > .info {
  align-items: flex-start;
  flex: auto;
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
  margin-top: 40px;
  width: calc(100% - 120px - 1rem);
}
#profile-header > .content > .info > h2 + p,
#profile-header > .content > .info > h2 + input {
  margin-top: 0.5rem;
}
#profile-header > .content > .info > h2 + p {
  white-space: pre-wrap;
  word-break: break-word;
}

#profile-header > .content > .info > h2 + input {
  border: 1px solid #e4e4e4;
  border-radius: 1.5rem;
  box-sizing: border-box;
  display: block;
  outline: none;
  padding: 1rem;
  width: 100%;
}
#profile-header .image-mask {
  display: flex;
  flex: 0 0 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #ccc;
  z-index: 1;
  border-radius: 500px;
  min-width: 50px;
  min-height: 50px;
  width: 120px;
  height: 120px;
}
#profile-header .image-mask > img.foreground {
  z-index: 0;
  height: 120px;
  width: auto;
}
#profile-header .image-mask > img.background {
  width: 150%;
  position: absolute;
  z-index: -1;
  filter: blur(8px);
}

.profile-headline-editor-content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.profile-headline-editor {
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  margin-bottom: 10px;
  transition: opacity 0.42s, height 0.42s;
  opacity: 1;
}
.profile-headline-editor[hidden] {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
}

.profile-headline-editor > .input-bar,
.comment-comment-editor > .input-bar {
  display: flex;
  align-items: center;
  height: fit-content;
  width: 100%;
}

.profile-headline-editor-hint {
  position: absolute;
  color: #999;
  line-height: 1em;
  z-index: 0;
  top: 15px;
  left: 3.9%;
  opacity: 1;
}
.profile-headline-editor-hint.hidden {
  opacity: 0;
}

.profile-headline-editor-content {
  position: relative;
  z-index: 1;
  outline: none;
  overflow: scroll;
  white-space: pre-wrap;
  border: 1px solid #e4e4e4;
  transition: min-height 0.25s;
  padding: 11px 3.6%;
  padding-top: 15px;
  padding-right: 100px;
  border-radius: 25px;
  min-height: 17px;
  width: 90%;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .profile-headline-editor-content {
    max-width: 100vw;
  }
}

.profile-headline-editor-send-button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  background-color: #263859;
  padding: 0;
  right: 42px;
  bottom: 12px;
  z-index: 1;
  width: 33px;
  height: 33px;
  border-radius: 25px;
  transition: background-color 0.42s;
}

.profile-headline-editor-send-button[disabled] {
  cursor: default;
  background-color: #c4c4c4;
}
.profile-headline-editor-send-button.faded {
  background-color: #fff;
}
.profile-headline-editor-send-button > img {
  width: 33px;
  height: 33px;
  transition: filter 0.42s;
  filter: greyscale(0);
}

.profile-headline-editor-send-button.faded {
  cursor: default;
}
.profile-headline-editor-send-button.faded > img {
  cursor: default;
}

.profile-headline-editor-cancel-button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  background-color: #dc3545;
  padding: 0;
  right: 7px;
  bottom: 12px;
  z-index: 1;
  width: 33px;
  height: 33px;
  border-radius: 25px;
  transition: background-color 0.42s;
}

.profile-headline-editor-cancel-button[disabled] {
  cursor: default;
  background-color: #c4c4c4;
}
.profile-headline-editor-cancel-button.faded {
  background-color: #fff;
}
.profile-headline-editor-cancel-button > img {
  width: 25px;
  height: 25px;
  transition: filter 0.42s;
  filter: invert();
}

.profile-headline-editor-cancel-button.faded {
  cursor: default;
}
.profile-headline-editor-cancel-button.faded > img {
  cursor: default;
}

.activity {
  border: 1px solid #e4e4e4;
}
.activity + .activity {
  margin-top: 1rem;
}
.activity a {
  color: #999;
}
.activity .header {
  color: #999;
  font-size: 0.8rem;
}
.activity .post {
  padding: 1rem;
}
.activity .content {
  color: #000;
  margin-top: 0.5rem;
  text-decoration: none;
  white-space: pre-wrap;
  word-break: break-word;
}
.activity .content a {
  color: #000;
  text-decoration: none;
}
.activity .comment {
  border-top: 1px solid #e4e4e4;
}
.activity .comment .content-wrapper {
  border-left: 2px dashed #e4e4e4;
  margin: 1rem;
  padding: 0.5rem 1rem;
}
.activity .comment .comment-comment .content-wrapper {
  margin-bottom: -0.5rem;
  margin-left: 0;
}
.activity .comment .comment-comment .content-wrapper .content {
  background-color: #f7f7f7;
  border-radius: 25px;
  display: inline-block;
  padding: 10px 15px;
}
.activity .comment .comment-comment .content-wrapper .content h3 {
  margin-bottom: 0.25rem;
}
.activity .comment .comment-comment .content-wrapper .relative-time {
  color: #999;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  margin-left: 1rem;
}
