/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.arrow-container {
  padding: 0;
  margin: 0;
  margin-top: -5px;
  padding-left: 8.33333333px;
}
.arrow-container.no-padding {
  padding-left: 0;
}
.arrow-container .arrow {
  border: solid #374250;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
}
.arrow-container .arrow.white {
  border-color: #fff;
}
.arrow-container .arrow-down {
  transform: rotate(45deg);
}
.arrow-container .arrow-down.large {
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg) scale(1.8);
}
.arrow-container .arrow-left {
  border: solid #374250;
  border-width: 0 2px 2px 0;
  transform: rotate(135deg);
  margin-right: 8px;
}

.inline-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: #993df3;
  display: inline-block;
  margin-right: 0.4rem;
}
.inline-avatar div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
}
.inline-avatar div span {
  font-family: 'Futura PT W01 Medium';
  color: white;
  font-size: 0.9em;
}
.avatar {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid white;
  position: relative;
  display: inline-flex;
  margin: 0;
  -webkit-transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}
.avatar > span {
  font-family: 'Futura PT W01 Medium';
  color: white;
  font-size: 0.9em;
  text-transform: uppercase;
}
.avatar > div {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  position: absolute;
  border-radius: 50%;
}
.avatar.hidden {
  display: none;
}
.avatar.xsmall {
  font-size: 0.9rem;
}
.avatar.small {
  font-size: 1.2rem;
}
.avatar.large {
  font-size: 2rem;
}
.avatar.xlarge {
  font-size: 3rem;
}
.avatar.orange {
  background-color: #f3773d;
}
.avatar.red {
  background-color: #FF413C;
}
.avatar.yellow {
  background-color: #f3e300;
}
.avatar.purple {
  background-color: #993df3;
}
.avatar.blue {
  background-color: #00bfff;
}
.avatar.brown {
  background-color: #d35419;
}
.avatar.green {
  background-color: #83d932;
}
.avatars .avatar {
  margin-right: -0.5em;
}
.avatars .avatar:last-child {
  margin-right: 0;
}

html {
  height: 100%;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  font-size: 14px;
  color: #1c365d;
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fbfbfc;
}
button {
  outline: none;
}
.app {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.btn,
input[type=submit],
button {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1rem;
  text-decoration: none;
  background-color: #00bfff;
  border-radius: 30px;
  border: none;
  width: auto;
  padding: 0.85rem 2.2rem;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .btn,
  input[type=submit],
  button {
    padding: 1.25rem 2.2rem;
  }
}
.btn:hover,
input[type=submit]:hover,
button:hover {
  border-color: #83d932;
  background-color: #83d932;
}
.btn:active,
input[type=submit]:active,
button:active {
  color: #fff;
  border-color: #83d932;
  background-color: #00bfff;
  -webkit-transform: translate(0, 2px);
  -ms-transform: translate(0, 2px);
  transform: translate(0, 2px);
}
.btn[disabled],
input[type=submit][disabled],
button[disabled] {
  opacity: .2;
}
.btn.btn-primary,
input[type=submit].btn-primary,
button.btn-primary {
  background-color: #00bfff;
  color: #fff;
  text-transform: uppercase;
  min-width: 235px;
}
.btn.btn-primary:hover,
input[type=submit].btn-primary:hover,
button.btn-primary:hover {
  background-color: #83d932;
}
.btn.btn-primary:active,
input[type=submit].btn-primary:active,
button.btn-primary:active {
  background-color: #83d932;
  border-color: transparent;
}
.btn.btn-primary:disabled,
input[type=submit].btn-primary:disabled,
button.btn-primary:disabled {
  background-color: #00bfff;
  border-color: transparent;
}
.btn.btn-secondary,
input[type=submit].btn-secondary,
button.btn-secondary {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 0.85rem;
  line-height: 0.85rem;
  padding: 0.75rem 1.8rem;
  background-color: #1c365d;
  color: #fff;
  min-width: none;
  text-transform: none;
}
.btn.btn-secondary:hover,
input[type=submit].btn-secondary:hover,
button.btn-secondary:hover {
  background-color: #83d932;
}
.btn.btn-secondary:active,
input[type=submit].btn-secondary:active,
button.btn-secondary:active {
  background-color: #83d932;
  border-color: transparent;
}
.btn.btn-facebook,
input[type=submit].btn-facebook,
button.btn-facebook {
  background-color: #4968AD;
  color: #fff;
  text-transform: uppercase;
}
.btn.btn-facebook:hover,
input[type=submit].btn-facebook:hover,
button.btn-facebook:hover {
  background-color: #83d932;
}
.btn.btn-facebook:active,
input[type=submit].btn-facebook:active,
button.btn-facebook:active {
  background-color: #83d932;
  border-color: transparent;
}
.btn.btn-gray,
input[type=submit].btn-gray,
button.btn-gray {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  background-color: #f3f5f7;
  border: none;
  color: #1c365d;
  text-transform: none;
}
.btn.btn-gray:hover,
input[type=submit].btn-gray:hover,
button.btn-gray:hover {
  background-color: #eaedf1;
}
.btn.btn-gray:active,
input[type=submit].btn-gray:active,
button.btn-gray:active {
  background-color: #f3f5f7;
  border-color: transparent;
}
.btn.btn-gray.edit::before,
input[type=submit].btn-gray.edit::before,
button.btn-gray.edit::before {
  content: '';
  display: inline-block;
  background-image: url(../images/controls/icon-pencil.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 13px;
  height: 18px;
  margin: 0 11px -3px 0;
}
.btn.btn-green,
input[type=submit].btn-green,
button.btn-green {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  background-color: #83d932;
  border: none;
  color: #fff;
}
.btn.btn-green:hover,
input[type=submit].btn-green:hover,
button.btn-green:hover {
  background-color: #00bfff;
}
.btn.btn-green:active,
input[type=submit].btn-green:active,
button.btn-green:active {
  background-color: #00bfff;
  border-color: transparent;
}
.btn span,
input[type=submit] span,
button span {
  font-size: 1rem;
  line-height: 1rem;
  vertical-align: middle;
  margin: -0.28rem 0.5rem 0 0;
  display: inline-block;
}
.btn.btn-basic,
input[type=submit].btn-basic,
button.btn-basic {
  background-color: transparent;
  color: #374250;
  text-decoration: underline;
  text-transform: none;
}
.btn.btn-basic:hover,
input[type=submit].btn-basic:hover,
button.btn-basic:hover {
  text-decoration: none;
}
.btn.pill-btn,
input[type=submit].pill-btn,
button.pill-btn {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  color: #00bfff;
  padding: 0.7rem 1.5rem;
  background-color: transparent;
  border: 1px solid #00bfff;
  text-transform: none;
}
.btn.pill-btn:hover,
input[type=submit].pill-btn:hover,
button.pill-btn:hover {
  background-color: #00bfff;
}
@media screen and (min-width: 768px) {
  .btn.pill-btn,
  input[type=submit].pill-btn,
  button.pill-btn {
    padding: 0.7rem 1.5rem;
  }
}
.btn.pill-btn.automotive,
input[type=submit].pill-btn.automotive,
button.pill-btn.automotive {
  color: #FF413C;
  border-color: #FF413C;
}
.btn.pill-btn.automotive:hover,
input[type=submit].pill-btn.automotive:hover,
button.pill-btn.automotive:hover {
  background-color: #FF413C;
}
.btn.pill-btn.beauty-spas,
input[type=submit].pill-btn.beauty-spas,
button.pill-btn.beauty-spas {
  color: #f33d8c;
  border-color: #f33d8c;
}
.btn.pill-btn.beauty-spas:hover,
input[type=submit].pill-btn.beauty-spas:hover,
button.pill-btn.beauty-spas:hover {
  background-color: #f33d8c;
}
.btn.pill-btn.business-services,
input[type=submit].pill-btn.business-services,
button.pill-btn.business-services {
  color: #f33dbe;
  border-color: #f33dbe;
}
.btn.pill-btn.business-services:hover,
input[type=submit].pill-btn.business-services:hover,
button.pill-btn.business-services:hover {
  background-color: #f33dbe;
}
.btn.pill-btn.children,
input[type=submit].pill-btn.children,
button.pill-btn.children {
  color: #e83df3;
  border-color: #e83df3;
}
.btn.pill-btn.children:hover,
input[type=submit].pill-btn.children:hover,
button.pill-btn.children:hover {
  background-color: #e83df3;
}
.btn.pill-btn.fashion,
input[type=submit].pill-btn.fashion,
button.pill-btn.fashion {
  color: #7370FB;
  border-color: #7370FB;
}
.btn.pill-btn.fashion:hover,
input[type=submit].pill-btn.fashion:hover,
button.pill-btn.fashion:hover {
  background-color: #7370FB;
}
.btn.pill-btn.finance,
input[type=submit].pill-btn.finance,
button.pill-btn.finance {
  color: #993df3;
  border-color: #993df3;
}
.btn.pill-btn.finance:hover,
input[type=submit].pill-btn.finance:hover,
button.pill-btn.finance:hover {
  background-color: #993df3;
}
.btn.pill-btn.fitness,
input[type=submit].pill-btn.fitness,
button.pill-btn.fitness {
  color: #6a3df3;
  border-color: #6a3df3;
}
.btn.pill-btn.fitness:hover,
input[type=submit].pill-btn.fitness:hover,
button.pill-btn.fitness:hover {
  background-color: #6a3df3;
}
.btn.pill-btn.home-improvement,
input[type=submit].pill-btn.home-improvement,
button.pill-btn.home-improvement {
  color: #3d8cf3;
  border-color: #3d8cf3;
}
.btn.pill-btn.home-improvement:hover,
input[type=submit].pill-btn.home-improvement:hover,
button.pill-btn.home-improvement:hover {
  background-color: #3d8cf3;
}
.btn.pill-btn.insurance,
input[type=submit].pill-btn.insurance,
button.pill-btn.insurance {
  color: #3dbef3;
  border-color: #3dbef3;
}
.btn.pill-btn.insurance:hover,
input[type=submit].pill-btn.insurance:hover,
button.pill-btn.insurance:hover {
  background-color: #3dbef3;
}
.btn.pill-btn.landscaping,
input[type=submit].pill-btn.landscaping,
button.pill-btn.landscaping {
  color: #2fe5cb;
  border-color: #2fe5cb;
}
.btn.pill-btn.landscaping:hover,
input[type=submit].pill-btn.landscaping:hover,
button.pill-btn.landscaping:hover {
  background-color: #2fe5cb;
}
.btn.pill-btn.legal-services,
input[type=submit].pill-btn.legal-services,
button.pill-btn.legal-services {
  color: #36df97;
  border-color: #36df97;
}
.btn.pill-btn.legal-services:hover,
input[type=submit].pill-btn.legal-services:hover,
button.pill-btn.legal-services:hover {
  background-color: #36df97;
}
.btn.pill-btn.marketing-advertising,
input[type=submit].pill-btn.marketing-advertising,
button.pill-btn.marketing-advertising {
  color: #83d932;
  border-color: #83d932;
}
.btn.pill-btn.marketing-advertising:hover,
input[type=submit].pill-btn.marketing-advertising:hover,
button.pill-btn.marketing-advertising:hover {
  background-color: #83d932;
}
.btn.pill-btn.medical,
input[type=submit].pill-btn.medical,
button.pill-btn.medical {
  color: #b6dd18;
  border-color: #b6dd18;
}
.btn.pill-btn.medical:hover,
input[type=submit].pill-btn.medical:hover,
button.pill-btn.medical:hover {
  background-color: #b6dd18;
}
.btn.pill-btn.pets,
input[type=submit].pill-btn.pets,
button.pill-btn.pets {
  color: #f3e300;
  border-color: #f3e300;
}
.btn.pill-btn.pets:hover,
input[type=submit].pill-btn.pets:hover,
button.pill-btn.pets:hover {
  background-color: #f3e300;
}
.btn.pill-btn.photographer,
input[type=submit].pill-btn.photographer,
button.pill-btn.photographer {
  color: #f3c73d;
  border-color: #f3c73d;
}
.btn.pill-btn.photographer:hover,
input[type=submit].pill-btn.photographer:hover,
button.pill-btn.photographer:hover {
  background-color: #f3c73d;
}
.btn.pill-btn.real-estate,
input[type=submit].pill-btn.real-estate,
button.pill-btn.real-estate {
  color: #f3a43d;
  border-color: #f3a43d;
}
.btn.pill-btn.real-estate:hover,
input[type=submit].pill-btn.real-estate:hover,
button.pill-btn.real-estate:hover {
  background-color: #f3a43d;
}
.btn.pill-btn.special-events,
input[type=submit].pill-btn.special-events,
button.pill-btn.special-events {
  color: #f3773d;
  border-color: #f3773d;
}
.btn.pill-btn.special-events:hover,
input[type=submit].pill-btn.special-events:hover,
button.pill-btn.special-events:hover {
  background-color: #f3773d;
}
.btn.pill-btn.other,
input[type=submit].pill-btn.other,
button.pill-btn.other {
  color: #FF413C;
  border-color: #FF413C;
}
.btn.pill-btn:hover,
input[type=submit].pill-btn:hover,
button.pill-btn:hover {
  background-color: #FF413C;
  color: white;
}
.btn.icon,
input[type=submit].icon,
button.icon {
  line-height: 1;
  border-radius: 50%;
  width: auto;
  padding: 0;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  outline: 0;
  background-color: #EFF1F4;
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center center;
  cursor: pointer;
}
.btn.icon:hover,
input[type=submit].icon:hover,
button.icon:hover {
  background-color: #dadee5;
}
.btn.icon:active,
input[type=submit].icon:active,
button.icon:active,
.btn.icon.active,
input[type=submit].icon.active,
button.icon.active {
  background-color: #00bfff;
}
.btn.icon.edit,
input[type=submit].icon.edit,
button.icon.edit {
  background-image: url(../images/controls/icon-pencil.svg);
}
.btn.icon.edit.active,
input[type=submit].icon.edit.active,
button.icon.edit.active {
  background-image: url(../images/controls/icon-pencil-white.svg);
}
.btn.icon.delete,
input[type=submit].icon.delete,
button.icon.delete {
  background-image: url(../images/controls/icon-close.svg);
}
.btn:focus {
  outline: none;
}
.pill {
  border: solid 1px currentColor;
  display: inline-block;
  padding: .9em 2.3em .9em 1em;
  border-radius: 30px;
  margin: 0 .5em .5em 0;
  font-size: 1.1em;
  line-height: 1;
  color: #7370FB;
  background: url(../images/controls/icon-close-purple.svg) no-repeat calc(100% - 10px) center / 15px 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.pill:hover {
  background-color: #7370FB;
  border-color: #7370FB;
  background-image: url(../images/controls/icon-close-white.svg);
  color: #fff;
}
.text-btn {
  outline: none;
  font-size: 1rem;
  color: #1c365d;
  padding-bottom: 1.8rem;
  display: inline-block;
  width: 100%;
  background-color: transparent;
  text-transform: none;
}
.text-btn:hover {
  background-color: transparent;
}
.text-btn.underline {
  text-decoration: underline;
}
.text-btn.underline:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .text-btn {
    font-size: 1.2rem;
  }
}
.text-btn.bold-text-btn {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.text-btn.uppercase-text-btn {
  color: #a4afbe;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.how-callouts {
  margin-bottom: 4em;
}
@media screen and (max-width: 767px) {
  .how-callouts {
    margin-bottom: 1em;
  }
}
.how-callouts > h2 {
  font-size: 1.55em;
  line-height: 1;
  margin-bottom: 4em;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .how-callouts > h2 {
    margin-bottom: 2.5em;
  }
}
.how-callouts .container {
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .how-callouts .container {
    flex-flow: column;
    align-items: center;
  }
}
.how-callouts .callout-item {
  width: 25%;
}
@media screen and (max-width: 991px) {
  .how-callouts .callout-item {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .how-callouts .callout-item {
    width: 100%;
    max-width: 365px;
    padding: 0 25px;
    margin: 0 auto 2.75em;
  }
}
.how-callouts .callout-item > img {
  width: auto;
  height: 100%;
  max-height: 87px;
  max-height: 6em;
  margin-bottom: 2em;
}
.how-callouts .callout-item h2 {
  font-size: 1.55em;
  line-height: 1.4;
  margin: 0 0 .75em 0;
  padding: 0;
}
.how-callouts .callout-item h2:after {
  content: '';
  width: 21px;
  height: 2px;
  border-radius: 10px;
  background-color: #f3c73d;
  display: block;
  margin: .75em 0 0 0;
}
.how-callouts .callout-item p {
  font-size: 1.1em;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  color: #a4afbe;
}
.card-callouts {
  margin: 4em 0 16em;
}
@media screen and (max-width: 767px) {
  .card-callouts {
    margin: 1em;
  }
}
.card-callouts .container {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .card-callouts .container {
    flex-flow: column wrap;
  }
}
.card-callouts .callout-item {
  max-width: 676px;
  margin: 0 1.5%;
  box-shadow: 0px 0 20px 0px rgba(50, 50, 50, 0.1);
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .card-callouts .callout-item {
    margin: 0 auto 3em;
    width: 100%;
    font-size: 90%;
  }
}
.card-callouts .callout-item .text {
  max-width: 414px;
  margin: auto;
}
.card-callouts .callout-item .text > img {
  width: auto;
  height: 100%;
  max-height: 105px;
  margin-bottom: 2em;
}
.card-callouts .callout-item h2 {
  font-size: 1.7em;
  line-height: 1.4;
  margin: 0 0 .75em 0;
  padding: 0;
}
.card-callouts .callout-item p {
  font-size: 1.25em;
  line-height: 1.7;
  margin-bottom: 2em;
  padding: 0;
  color: #a4afbe;
}

.card {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .card {
    padding: 31.25px;
  }
}
.card.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.card.empty h2 {
  font-size: 1.5rem;
}
.card.empty p:last-of-type {
  padding-bottom: 0;
}
.card.empty h2:last-of-type {
  padding-bottom: 0;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.category-background.automotive {
  background-color: #FF413C;
}
.category-background.beauty-spas {
  background-color: #f33d8c;
}
.category-background.business-services {
  background-color: #f33dbe;
}
.category-background.children {
  background-color: #e83df3;
}
.category-background.fashion {
  background-color: #7370FB;
}
.category-background.finance {
  background-color: #993df3;
}
.category-background.fitness {
  background-color: #6a3df3;
}
.category-background.home-improvement {
  background-color: #3d8cf3;
}
.category-background.insurance {
  background-color: #3dbef3;
}
.category-background.landscaping {
  background-color: #2fe5cb;
}
.category-background.legal-services {
  background-color: #36df97;
}
.category-background.marketing-advertising {
  background-color: #83d932;
}
.category-background.medical {
  background-color: #b6dd18;
}
.category-background.pets {
  background-color: #f3e300;
}
.category-background.photographer {
  background-color: #f3c73d;
}
.category-background.real-estate {
  background-color: #f3a43d;
}
.category-background.special-events {
  background-color: #f3773d;
}
.category-background.other {
  background-color: #FF413C;
}
.category-font.automotive {
  color: #FF413C;
}
.category-font.beauty-spas {
  color: #f33d8c;
}
.category-font.business-services {
  color: #f33dbe;
}
.category-font.children {
  color: #e83df3;
}
.category-font.fashion {
  color: #7370FB;
}
.category-font.finance {
  color: #993df3;
}
.category-font.fitness {
  color: #6a3df3;
}
.category-font.home-improvement {
  color: #3d8cf3;
}
.category-font.insurance {
  color: #3dbef3;
}
.category-font.landscaping {
  color: #2fe5cb;
}
.category-font.legal-services {
  color: #36df97;
}
.category-font.marketing-advertising {
  color: #83d932;
}
.category-font.medical {
  color: #b6dd18;
}
.category-font.pets {
  color: #f3e300;
}
.category-font.photographer {
  color: #f3c73d;
}
.category-font.real-estate {
  color: #f3a43d;
}
.category-font.special-events {
  color: #f3773d;
}
.category-font.other {
  color: #FF413C;
}

.dashboard-banner {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 37.5px 12.5px 75px 12.5px;
  background: url(../images/dashboard/dashboard-banner-bg.svg) center center #00bfff;
  background-size: 200%;
}
@media screen and (min-width: 768px) {
  .dashboard-banner {
    background-size: cover;
    padding: 75px 25px 100px 25px;
  }
}
.dashboard-banner h2 {
  color: #fff;
  font-size: 1.25rem;
  padding: 0 0 1rem 0;
}
@media screen and (min-width: 768px) {
  .dashboard-banner h2 {
    font-size: 2.5rem;
    padding: 0 0 1rem 0;
  }
}
.dashboard-banner .predictive-search-container {
  width: 100%;
  max-width: 450px;
}
.dashboard-banner .predictive-search-container input {
  width: 100%;
  max-width: 450px;
  font-weight: bold;
  background-color: #18bffc;
}
.dashboard-banner > form {
  width: 100%;
  max-width: 450px;
}
.dashboard-banner input {
  font-size: 0.7rem;
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  max-width: 450px;
  background-image: url(../images/controls/search-white.svg);
  padding: 14px 25px 14px 55px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 25px center;
}
.dashboard-banner input:focus {
  border-color: #e6e6e6;
}
.dashboard-banner input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}
@media screen and (min-width: 768px) {
  .dashboard-banner input {
    font-size: 0.85rem;
    padding: 18px 25px 18px 55px;
  }
}
.dashboard-content {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.dashboard-content .recent-activty-header {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 1rem;
  margin: 0 0 1.75rem 0;
  padding-top: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .dashboard-content .recent-activty-header {
    font-size: 1.2rem;
  }
}
.dashboard-content .recent-activty-header span {
  display: inline-block;
  -webkit-transform: translate(0, 2px);
  -ms-transform: translate(0, 2px);
  transform: translate(0, 2px);
}
.dashboard-content .browse-categories-card {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  margin: -70px 0 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .dashboard-content .browse-categories-card {
    padding: 31.25px;
  }
}
.dashboard-content .browse-categories-card.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.dashboard-content .browse-categories-card.empty h2 {
  font-size: 1.5rem;
}
.dashboard-content .browse-categories-card.empty p:last-of-type {
  padding-bottom: 0;
}
.dashboard-content .browse-categories-card.empty h2:last-of-type {
  padding-bottom: 0;
}
.dashboard-content .browse-categories-card h3 {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 1rem;
  margin: 0 0 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .dashboard-content .browse-categories-card h3 {
    font-size: 1.25rem;
  }
}
.dashboard-content .browse-categories-card .pill-btn {
  margin: 0.25rem 0.125rem;
}
@media screen and (min-width: 768px) {
  .dashboard-content .browse-categories-card .pill-btn {
    margin: 0.5rem 0.2rem;
  }
}
.dashboard-content .browse-categories-card a:last-of-type {
  font-size: 1rem;
}
.dashboard-content .browse-categories-card .all-categories span {
  display: inline-block;
  margin-right: 5px;
  -webkit-transform: translate(0, 2px);
  -ms-transform: translate(0, 2px);
  transform: translate(0, 2px);
}

.dropdown-menu {
  display: block;
  z-index: -1;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  min-width: 240px;
  position: absolute;
  margin-top: 20px;
  opacity: 0;
}
.dropdown-menu.open {
  animation: lower-in 0.35s;
  opacity: 1;
  z-index: 11;
}
.dropdown-menu.close {
  animation: raise-up 0.35s;
  opacity: 0;
}
.dropdown-menu li.hr {
  background-color: #e6e7e8;
  width: 100%;
  height: 1px;
  margin: 20px 0;
}
.dropdown-menu li:first-child {
  padding-top: 10px;
}
.dropdown-menu li:last-child {
  padding-bottom: 10px;
}
.dropdown-menu li > a {
  display: block;
  padding: 15px 30px;
}
.dropdown-menu li > a:hover {
  background-color: #e83df3;
  color: #fff;
}
.dropdown-menu a {
  color: #374250;
}
.dropdown-menu a.blue {
  color: #00bfff;
}
.btn-dropdown:hover .arrow {
  border-color: #fff;
}
@keyframes lower-in {
  0% {
    transform: translateY(-20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes raise-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(-20%);
    opacity: 0;
  }
}

footer {
  padding: 25px;
  background-color: #fff;
  border-top: 1px solid #f3f5f7;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  footer {
    padding-top: 50px;
  }
}
footer .footer-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: left;
}
@media screen and (min-width: 768px) {
  footer .footer-content {
    flex-direction: row;
    justify-content: left;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  footer {
    padding: 50px;
  }
}
footer p.copyright {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  display: block;
}
@media screen and (min-width: 768px) {
  footer p.copyright {
    margin-right: auto;
  }
}
footer ul {
  margin: 2rem 0 0 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  footer ul {
    margin: 0 3rem 0 0;
  }
  footer ul:last-of-type {
    margin: 0;
  }
}
footer ul li {
  font-size: 1rem;
  display: inline-block;
  margin-right: 1rem;
}
footer ul li:last-of-type {
  margin-right: 0;
}
footer .footer-nav a {
  text-decoration: none;
}
footer .footer-nav a:hover {
  text-decoration: underline;
}
footer .social-media-nav a {
  display: block;
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  border: solid 1px #d2d7df;
  border-radius: 50%;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s ease-in-out;
}
footer .social-media-nav a:hover {
  opacity: .8;
  transform: translateY(-2px);
}
footer .social-media-nav a.facebook {
  background-image: url(../images/icon-facebook.svg);
}
footer .social-media-nav a.twitter {
  background-image: url(../images/icon-twitter.svg);
}
footer .social-media-nav a.instagram {
  background-image: url(../images/icon-instagram.svg);
}

.simple-search {
  margin-top: 10px;
  color: gray;
}
form .form-row {
  width: 100%;
  padding: 12.5px 0;
}
form .form-row > .bold-label {
  padding-top: 20.83333333px;
}
form input::placeholder,
form textarea::placeholder {
  color: #cccccc;
}
form textarea {
  resize: none;
}
form .form-group-heading {
  font-size: 1.2rem;
  text-align: left;
  padding-bottom: 16.66666667px;
}
@media screen and (min-width: 768px) {
  form .form-group-heading {
    font-size: 1.4rem;
  }
}
form .form-group {
  padding: 12.5px 0;
}
form .form-group:last-of-type {
  padding-bottom: 37.5px;
}
form .form-group.less-padding {
  padding: 12.5px 0;
}
form .btn {
  margin-bottom: 0;
}
form .text-btn {
  padding-bottom: 0;
}
form .input-group-2col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
form .input-group-2col .input-wrapper {
  width: 48%;
}
form .input-group-2col .input-wrapper input[type=checkbox] + label {
  padding: 0;
}
form .input-group-2col .input-wrapper.text-link {
  text-align: right;
}
form .input-group-2col .input-wrapper.no-label label {
  height: 16px;
}
form .input-and-button {
  position: relative;
}
form .input-and-button .btn {
  position: absolute;
  top: 5px;
  right: 5px;
}
.business-info-owner,
label {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  font-size: 0.85rem;
  line-height: 1.2rem;
  padding-bottom: 0.8rem;
  display: block;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .business-info-owner,
  label {
    font-size: 1.1rem;
  }
}
.business-info-owner.bold-label,
label.bold-label {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .business-info-owner.bold-label,
  label.bold-label {
    font-size: 1.4rem;
  }
}
.business-info-owner.centered-label,
label.centered-label {
  text-align: center;
  padding-bottom: 1.2rem;
}
.business-info-owner button,
label button {
  color: #1c365d;
  display: inline-block;
  float: right;
  padding: 0;
  background-color: transparent;
  outline: 0;
}
.business-info-owner button:hover,
label button:hover {
  color: #1c365d;
  opacity: 0.8;
}
.error-text {
  color: #FF413C;
  text-align: left;
  padding-top: 0.7em;
  font-size: 1.1em;
}
.form-error {
  color: #FF413C;
  font-size: 1.5em;
}
.review-text {
  text-align: left;
  color: #1d51fb;
  padding: 0 0 0.25rem 0;
}
.help-text {
  font-size: 0.85rem;
  text-align: left;
  margin: 0;
  padding: 0.5rem 0 0 0;
}
.help-text.photos-help-text {
  color: #a4afbe;
  text-align: center;
  font-size: 0.85rem;
  padding: 0 0 0.75rem 0;
}
.suggestions-box {
  position: relative;
  background: #fbfbfb;
  z-index: 2;
}
.suggestions-box ul {
  border: 1px solid #d2d7df;
  border-radius: 10px;
  position: absolute;
  top: 7px;
  width: 100%;
  background-color: #fff;
  margin: 0;
  padding: 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}
.suggestions-box ul li {
  font-size: 1.1em;
  margin: 0;
  margin-bottom: .35em;
  padding: .45em .75em;
  color: #1c365d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.suggestions-box ul li:first-child {
  padding-top: .75em;
  margin-top: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.suggestions-box ul li:last-child {
  margin-bottom: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.suggestions-box ul li:hover {
  background-color: #fbfbfb;
}
.suggestions-box ul li .name {
  text-align: left;
  display: flex;
  align-items: center;
}
.suggestions-box ul li .name .avatar {
  width: 28px;
  height: 28px;
  margin-right: .75em;
  font-size: .75em;
}
.suggestions-box ul li .name .service {
  color: #B9C3D0;
}
.suggestions-box ul li .name .service:before {
  content: '-';
  margin: 0 .35em 0 .5em;
}
.suggestions-box ul li .location {
  color: #B9C3D0;
}
.suggestions-box ul li.add {
  background: #7370FB url(../images/controls/icon-plus-white.svg) no-repeat 1em center / 23px 23px;
  margin-bottom: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #fff;
  padding: .85em .75em .85em 3.25em;
}
.suggestions-box ul li.add:hover {
  background-color: #6966fb;
}
input,
textarea,
select,
.input,
input[type=date] {
  color: #696c72;
  font-size: 0.85rem;
  line-height: 0.85rem;
  width: 100%;
  padding: 14px 25px;
  margin: 0;
  display: block;
  outline: none;
  border: 1px solid #d2d7df;
  background-color: #fff;
  border-radius: 30px;
}
input:focus,
textarea:focus,
select:focus,
.input:focus,
input[type=date]:focus {
  border-color: #00bfff;
}
input:disabled,
textarea:disabled,
select:disabled,
.input:disabled,
input[type=date]:disabled {
  opacity: 0.5;
}
input.error,
textarea.error,
select.error,
.input.error,
input[type=date].error {
  border-color: #FF413C;
}
textarea {
  border-radius: 7px;
  font-size: 1rem;
  line-height: 1.6rem;
}
input[type=checkbox] {
  cursor: pointer;
}
input[type=text],
input[type=date] {
  -webkit-appearance: none;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 35px;
  line-height: 1rem;
}
.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  font-family: 'icomoon';
  font-size: 0.75rem;
  color: #696c72;
  display: block;
  content: "\e90a";
  position: absolute;
  right: 1.5rem;
  top: 17px;
  pointer-events: none;
}
select::-ms-expand {
  display: none;
}
input[type=file] {
  position: absolute;
  left: -1000em;
}
input[type=checkbox] {
  position: absolute;
  left: -1000em;
}
.categories[type=checkbox] + label {
  color: #1c365d;
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  font-size: 0.85rem;
  line-height: 1.3rem;
  padding-bottom: 0.8rem;
  font-weight: normal;
  display: flex;
  width: auto;
  padding: 0;
  position: relative;
}
.categories[type=checkbox] + label:before {
  content: none!important;
}
.categories[type=checkbox] + label:after {
  content: none!important;
}
@media screen and (min-width: 768px) {
  .categories[type=checkbox] + label {
    font-size: 1.1rem;
  }
}
.categories[type=checkbox] + label .before {
  content: "";
  display: block;
  float: left;
  width: 30px;
  height: 30px;
  border: 1px solid #d2d7df;
  background-color: #fbfbfc;
  margin: 0 8px 0 0;
  position: relative;
  border-radius: 50%;
  flex-shrink: 0;
}
.business-info-owner span {
  display: inline-block;
  padding-right: 8px;
}
.business-info-owner .business-info-label {
  display: inline-block;
  line-height: 30px;
}
.business-info-label,
input[type=checkbox] + label {
  color: #1c365d;
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  font-size: 0.85rem;
  line-height: 1.3rem;
  padding-bottom: 0.8rem;
  font-weight: normal;
  display: flex;
  width: auto;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .business-info-label,
  input[type=checkbox] + label {
    font-size: 1.1rem;
  }
}
.business-info-label:before,
input[type=checkbox] + label:before {
  content: "";
  display: block;
  float: left;
  width: 30px;
  height: 30px;
  border: 1px solid #d2d7df;
  background-color: #fbfbfc;
  margin: 0 8px 0 0;
  position: relative;
  border-radius: 50%;
  flex-shrink: 0;
}
input[type=checkbox] + .business-info-label {
  display: inline-block;
  line-height: 30px;
}
.categories[type=checkbox]:checked + label .before {
  border-color: #83d932;
  background-color: #83d932;
}
.categories[type=checkbox]:checked + label .after {
  font-family: 'icomoon';
  font-size: 0.6rem;
  color: #fff;
  content: "\e92d";
  font-weight: normal;
  position: absolute;
  top: 5px;
  left: 8px;
}
.business-info-label.checked:before,
input[type=checkbox]:checked + label:before {
  border-color: #83d932;
  background-color: #83d932;
}
.business-info-label.checked:after,
input[type=checkbox]:checked + label:after {
  font-family: 'icomoon';
  font-size: 0.6rem;
  color: #fff;
  content: "\e92d";
  font-weight: normal;
  position: absolute;
  top: 5px;
  left: 8px;
}
input[type=checkbox]:checked + .business-info-label:after,
.business-info-label.checked:after {
  top: 1px;
  left: 9px;
}
input[type=checkbox]:disabled + label:before {
  border-color: #f3f5f7;
}
input[type=checkbox]:disabled + label:after {
  font-family: 'icomoon';
  font-size: 1rem;
  color: #1c365d;
  content: "\e92d";
  font-weight: normal;
  position: absolute;
  top: 1px;
  left: 9px;
}
.categories[type=checkbox]:checked + label .before {
  border-color: orange;
}
.categories[type=checkbox]:checked + label .after:after {
  content: "\e92d";
  position: absolute;
  top: -4px;
  left: 1px;
  font-family: 'icomoon';
  font-weight: normal;
  color: inherit;
  font-size: 0.6rem;
}
[type=checkbox]:checked + label:before {
  border-color: orange;
}
[type=checkbox]:checked + label:after {
  font-size: 0.6rem;
  color: #f3a43d;
  content: "\e92d";
  font-family: 'icomoon';
  font-weight: normal;
  position: absolute;
  top: 1px;
  left: 9px;
}
[type=checkbox]:disabled + label:before {
  border-color: #d2d7df;
}
[type=checkbox]:disabled + label:after {
  font-size: 0.6rem;
  color: #fff;
  content: "\e92d";
  font-family: 'icomoon';
  font-weight: normal;
  position: absolute;
  top: 1px;
  left: 9px;
}
.checkbox-tags {
  padding: 0 0 1rem 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.checkbox-tags li {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  color: #00bfff;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  margin: 0 0.5rem 0.5rem 0;
  background-color: transparent;
  border: 1px solid #00bfff;
  border-radius: 25px;
  display: flex;
  min-width: 4em;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .checkbox-tags li {
    padding: 0.45rem 1rem 0.45rem 0.45rem;
  }
}
.checkbox-tags li.link-tag {
  padding: 0;
}
.checkbox-tags li.link-tag a {
  padding: 0.45rem 1em;
}
.checkbox-tags li a {
  text-decoration: none;
}
.checkbox-tags li input[type=checkbox] + label,
.checkbox-tags li a {
  color: #1c365d;
  font-size: 0.85rem;
  line-height: 30px;
}
@media screen and (min-width: 768px) {
  .checkbox-tags li input[type=checkbox] + label,
  .checkbox-tags li a {
    font-size: 1.1rem;
    line-height: 30px;
  }
}
.checkbox-tags li input[type=checkbox] + label:after,
.checkbox-tags li a:after {
  top: 1px;
  left: 9px;
}
.checkbox-tags.service-areas li,
.checkbox-tags.generic li,
.checkbox-tags li.service-areas,
.checkbox-tags li.generic {
  border-color: #1c365d;
}
.checkbox-tags.service-areas li input[type=checkbox] + label,
.checkbox-tags.generic li input[type=checkbox] + label,
.checkbox-tags li.service-areas input[type=checkbox] + label,
.checkbox-tags li.generic input[type=checkbox] + label,
.checkbox-tags.service-areas li a,
.checkbox-tags.generic li a,
.checkbox-tags li.service-areas a,
.checkbox-tags li.generic a {
  color: #1c365d;
}
.checkbox-tags.service-areas li input[type=checkbox] + label:before,
.checkbox-tags.generic li input[type=checkbox] + label:before,
.checkbox-tags li.service-areas input[type=checkbox] + label:before,
.checkbox-tags li.generic input[type=checkbox] + label:before,
.checkbox-tags.service-areas li a:before,
.checkbox-tags.generic li a:before,
.checkbox-tags li.service-areas a:before,
.checkbox-tags li.generic a:before {
  border-color: #1c365d;
}
.checkbox-tags.service-areas li input[type=checkbox]:checked + label:before,
.checkbox-tags.generic li input[type=checkbox]:checked + label:before,
.checkbox-tags li.service-areas input[type=checkbox]:checked + label:before,
.checkbox-tags li.generic input[type=checkbox]:checked + label:before,
.checkbox-tags.service-areas li a:hover:before,
.checkbox-tags.generic li a:hover:before,
.checkbox-tags li.service-areas a:hover:before,
.checkbox-tags li.generic a:hover:before {
  background-color: #1c365d;
}
.checkbox-tags.automotive li,
.checkbox-tags li.automotive {
  border-color: #FF413C;
}
.checkbox-tags.automotive li input[type=checkbox] + label,
.checkbox-tags li.automotive input[type=checkbox] + label,
.checkbox-tags.automotive li a,
.checkbox-tags li.automotive a {
  color: #FF413C;
}
.checkbox-tags.automotive li input[type=checkbox] + label:before,
.checkbox-tags li.automotive input[type=checkbox] + label:before,
.checkbox-tags.automotive li a:before,
.checkbox-tags li.automotive a:before {
  border-color: #FF413C;
}
.checkbox-tags.automotive li input[type=checkbox]:checked + label:before,
.checkbox-tags li.automotive input[type=checkbox]:checked + label:before,
.checkbox-tags.automotive li a:hover:before,
.checkbox-tags li.automotive a:hover:before {
  background-color: #FF413C;
}
.checkbox-tags.other li,
.checkbox-tags li.other {
  border-color: #FF413C;
}
.checkbox-tags.other li input[type=checkbox] + label,
.checkbox-tags li.other input[type=checkbox] + label,
.checkbox-tags.other li a,
.checkbox-tags li.other a {
  color: #FF413C;
}
.checkbox-tags.other li input[type=checkbox] + label:before,
.checkbox-tags li.other input[type=checkbox] + label:before,
.checkbox-tags.other li a:before,
.checkbox-tags li.other a:before {
  border-color: #FF413C;
}
.checkbox-tags.other li input[type=checkbox]:checked + label:before,
.checkbox-tags li.other input[type=checkbox]:checked + label:before,
.checkbox-tags.other li a:hover:before,
.checkbox-tags li.other a:hover:before {
  background-color: #FF413C;
}
.checkbox-tags.beauty-spas li,
.checkbox-tags li.beauty-spas {
  border-color: #f33d8c;
}
.checkbox-tags.beauty-spas li input[type=checkbox] + label,
.checkbox-tags li.beauty-spas input[type=checkbox] + label,
.checkbox-tags.beauty-spas li a,
.checkbox-tags li.beauty-spas a {
  color: #f33d8c;
}
.checkbox-tags.beauty-spas li input[type=checkbox] + label:before,
.checkbox-tags li.beauty-spas input[type=checkbox] + label:before,
.checkbox-tags.beauty-spas li a:before,
.checkbox-tags li.beauty-spas a:before {
  border-color: #f33d8c;
}
.checkbox-tags.beauty-spas li input[type=checkbox]:checked + label:before,
.checkbox-tags li.beauty-spas input[type=checkbox]:checked + label:before,
.checkbox-tags.beauty-spas li a:hover:before,
.checkbox-tags li.beauty-spas a:hover:before {
  background-color: #f33d8c;
}
.checkbox-tags.business-services li,
.checkbox-tags li.business-services {
  border-color: #f33dbe;
}
.checkbox-tags.business-services li input[type=checkbox] + label,
.checkbox-tags li.business-services input[type=checkbox] + label,
.checkbox-tags.business-services li a,
.checkbox-tags li.business-services a {
  color: #f33dbe;
}
.checkbox-tags.business-services li input[type=checkbox] + label:before,
.checkbox-tags li.business-services input[type=checkbox] + label:before,
.checkbox-tags.business-services li a:before,
.checkbox-tags li.business-services a:before {
  border-color: #f33dbe;
}
.checkbox-tags.business-services li input[type=checkbox]:checked + label:before,
.checkbox-tags li.business-services input[type=checkbox]:checked + label:before,
.checkbox-tags.business-services li a:hover:before,
.checkbox-tags li.business-services a:hover:before {
  background-color: #f33dbe;
}
.checkbox-tags.children li,
.checkbox-tags li.children {
  border-color: #e83df3;
}
.checkbox-tags.children li input[type=checkbox] + label,
.checkbox-tags li.children input[type=checkbox] + label,
.checkbox-tags.children li a,
.checkbox-tags li.children a {
  color: #e83df3;
}
.checkbox-tags.children li input[type=checkbox] + label:before,
.checkbox-tags li.children input[type=checkbox] + label:before,
.checkbox-tags.children li a:before,
.checkbox-tags li.children a:before {
  border-color: #e83df3;
}
.checkbox-tags.children li input[type=checkbox]:checked + label:before,
.checkbox-tags li.children input[type=checkbox]:checked + label:before,
.checkbox-tags.children li a:hover:before,
.checkbox-tags li.children a:hover:before {
  background-color: #e83df3;
}
.checkbox-tags.fashion li,
.checkbox-tags li.fashion {
  border-color: #7370FB;
}
.checkbox-tags.fashion li input[type=checkbox] + label,
.checkbox-tags li.fashion input[type=checkbox] + label,
.checkbox-tags.fashion li a,
.checkbox-tags li.fashion a {
  color: #7370FB;
}
.checkbox-tags.fashion li input[type=checkbox] + label:before,
.checkbox-tags li.fashion input[type=checkbox] + label:before,
.checkbox-tags.fashion li a:before,
.checkbox-tags li.fashion a:before {
  border-color: #7370FB;
}
.checkbox-tags.fashion li input[type=checkbox]:checked + label:before,
.checkbox-tags li.fashion input[type=checkbox]:checked + label:before,
.checkbox-tags.fashion li a:hover:before,
.checkbox-tags li.fashion a:hover:before {
  background-color: #7370FB;
}
.checkbox-tags.finance li,
.checkbox-tags li.finance {
  border-color: #993df3;
}
.checkbox-tags.finance li input[type=checkbox] + label,
.checkbox-tags li.finance input[type=checkbox] + label,
.checkbox-tags.finance li a,
.checkbox-tags li.finance a {
  color: #993df3;
}
.checkbox-tags.finance li input[type=checkbox] + label:before,
.checkbox-tags li.finance input[type=checkbox] + label:before,
.checkbox-tags.finance li a:before,
.checkbox-tags li.finance a:before {
  border-color: #993df3;
}
.checkbox-tags.finance li input[type=checkbox]:checked + label:before,
.checkbox-tags li.finance input[type=checkbox]:checked + label:before,
.checkbox-tags.finance li a:hover:before,
.checkbox-tags li.finance a:hover:before {
  background-color: #993df3;
}
.checkbox-tags.fitness li,
.checkbox-tags li.fitness {
  border-color: #6a3df3;
}
.checkbox-tags.fitness li input[type=checkbox] + label,
.checkbox-tags li.fitness input[type=checkbox] + label,
.checkbox-tags.fitness li a,
.checkbox-tags li.fitness a {
  color: #6a3df3;
}
.checkbox-tags.fitness li input[type=checkbox] + label:before,
.checkbox-tags li.fitness input[type=checkbox] + label:before,
.checkbox-tags.fitness li a:before,
.checkbox-tags li.fitness a:before {
  border-color: #6a3df3;
}
.checkbox-tags.fitness li input[type=checkbox]:checked + label:before,
.checkbox-tags li.fitness input[type=checkbox]:checked + label:before,
.checkbox-tags.fitness li a:hover:before,
.checkbox-tags li.fitness a:hover:before {
  background-color: #6a3df3;
}
.checkbox-tags.home-improvement li,
.checkbox-tags li.home-improvement {
  border-color: #3d8cf3;
}
.checkbox-tags.home-improvement li input[type=checkbox] + label,
.checkbox-tags li.home-improvement input[type=checkbox] + label,
.checkbox-tags.home-improvement li a,
.checkbox-tags li.home-improvement a {
  color: #3d8cf3;
}
.checkbox-tags.home-improvement li input[type=checkbox] + label:before,
.checkbox-tags li.home-improvement input[type=checkbox] + label:before,
.checkbox-tags.home-improvement li a:before,
.checkbox-tags li.home-improvement a:before {
  border-color: #3d8cf3;
}
.checkbox-tags.home-improvement li input[type=checkbox]:checked + label:before,
.checkbox-tags li.home-improvement input[type=checkbox]:checked + label:before,
.checkbox-tags.home-improvement li a:hover:before,
.checkbox-tags li.home-improvement a:hover:before {
  background-color: #3d8cf3;
}
.checkbox-tags.insurance li,
.checkbox-tags li.insurance {
  border-color: #3dbef3;
}
.checkbox-tags.insurance li input[type=checkbox] + label,
.checkbox-tags li.insurance input[type=checkbox] + label,
.checkbox-tags.insurance li a,
.checkbox-tags li.insurance a {
  color: #3dbef3;
}
.checkbox-tags.insurance li input[type=checkbox] + label:before,
.checkbox-tags li.insurance input[type=checkbox] + label:before,
.checkbox-tags.insurance li a:before,
.checkbox-tags li.insurance a:before {
  border-color: #3dbef3;
}
.checkbox-tags.insurance li input[type=checkbox]:checked + label:before,
.checkbox-tags li.insurance input[type=checkbox]:checked + label:before,
.checkbox-tags.insurance li a:hover:before,
.checkbox-tags li.insurance a:hover:before {
  background-color: #3dbef3;
}
.checkbox-tags.landscaping li,
.checkbox-tags li.landscaping {
  border-color: #2fe5cb;
}
.checkbox-tags.landscaping li input[type=checkbox] + label,
.checkbox-tags li.landscaping input[type=checkbox] + label,
.checkbox-tags.landscaping li a,
.checkbox-tags li.landscaping a {
  color: #2fe5cb;
}
.checkbox-tags.landscaping li input[type=checkbox] + label:before,
.checkbox-tags li.landscaping input[type=checkbox] + label:before,
.checkbox-tags.landscaping li a:before,
.checkbox-tags li.landscaping a:before {
  border-color: #2fe5cb;
}
.checkbox-tags.landscaping li input[type=checkbox]:checked + label:before,
.checkbox-tags li.landscaping input[type=checkbox]:checked + label:before,
.checkbox-tags.landscaping li a:hover:before,
.checkbox-tags li.landscaping a:hover:before {
  background-color: #2fe5cb;
}
.checkbox-tags.legal-services li,
.checkbox-tags li.legal-services {
  border-color: #36df97;
}
.checkbox-tags.legal-services li input[type=checkbox] + label,
.checkbox-tags li.legal-services input[type=checkbox] + label,
.checkbox-tags.legal-services li a,
.checkbox-tags li.legal-services a {
  color: #36df97;
}
.checkbox-tags.legal-services li input[type=checkbox] + label:before,
.checkbox-tags li.legal-services input[type=checkbox] + label:before,
.checkbox-tags.legal-services li a:before,
.checkbox-tags li.legal-services a:before {
  border-color: #36df97;
}
.checkbox-tags.legal-services li input[type=checkbox]:checked + label:before,
.checkbox-tags li.legal-services input[type=checkbox]:checked + label:before,
.checkbox-tags.legal-services li a:hover:before,
.checkbox-tags li.legal-services a:hover:before {
  background-color: #36df97;
}
.checkbox-tags.marketing-advertising li,
.checkbox-tags li.marketing-advertising {
  border-color: #83d932;
}
.checkbox-tags.marketing-advertising li input[type=checkbox] + label,
.checkbox-tags li.marketing-advertising input[type=checkbox] + label,
.checkbox-tags.marketing-advertising li a,
.checkbox-tags li.marketing-advertising a {
  color: #83d932;
}
.checkbox-tags.marketing-advertising li input[type=checkbox] + label:before,
.checkbox-tags li.marketing-advertising input[type=checkbox] + label:before,
.checkbox-tags.marketing-advertising li a:before,
.checkbox-tags li.marketing-advertising a:before {
  border-color: #83d932;
}
.checkbox-tags.marketing-advertising li input[type=checkbox]:checked + label:before,
.checkbox-tags li.marketing-advertising input[type=checkbox]:checked + label:before,
.checkbox-tags.marketing-advertising li a:hover:before,
.checkbox-tags li.marketing-advertising a:hover:before {
  background-color: #83d932;
}
.checkbox-tags.medical li,
.checkbox-tags li.medical {
  border-color: #b6dd18;
}
.checkbox-tags.medical li input[type=checkbox] + label,
.checkbox-tags li.medical input[type=checkbox] + label,
.checkbox-tags.medical li a,
.checkbox-tags li.medical a {
  color: #b6dd18;
}
.checkbox-tags.medical li input[type=checkbox] + label:before,
.checkbox-tags li.medical input[type=checkbox] + label:before,
.checkbox-tags.medical li a:before,
.checkbox-tags li.medical a:before {
  border-color: #b6dd18;
}
.checkbox-tags.medical li input[type=checkbox]:checked + label:before,
.checkbox-tags li.medical input[type=checkbox]:checked + label:before,
.checkbox-tags.medical li a:hover:before,
.checkbox-tags li.medical a:hover:before {
  background-color: #b6dd18;
}
.checkbox-tags.pets li,
.checkbox-tags li.pets {
  border-color: #f3e300;
}
.checkbox-tags.pets li input[type=checkbox] + label,
.checkbox-tags li.pets input[type=checkbox] + label,
.checkbox-tags.pets li a,
.checkbox-tags li.pets a {
  color: #f3e300;
}
.checkbox-tags.pets li input[type=checkbox] + label:before,
.checkbox-tags li.pets input[type=checkbox] + label:before,
.checkbox-tags.pets li a:before,
.checkbox-tags li.pets a:before {
  border-color: #f3e300;
}
.checkbox-tags.pets li input[type=checkbox]:checked + label:before,
.checkbox-tags li.pets input[type=checkbox]:checked + label:before,
.checkbox-tags.pets li a:hover:before,
.checkbox-tags li.pets a:hover:before {
  background-color: #f3e300;
}
.checkbox-tags.photographer li,
.checkbox-tags li.photographer {
  border-color: #f3c73d;
}
.checkbox-tags.photographer li input[type=checkbox] + label,
.checkbox-tags li.photographer input[type=checkbox] + label,
.checkbox-tags.photographer li a,
.checkbox-tags li.photographer a {
  color: #f3c73d;
}
.checkbox-tags.photographer li input[type=checkbox] + label:before,
.checkbox-tags li.photographer input[type=checkbox] + label:before,
.checkbox-tags.photographer li a:before,
.checkbox-tags li.photographer a:before {
  border-color: #f3c73d;
}
.checkbox-tags.photographer li input[type=checkbox]:checked + label:before,
.checkbox-tags li.photographer input[type=checkbox]:checked + label:before,
.checkbox-tags.photographer li a:hover:before,
.checkbox-tags li.photographer a:hover:before {
  background-color: #f3c73d;
}
.checkbox-tags.real-estate li,
.checkbox-tags li.real-estate {
  border-color: #f3a43d;
}
.checkbox-tags.real-estate li input[type=checkbox] + label,
.checkbox-tags li.real-estate input[type=checkbox] + label,
.checkbox-tags.real-estate li a,
.checkbox-tags li.real-estate a {
  color: #f3a43d;
}
.checkbox-tags.real-estate li input[type=checkbox] + label:before,
.checkbox-tags li.real-estate input[type=checkbox] + label:before,
.checkbox-tags.real-estate li a:before,
.checkbox-tags li.real-estate a:before {
  border-color: #f3a43d;
}
.checkbox-tags.real-estate li input[type=checkbox]:checked + label:before,
.checkbox-tags li.real-estate input[type=checkbox]:checked + label:before,
.checkbox-tags.real-estate li a:hover:before,
.checkbox-tags li.real-estate a:hover:before {
  background-color: #f3a43d;
}
.checkbox-tags.special-events li,
.checkbox-tags li.special-events {
  border-color: #f3773d;
}
.checkbox-tags.special-events li input[type=checkbox] + label,
.checkbox-tags li.special-events input[type=checkbox] + label,
.checkbox-tags.special-events li a,
.checkbox-tags li.special-events a {
  color: #f3773d;
}
.checkbox-tags.special-events li input[type=checkbox] + label:before,
.checkbox-tags li.special-events input[type=checkbox] + label:before,
.checkbox-tags.special-events li a:before,
.checkbox-tags li.special-events a:before {
  border-color: #f3773d;
}
.checkbox-tags.special-events li input[type=checkbox]:checked + label:before,
.checkbox-tags li.special-events input[type=checkbox]:checked + label:before,
.checkbox-tags.special-events li a:hover:before,
.checkbox-tags li.special-events a:hover:before {
  background-color: #f3773d;
}
.checkbox-tags.special-events li {
  border-color: #d35419;
}
.checkbox-tags.special-events li input[type=checkbox] + label,
.checkbox-tags.special-events li a {
  color: #d35419;
}
.checkbox-tags.special-events li input[type=checkbox] + label:before,
.checkbox-tags.special-events li a:before {
  border-color: #d35419;
}
.checkbox-tags.special-events li input[type=checkbox]:checked + label:before,
.checkbox-tags.special-events li a:hover:before {
  background-color: #d35419;
}
.see-more {
  margin: 0 0 2rem;
  display: block;
  color: #374250;
  font-size: 1rem;
  cursor: pointer;
}
.see-more:hover {
  color: #00bfff;
}
input[type=radio] {
  position: absolute;
  left: -1000em;
}
input[type=radio] + label .radio-circle {
  border: 1px solid #d2d7df;
  background-color: #fbfbfb;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 12.5px;
}
input[type=radio]:checked + label .radio-circle {
  border-color: #83d932;
}
input[type=radio]:checked + label .radio-circle:after {
  flex-grow: 0;
  flex-shrink: 0;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #83d932;
  content: "";
}
input[type=radio]::-ms-check {
  display: none;
}
.radio-cards {
  padding: 0 0 1rem 0;
  margin: 0;
}
.radio-cards li {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .radio-cards li {
    padding: 31.25px;
  }
}
.radio-cards li.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.radio-cards li.empty h2 {
  font-size: 1.5rem;
}
.radio-cards li.empty p:last-of-type {
  padding-bottom: 0;
}
.radio-cards li.empty h2:last-of-type {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .radio-cards li {
    padding: 0;
  }
}
.radio-cards li:last-of-type {
  margin-bottom: 0;
}
.radio-cards li input[type=radio] + label {
  display: flex;
  align-items: center;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .radio-cards li input[type=radio] + label {
    padding: 25px;
  }
}
@media screen and (min-width: 768px) {
  .radio-cards li input[type=radio] + label {
    font-size: 1.1rem;
    line-height: 30px;
  }
}
.radio-cards li input[type=radio] + label p {
  padding-bottom: 0;
}
.radio-cards li input[type=radio]:checked + label:after {
  top: 51%;
  left: 26px;
  -webkit-transform: translate(0, -9px);
  -ms-transform: translate(0, -9px);
  transform: translate(0, -9px);
}
@media screen and (min-width: 768px) {
  .radio-cards li input[type=radio]:checked + label:after {
    top: 50%;
    left: 31px;
    -webkit-transform: translate(0, -9px);
    -ms-transform: translate(0, -9px);
    transform: translate(0, -9px);
  }
}
.one-line-checkbox > label {
  display: flex;
  align-items: center;
}

.global-notification {
  height: 4em;
  font-size: 1.3em;
  position: fixed;
  width: 100%;
  color: white;
  display: flex;
  top: 0;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: top 500ms linear;
}
.global-notification.error {
  background-color: #FF413C;
}
.global-notification.success {
  background-color: #83d932;
}
.global-notification.warning {
  background-color: #f3a43d;
}
.global-notification.hide {
  top: -12em;
}

.row {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .row {
    flex-direction: row;
  }
}
.column {
  width: 100%;
  margin: 0 12.5px 0 0;
  position: relative;
}
.column:last-child {
  margin-right: 0;
}

header.header {
  padding: 25px 25px 0.5rem 25px;
  background-color: #fff;
  border-bottom: 1px solid #f3f5f7;
}
@media screen and (min-width: 768px) {
  header.header {
    padding: 25px;
  }
}
@media screen and (max-width: 767px) {
  header.header {
    padding-bottom: 0;
  }
}
header.header .header-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  header.header .header-content {
    flex-wrap: nowrap;
  }
}
header.header .header-content h1 {
  font-size: 1rem;
  margin: 0px;
  padding: 0;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  header.header .header-content h1 {
    width: 25%;
    margin-right: 0;
  }
}
header.header .header-content h1 a {
  display: block;
  width: 120px;
  height: 33px;
  text-indent: -9999px;
  background: url(/images/yooze-logo.svg) 0 0 / cover;
  transition: all 0.2s ease-in-out;
}
header.header .header-content h1 a:hover {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  header.header .header-content h1 a {
    width: 165px;
    height: 45px;
  }
}
header.header .header-content .header-right {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  header.header .header-content .header-right {
    order: 3;
    width: 35%;
    justify-content: flex-end;
  }
}
header.header .header-content .header-right .text-btn {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: block;
  width: auto;
}
header.header .header-content .header-right .text-btn:hover,
header.header .header-content .header-right .text-btn.active {
  color: #00bfff;
}
@media screen and (max-width: 767px) {
  header.header .header-content .header-right .text-btn span {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header.header .header-content .header-right.onboard {
    justify-content: flex-end;
    width: auto;
    margin-left: auto;
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  header.header .header-content .header-right.onboard.landing {
    width: 100%;
    margin-top: 1em;
  }
}
@media screen and (max-width: 500px) {
  header.header .header-content .header-right.onboard {
    font-size: 80%;
  }
}
@media screen and (max-width: 366px) {
  header.header .header-content .header-right.onboard {
    font-size: 67%;
  }
}
header.header .header-content .header-right.onboard .text-btn {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  margin-right: 4%;
  font-size: 1.25em;
}
header.header .header-content .btn {
  font-size: 0.75rem;
  padding: 8.33333333px 12.5px;
  margin-right: 0.5rem;
}
header.header .header-content .btn.btn-gray {
  text-transform: uppercase;
}
@media screen and (max-width: 320px) {
  header.header .header-content .btn {
    padding-right: 8.33333333px;
    padding-left: 8.33333333px;
  }
}
@media screen and (min-width: 768px) {
  header.header .header-content .btn {
    font-size: .78rem;
    padding: 12.5px 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  header.header .header-content .btn {
    font-size: .65rem;
    padding: 12.5px 22.72727273px;
  }
}
@media screen and (max-width: 320px) {
  header.header .header-content .btn {
    font-size: .65rem;
  }
}
header.header .header-content .user-avatar {
  position: relative;
  cursor: pointer;
}
header.header .header-content .user-avatar .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #993df3;
  width: 34px;
  height: 34px;
  border-radius: 100%;
}
@media screen and (min-width: 768px) {
  header.header .header-content .user-avatar .circle {
    width: 45px;
    height: 45px;
  }
}
header.header .header-content .user-avatar .circle span {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  color: white;
  font-size: 1.5em;
}
header.header .header-content .user-avatar .notification-count {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -3px;
  right: -3px;
  background-color: #ff4b7c;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  header.header .header-content .user-avatar .notification-count {
    width: 18px;
    height: 18px;
  }
}
header.header .header-content .user-avatar .close-btn {
  display: none;
}
header.header .header-content .user-avatar.active img {
  opacity: 0;
}
header.header .header-content .user-avatar.active .close-btn {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: #f3f5f7;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  header.header .header-content .user-avatar.active .close-btn {
    width: 45px;
    height: 45px;
  }
}
header.header .header-content .search {
  width: 100%;
  display: flex;
  padding: 0.5rem 0 0 0;
  margin: 1rem 0.5rem 00.5rem;
  align-items: center;
  border-top: 1px solid #f3f5f7;
}
@media screen and (min-width: 768px) {
  header.header .header-content .search {
    max-width: 28em;
    margin: 0 auto;
    padding: 0;
    order: 2;
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  header.header .header-content .search {
    order: 2;
  }
}
header.header .header-content .search .predictive {
  width: 100%;
  max-width: 30em;
}
header.header .header-content .search .predictive .predictive-search-dropdown {
  position: absolute;
  width: 23em;
}
@media screen and (max-width: 767px) {
  header.header .header-content .search .predictive .predictive-search-dropdown {
    position: absolute;
    left: 1em;
    right: 1em;
    max-width: 30em;
    width: 90%;
  }
}
header.header .header-content .search .input-wrapper {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  margin-right: 1.2rem;
}
header.header .header-content .search .input-wrapper::after {
  font-family: 'icomoon';
  font-size: 1rem;
  color: #a4afbe;
  display: block;
  content: "\e906";
  position: absolute;
  left: 1.5rem;
  top: 15px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  header.header .header-content .search .input-wrapper::after {
    top: 8px;
    left: 0;
  }
}
header.header .header-content .search .input-wrapper input {
  padding: 14px 2rem 14px 3rem;
}
header.header .header-content .search .input-wrapper input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}
@media screen and (max-width: 767px) {
  header.header .header-content .search .input-wrapper input {
    border: none;
    border-right: 1px solid #f3f5f7;
    border-radius: 0;
    padding: .5rem 0 .5rem 25px;
  }
}
header.header .header-content .search > a {
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 10px;
}
header.header .header-content .search > a span {
  font-size: 1rem;
  margin-right: 0.25rem;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translate(0, -1px);
  -ms-transform: translate(0, -1px);
  transform: translate(0, -1px);
}
@media screen and (max-width: 767px) {
  header.header .header-content.no-search-header {
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 768px) {
  header.header .header-content.no-search-header .header-content h1 {
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  header.header .header-content.no-search-header .header-right {
    width: 100%;
  }
}
header.header .header-content .main-menu {
  width: calc(100vw - 15px);
  background-color: #fff;
  border: 1px solid #e6e7e8;
  padding: 25px 0;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  position: absolute;
  z-index: 999;
  top: 64px;
  right: -25px;
  display: none;
}
@media screen and (min-width: 768px) {
  header.header .header-content .main-menu {
    width: 325px;
    top: 60px;
    right: 0;
    border-radius: 7px;
  }
  header.header .header-content .main-menu::after,
  header.header .header-content .main-menu::before {
    width: 0;
    height: 0;
    display: block;
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    position: absolute;
    top: -7px;
    right: 15px;
  }
  header.header .header-content .main-menu::before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 8px solid #e6e7e8;
    position: absolute;
    top: -9px;
    right: 15px;
  }
}
header.header .header-content .main-menu.active-mobile {
  display: block;
}
header.header .header-content .main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header.header .header-content .main-menu ul li {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  font-size: 1.3rem;
  line-height: 2rem;
  margin: 0.1rem 0;
  padding: 0;
  display: block;
  width: 100%;
}
header.header .header-content .main-menu ul li .menu-header {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 0.9rem;
  color: #a4afbe;
  text-transform: uppercase;
  padding: 0 37.5px;
}
header.header .header-content .main-menu ul li a {
  color: #1c365d;
  text-decoration: none;
  display: block;
  width: 100%;
  transition: all 0.2s ease-in-out;
  padding: 0.65rem 37.5px;
}
header.header .header-content .main-menu ul li a:hover {
  color: #00bfff;
}
header.header .header-content .main-menu ul li a.highlight {
  position: relative;
}
header.header .header-content .main-menu ul li a.highlight::after {
  content: '';
  position: absolute;
  background: #f3f5f7;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
  width: 85%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  max-width: 300px;
}
header.header .header-content .main-menu ul li ul {
  padding: 0 0 1rem 25px;
}
header.header .header-content .main-menu ul li .notification-count {
  font-size: 0.95rem;
  float: right;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 34px;
  height: 34px;
}

.elevated {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.spaced {
  margin-top: 37.5px;
  margin-bottom: 37.5px;
}
.hover-scale:hover {
  transform: scale(1.01);
}
.text-white {
  color: #fff;
}

.hero-landing {
  background: url(../images/landing/hero-bg.svg) no-repeat center top / 1440px auto;
  width: 100%;
  margin: 0 auto;
}
.hero-content {
  padding: 4.2em 25px 0;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content {
    font-size: 90%;
  }
}
@media screen and (max-width: 767px) {
  .hero-content {
    font-size: 60%;
  }
}
.hero-content h2 {
  font-size: 3.4em;
  line-height: 1.3;
  padding: 0;
  margin-bottom: .45em;
  color: #a4afbe;
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
}
.hero-content h2 .highlight {
  text-decoration: underline;
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  white-space: nowrap;
}
.hero-content h2 .highlight.a {
  color: #1c365d;
}
.hero-content h2 .highlight.b {
  color: #00bfff;
}
.hero-content h2 .highlight.c {
  color: #ED5A7D;
}
.hero-content p {
  font-size: 2.45em;
  padding: 0;
  margin-bottom: .8em;
  line-height: 1.4;
  color: #a4afbe;
}
.hero-content.alternate h2 {
  color: #1c365d;
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
}
.hero-content.alternate p {
  color: rgba(28, 54, 93, 0.62);
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}
.hero-content .search-box {
  max-width: 554px;
  margin: 0 auto;
  width: 98%;
}
.hero-content .search-box input {
  color: #696c72;
  font-size: 1.25rem;
  line-height: 1;
  width: 100%;
  padding: 14px 25px 14px 55px;
  margin-bottom: .75em;
  border-color: #1c365d;
  background-image: url(../images/controls/search.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 25px center;
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
}
@media screen and (max-width: 767px) {
  .hero-content .search-box input {
    font-size: 2.9vw;
  }
}
.hero-content .search-box .location {
  font-size: 1.4em;
  line-height: 1.4em;
  padding: 0 0 0 2em;
  margin: 0;
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  background: url(../images/controls/location.svg) no-repeat 0 center / 12px 18px;
  display: inline-block;
}
.hero-content .graphic img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 952px;
  margin: 2em auto 0 auto;
}
.hero-content .scroll-message {
  margin-top: 5.4em;
  margin-bottom: 4em;
  padding-bottom: 3em;
  background: url(../images/controls/scroll-arrow.svg) no-repeat center bottom / 12px 28px;
}
@media screen and (max-width: 767px) {
  .hero-content .scroll-message {
    padding-bottom: 5em;
  }
}
.hero-content .scroll-message h4 {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .04em;
}

.image-carousel {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.image-carousel a {
  font-size: 0.75rem;
  color: #1c365d;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #f3f5f7;
  border-radius: 50%;
}
.image-carousel a.back-btn {
  margin-right: 1rem;
}
.image-carousel a.next-btn {
  margin-left: 1rem;
}
.image-carousel .carousel .slide {
  display: none;
}
.image-carousel .carousel .slide.active {
  display: block;
}
.image-carousel .carousel .slide img {
  max-width: 220px;
  margin-bottom: 0;
}
.image-carousel .pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 0 0 0;
}
.image-carousel .pagination a {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 0.25rem;
  background-color: #f3f5f7;
}
.image-carousel .pagination a.active {
  background-color: #00bfff;
}

/*!
 * Cropper.js v1.4.3
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2018-10-24T13:07:11.429Z
 */
.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}
.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}
.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}
.cropper-modal {
  background-color: #000;
  opacity: .5;
}
.cropper-view-box {
  display: block;
  height: 100%;
  outline-color: rgba(51, 153, 255, 0.75);
  outline: 1px solid #39f;
  overflow: hidden;
  width: 100%;
}
.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: .5;
  position: absolute;
}
.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: calc(33.33333333%);
  left: 0;
  top: calc(33.33333333%);
  width: 100%;
}
.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: calc(33.33333333%);
  top: 0;
  width: calc(33.33333333%);
}
.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: .75;
  position: absolute;
  top: 50%;
  width: 0;
}
.cropper-center:before,
.cropper-center:after {
  background-color: #eee;
  content: ' ';
  display: block;
  position: absolute;
}
.cropper-center:before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}
.cropper-center:after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}
.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: .1;
  position: absolute;
  width: 100%;
}
.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}
.cropper-line {
  background-color: #39f;
}
.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}
.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}
.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}
.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}
.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: .75;
  width: 5px;
}
.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}
.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}
.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}
.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}
.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}
.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}
.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}
.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}
@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: .75;
    width: 5px;
  }
}
.cropper-point.point-se:before {
  background-color: #39f;
  bottom: -50%;
  content: ' ';
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}
.cropper-invisible {
  opacity: 0;
}
.cropper-bg {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}
.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}
.cropper-hidden {
  display: none !important;
}
.cropper-move {
  cursor: move;
}
.cropper-crop {
  cursor: crosshair;
}
.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

.layout-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout-stack > * {
  margin-top: 12.5px;
}
.layout-stack > *:first-child {
  margin-top: 0;
}
.content-wrapper {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: left;
}
@media screen and (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: left;
  }
}
.main-content-container {
  padding: 12.5px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .main-content-container {
    padding: 37.5px;
  }
}
.app.landing {
  background: #fff url(../images/illustrations/buildings.png) no-repeat center calc(100% - 142px);
}
.container {
  margin: 0 auto;
  display: flex;
  width: 100%;
  padding: 0 25px;
  max-width: 1060px;
}

.level {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 25px;
}
.level.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.level.half-padding {
  padding-top: 12.5px;
  padding-bottom: 25px;
}
.level.not-spaced {
  justify-content: center;
}
.level .level-left,
.level .level-right {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}
.level .level-left {
  align-items: center;
  justify-content: flex-start;
}
.level .level-right {
  align-items: center;
  justify-content: flex-end;
}
.level > *:not(.level-right) {
  margin-right: .75rem;
}
.level > *:not(.level-right):last-child {
  margin-right: 0;
}

.list-page-content .action-title,
.list-page-content .list-container li .yoozed-by {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .list-page-content .action-title,
  .list-page-content .list-container li .yoozed-by {
    flex-direction: row;
  }
}
.list-page-content {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.list-page-content .action-title {
  justify-content: center;
  align-items: center;
  flex-flow: row;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .list-page-content .action-title {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
}
.list-page-content .action-title h2 {
  padding: 0;
}
.list-page-content .action-title button {
  margin-left: 25px;
}
.list-page-content h2 {
  text-align: center;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .list-page-content h2 {
    font-size: 1.5rem;
    padding-top: .5rem;
    padding-bottom: 1.5rem;
  }
}
.list-page-content h2.w-back {
  display: flex;
  align-items: flex-start;
}
.list-page-content h2 .text {
  flex: 1 0 auto;
}
.list-page-content h2 .text span {
  margin-right: 1rem;
  display: inline-block;
  -webkit-transform: translate(0, 4px);
  -ms-transform: translate(0, 4px);
  transform: translate(0, 4px);
}
.list-page-content h2 .back {
  flex: 0 0 auto;
}
.list-page-content h2 .back a {
  text-decoration: none;
  font-size: 20px;
}
.list-page-content h5 {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 1rem;
  margin: 0 0 0 0;
  padding-top: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .list-page-content h5 {
    font-size: 1.25rem;
  }
}
.list-page-content .list-container {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  margin: 0 auto;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .list-page-content .list-container {
    padding: 31.25px;
  }
}
.list-page-content .list-container.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.list-page-content .list-container.empty h2 {
  font-size: 1.5rem;
}
.list-page-content .list-container.empty p:last-of-type {
  padding-bottom: 0;
}
.list-page-content .list-container.empty h2:last-of-type {
  padding-bottom: 0;
}
.list-page-content .list-container li {
  list-style: none;
  width: 100%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
  text-align: left;
  border-bottom: 1px solid #f3f5f7;
}
.list-page-content .list-container li:last-of-type,
.list-page-content .list-container li.no-border {
  padding-bottom: 0;
  border-bottom: none;
}
.list-page-content .list-container li + li.no-border {
  margin-top: 25px;
}
.list-page-content .list-container li > a:first-child {
  display: flex;
  flex: 1;
  max-width: 100%;
}
.list-page-content .list-container li .icon-toggle-right {
  color: #d2d7df;
}
.list-page-content .list-container li .friend-count {
  background-color: #EFF1F4;
  padding: 4px 7px;
  border-radius: 15px;
  margin-left: auto;
  display: inline-block;
  flex-shrink: 0;
}
.list-page-content .list-container li .friend-count span {
  line-height: 1;
  font-size: .75rem;
  font-weight: bold;
  color: #8293AA;
}
.list-page-content .list-container li .friend-count span:before {
  content: '';
  display: block;
  float: left;
  width: 15px;
  height: 15px;
  margin-right: 2px;
  border-radius: 50%;
  background: url(../images/yooze-logo-circle.svg) no-repeat 0 0 / cover;
}
.list-page-content .list-container li h4 {
  font-size: 1em;
  font-weight: 500;
  color: #B9C3D0;
  text-align: left;
  padding: 0;
  padding-bottom: 1em;
}
.list-page-content .list-container li .search-result {
  width: 100%;
}
.list-page-content .list-container li .search-result > div:first-child {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.list-page-content .list-container li .search-result > div:first-child > div:first-child {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  min-width: 0;
  padding-right: 0.5em;
}
.list-page-content .list-container li .search-result > div:first-child .icon-container {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-page-content .list-container li .search-result > div:first-child .service-icon {
  font-size: 2em;
}
.list-page-content .list-container li .search-result > div:last-child {
  margin-top: 0.5em;
}
.list-page-content .list-container li .yoozed-by {
  color: #1c365d;
  font-size: 1.2em;
  flex-basis: 100%;
  margin: 1em 0 0 .25em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.list-page-content .list-container li .yoozed-by .avatars {
  margin-left: .75em;
}
.list-page-content .list-container li .yoozed-by span {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
}
.list-page-content .list-container li .yoozed-by .friends {
  text-decoration: underline;
}
.list-page-content .list-container li > img {
  width: 40px;
  height: 40px;
  margin-right: 1.5rem;
  border-radius: 20px;
}
.list-page-content .list-container li .profile-info {
  flex: 1;
  min-width: 0;
  margin-left: 1em;
}
.list-page-content .list-container li .profile-info h5 {
  font-size: 1.2rem;
  line-height: 1.5rem;
  padding: 0;
  margin: 0;
  text-align: left;
  flex-shrink: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-page-content .list-container li .profile-info h6 {
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  font-size: 0.85rem;
  padding: 0.5rem 0 0 0;
}
.list-page-content .list-container li .profile-info p {
  font-size: 0.85rem;
  padding: 0;
}
.list-page-content .list-container li > span {
  margin-left: auto;
  padding-left: 0.5rem;
}
.list-page-content .list-container li > a {
  text-decoration: none;
  color: #1c365d;
  padding-top: 0;
}
.list-page-content .list-container.friends-list li h5 {
  padding: 0;
  margin: 0;
}
.list-page-content .list-container.friends-list li p {
  color: #00bfff;
}
.list-page-content .list-container.friends-list li a {
  align-items: center;
}
.list-page-content .list-container.saved-list .avatar-star {
  position: relative;
}
.list-page-content .list-container.saved-list .avatar-star .star {
  border: 1px solid white;
  border-radius: 80%;
  background-color: #f3c73d;
  display: inline-block;
  position: absolute;
  height: 1.3em;
  width: 1.3em;
  top: -0.1em;
  right: -0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-page-content .list-container.saved-list .avatar-star .star::after {
  display: inline-block;
  color: white;
  font-family: 'icomoon';
  font-size: 0.6em;
  line-height: 0.6em;
  content: '\2605';
}
.list-page-content .list-container.saved-list li a:first-child {
  flex-grow: 1;
  align-items: center;
}
.list-page-content .list-container.saved-list li .friend-count {
  margin-right: 0.5em;
}
.list-page-content .list-container.saved-list li p {
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.list-page-content .list-container.yoozers-list li .profile-info {
  text-align: left;
}
.list-page-content .list-container.yoozers-list li a {
  align-items: center;
}
.list-page-content .category-list-container {
  margin: 0 auto;
  max-width: 500px;
}
.list-page-content .category-list-container .category-list {
  color: #fff;
  padding: 1.5rem;
  margin: 12.5px 0;
  background-color: #FF413C;
  border-radius: 4px;
}
.list-page-content .category-list-container .category-list:first-of-type {
  margin-top: 0;
}
.list-page-content .category-list-container .category-list li {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  list-style: none;
  text-align: left;
  margin: 0;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-page-content .category-list-container .category-list li > span,
.list-page-content .category-list-container .category-list li a {
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 400px) {
  .list-page-content .category-list-container .category-list li > span,
  .list-page-content .category-list-container .category-list li a {
    font-size: 4.5vw;
  }
}
.list-page-content .category-list-container .category-list li > span span,
.list-page-content .category-list-container .category-list li a span {
  font-size: 1.7rem;
  vertical-align: middle;
  margin-right: .75rem;
}
.list-page-content .category-list-container .category-list li > span span.toggle,
.list-page-content .category-list-container .category-list li a span.toggle {
  font-size: 0.85rem;
  margin-right: 0.75rem;
}
.list-page-content .category-list-container .category-list li ul {
  padding: 1rem 0 0 0;
  margin: 0;
}
.list-page-content .category-list-container .category-list li ul li {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1rem 0rem 1rem 2rem;
}
.list-page-content .category-list-container .category-list li ul li:last-of-type {
  padding-bottom: 0;
}
.list-page-content .category-list-container .category-list.automotive {
  background-color: #FF413C;
}
.list-page-content .category-list-container .category-list.beauty-spas {
  background-color: #f33d8c;
}
.list-page-content .category-list-container .category-list.business-services {
  background-color: #f33dbe;
}
.list-page-content .category-list-container .category-list.children {
  background-color: #e83df3;
}
.list-page-content .category-list-container .category-list.fashion {
  background-color: #7370FB;
}
.list-page-content .category-list-container .category-list.finance {
  background-color: #993df3;
}
.list-page-content .category-list-container .category-list.fitness {
  background-color: #6a3df3;
}
.list-page-content .category-list-container .category-list.home-improvement {
  background-color: #3d8cf3;
}
.list-page-content .category-list-container .category-list.insurance {
  background-color: #3dbef3;
}
.list-page-content .category-list-container .category-list.landscaping {
  background-color: #2fe5cb;
}
.list-page-content .category-list-container .category-list.legal-services {
  background-color: #36df97;
}
.list-page-content .category-list-container .category-list.marketing-advertising {
  background-color: #83d932;
}
.list-page-content .category-list-container .category-list.medical {
  background-color: #b6dd18;
}
.list-page-content .category-list-container .category-list.pets {
  background-color: #f3e300;
}
.list-page-content .category-list-container .category-list.photographer {
  background-color: #f3c73d;
}
.list-page-content .category-list-container .category-list.real-estate {
  background-color: #f3a43d;
}
.list-page-content .category-list-container .category-list.special-events {
  background-color: #f3773d;
}
.list-page-content .category-list-container .category-list.other {
  background-color: #FF413C;
}
.list-page-content .no-search-results {
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}
.list-page-content .no-search-results .dissapointed-face {
  font-size: 2rem;
  vertical-align: center;
}
.list-page-content .no-search-results .dissapointed-face:before {
  content: "\01F614";
}
.list-page-content .searching-msg {
  font-size: 1.2rem;
  display: block;
  width: 100%;
  text-align: center;
  padding-bottom: 2rem;
}
.list-page-content .has-results > p {
  margin-top: 1em;
  text-align: center;
}


.modal-open {
  overflow: hidden;
}
.cursor-pointer {
  cursor: pointer;
}
.hover-underline:hover {
  text-decoration: underline;
}
.modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 30, 50, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  animation: fade-in 0.4s;
}
.modal-container .modal-content {
  text-align: center;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  max-height: 100%;
  overflow-y: auto;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 7px;
  position: relative;
  animation: bounce .5s;
}
@media screen and (min-width: 768px) {
  .modal-container .modal-content {
    padding: 37.5px;
  }
}
.modal-container .modal-content .close-btn {
  text-decoration: none;
  display: block;
  position: absolute;
  top: 16.66666667px;
  right: 16.66666667px;
  cursor: pointer;
}
.modal-container .modal-content h2 {
  font-size: 1.4rem;
  padding-bottom: 1.2rem;
}
@media screen and (min-width: 768px) {
  .modal-container .modal-content h2 {
    font-size: 1.8rem;
    padding-bottom: 1.8rem;
  }
}
.modal-container .modal-content form .form-row:first-of-type {
  padding-top: 0;
}
.modal-container .modal-content label {
  text-align: left;
}
.modal-container .modal-content label.centered-label {
  text-align: center;
}
.modal-container .modal-content .referral-card {
  padding: 1rem 0;
  margin: 0;
  box-shadow: none;
}
.modal-container .modal-content .switch-providers-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.modal-container .modal-content .switch-providers-avatars img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.modal-container .modal-content .switch-providers-avatars span {
  margin: 0 0.75rem;
}
.modal-container .modal-content .facebook-share {
  max-width: 140px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .modal-container .modal-content .facebook-share {
    max-width: 220px;
  }
}
.modal-container .modal-content .user-avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
}
.modal-container .modal-content .seperation-heading {
  margin-bottom: 1.5rem;
}
.modal-container .new-employee-select li input[type=radio] + label:before {
  flex-shrink: 0;
  margin-right: 1rem;
}
.modal-container .new-employee-select li input[type=radio] + label img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 1rem 0 0;
}
.modal-container .new-employee-select li input[type=radio] + label .provider-info h4 {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  font-size: 1.1rem;
  line-height: 1.1rem;
  padding: 0 0 0.5rem;
}
.modal-container .new-employee-select li input[type=radio] + label .provider-info h5 {
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0 0 0.25rem;
}
.modal-container .new-employee-select li input[type=radio] + label .provider-info p {
  font-size: 1rem;
  color: #a4afbe;
  padding: 0;
}
.modal-container.note .modal-content {
  margin: inherit;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bounce {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.onboarding-content {
  width: 100%;
  max-width: 600px;
  padding: 12.5px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .onboarding-content {
    padding: 25px;
  }
}
.onboarding-content.select-providers {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .onboarding-content.select-providers {
    padding: 25px;
  }
}
.onboarding-content h2 {
  position: relative;
}
.onboarding-content h2 .edit-link {
  font-size: 0.8rem;
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #f3f5f7;
  border-radius: 50%;
}
.onboarding-content h2 .dissapointed-face {
  font-size: 2rem;
  vertical-align: center;
}
.onboarding-content h2 .dissapointed-face:before {
  content: "\01F614";
}
@media screen and (min-width: 768px) {
  .onboarding-content .signup-card {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
    border-radius: 4px;
    padding: 25px 12.5px;
    margin: 20px 0;
    text-align: center;
    position: relative;
    padding: 50px;
  }
  .onboarding-content .signup-card.empty {
    opacity: 0;
    animation: 0.5s fadein ease-in 0.5s forwards;
  }
  .onboarding-content .signup-card.empty h2 {
    font-size: 1.5rem;
  }
  .onboarding-content .signup-card.empty p:last-of-type {
    padding-bottom: 0;
  }
  .onboarding-content .signup-card.empty h2:last-of-type {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) and screen and (min-width: 768px) {
  .onboarding-content .signup-card {
    padding: 31.25px;
  }
}
.onboarding-content .option-card {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  position: relative;
  margin-bottom: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .onboarding-content .option-card {
    padding: 31.25px;
  }
}
.onboarding-content .option-card.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.onboarding-content .option-card.empty h2 {
  font-size: 1.5rem;
}
.onboarding-content .option-card.empty p:last-of-type {
  padding-bottom: 0;
}
.onboarding-content .option-card.empty h2:last-of-type {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .onboarding-content .option-card {
    margin-bottom: 2.5rem;
    padding: 50px;
  }
}
.onboarding-content .option-card h2 {
  font-size: 2rem;
  padding-bottom: 1rem;
}
.onboarding-content .option-card p {
  font-size: 1.1rem;
  line-height: 1.25rem;
  padding-bottom: 1rem;
}
.onboarding-content .option-card h5 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  padding: 1.25rem 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .onboarding-content .option-card h5 {
    line-height: 1.75rem;
    padding: 1.5rem 0;
  }
}
.onboarding-content .option-card .business-info-label {
  font-weight: bold;
  font-size: 120%;
}
.onboarding-content .option-card .business-info {
  padding-left: 1rem;
}
.onboarding-content .option-card .business-info h6 {
  font-size: 1.4rem;
  line-height: 1.5rem;
  padding: 0 0 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .onboarding-content .option-card .business-info h6 {
    font-size: 1.5rem;
    line-height: 1.85rem;
    padding-bottom: 0.75rem;
  }
}
.onboarding-content .option-card .business-info p {
  font-size: 1rem;
  padding-bottom: 0.5rem;
}
.onboarding-content .option-card .business-info p:last-of-type {
  padding-bottom: 0;
}
.onboarding-content .save-provider-quesiton-card {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .onboarding-content .save-provider-quesiton-card {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
    border-radius: 4px;
    padding: 25px 12.5px;
    margin: 20px 0;
    text-align: center;
    position: relative;
    padding: 50px;
  }
  .onboarding-content .save-provider-quesiton-card.empty {
    opacity: 0;
    animation: 0.5s fadein ease-in 0.5s forwards;
  }
  .onboarding-content .save-provider-quesiton-card.empty h2 {
    font-size: 1.5rem;
  }
  .onboarding-content .save-provider-quesiton-card.empty p:last-of-type {
    padding-bottom: 0;
  }
  .onboarding-content .save-provider-quesiton-card.empty h2:last-of-type {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) and screen and (min-width: 768px) {
  .onboarding-content .save-provider-quesiton-card {
    padding: 31.25px;
  }
}
.onboarding-content .save-provider-quesiton-card h5 {
  font-size: 1.1rem;
  line-height: 1.5rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .onboarding-content .save-provider-quesiton-card h5 {
    font-size: 1.5rem;
    line-height: 1.85rem;
  }
}
.onboarding-content .btn {
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 768px) {
  .onboarding-content .btn {
    margin-bottom: 2.5rem;
  }
}
.onboarding-content img {
  width: 100%;
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 768px) {
  .onboarding-content img {
    margin-bottom: 2.5rem;
  }
}
.onboarding-content img.create-profile,
.onboarding-content img.small-img {
  max-width: 100px;
}
@media screen and (min-width: 768px) {
  .onboarding-content img.create-profile,
  .onboarding-content img.small-img {
    max-width: 130px;
  }
}
.onboarding-content img.building-illo {
  max-width: 145px;
}
@media screen and (min-width: 768px) {
  .onboarding-content img.building-illo {
    max-width: 300px;
  }
}
.onboarding-content img.emoji-img {
  width: 24px;
  margin: 0;
  vertical-align: middle;
}
.onboarding-content img.yooyoo-illo {
  max-width: 236px;
}
@media screen and (min-width: 768px) {
  .onboarding-content img.yooyoo-illo {
    max-width: 360px;
  }
}
.onboarding-content img.yooyoo-complete {
  max-width: 145px;
}
@media screen and (min-width: 768px) {
  .onboarding-content img.yooyoo-complete {
    max-width: 315px;
  }
}
.onboarding-content img.facebook-share {
  max-width: 140px;
}
@media screen and (min-width: 768px) {
  .onboarding-content img.facebook-share {
    max-width: 220px;
  }
}
.onboarding-content img.avatar {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .onboarding-content img.avatar {
    width: 120px;
    height: 120px;
  }
}
.onboarding-content img.referrals-thanks {
  max-width: 207px;
}
@media screen and (min-width: 768px) {
  .onboarding-content img.referrals-thanks {
    max-width: 260px;
  }
}
.onboarding-content img.search-result-img {
  margin: 0;
}
.onboarding-content .select-providers-accordian {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .onboarding-content .select-providers-accordian {
    padding: 31.25px;
  }
}
.onboarding-content .select-providers-accordian.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.onboarding-content .select-providers-accordian.empty h2 {
  font-size: 1.5rem;
}
.onboarding-content .select-providers-accordian.empty p:last-of-type {
  padding-bottom: 0;
}
.onboarding-content .select-providers-accordian.empty h2:last-of-type {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .onboarding-content .select-providers-accordian {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
  }
}
.onboarding-content .select-providers-accordian .provider .section-header {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 20px 12.5px;
  background-color: #1c365d;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.onboarding-content .select-providers-accordian .provider .section-header .after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 8px;
  border-top-color: #fff;
  border-bottom: none;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: none;
}
.onboarding-content .select-providers-accordian .provider .section-header::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 8px;
  border-top-color: #fff;
  border-bottom: none;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: none;
}
.onboarding-content .select-providers-accordian .provider .section-header.automotive {
  background-color: #FF413C;
}
.onboarding-content .select-providers-accordian .provider .section-header.automotive::after {
  border-top-color: #FF413C;
}
.onboarding-content .select-providers-accordian .provider .section-header.beauty-spas {
  background-color: #f33d8c;
}
.onboarding-content .select-providers-accordian .provider .section-header.beauty-spas::after {
  border-top-color: #f33d8c;
}
.onboarding-content .select-providers-accordian .provider .section-header.business-services {
  background-color: #f33dbe;
}
.onboarding-content .select-providers-accordian .provider .section-header.business-services::after {
  border-top-color: #f33dbe;
}
.onboarding-content .select-providers-accordian .provider .section-header.children {
  background-color: #e83df3;
}
.onboarding-content .select-providers-accordian .provider .section-header.children::after {
  border-top-color: #e83df3;
}
.onboarding-content .select-providers-accordian .provider .section-header.fashion {
  background-color: #7370FB;
}
.onboarding-content .select-providers-accordian .provider .section-header.fashion::after {
  border-top-color: #7370FB;
}
.onboarding-content .select-providers-accordian .provider .section-header.finance {
  background-color: #993df3;
}
.onboarding-content .select-providers-accordian .provider .section-header.finance::after {
  border-top-color: #993df3;
}
.onboarding-content .select-providers-accordian .provider .section-header.fitness {
  background-color: #6a3df3;
}
.onboarding-content .select-providers-accordian .provider .section-header.fitness::after {
  border-top-color: #6a3df3;
}
.onboarding-content .select-providers-accordian .provider .section-header.home-improvement {
  background-color: #3d8cf3;
}
.onboarding-content .select-providers-accordian .provider .section-header.home-improvement::after {
  border-top-color: #3d8cf3;
}
.onboarding-content .select-providers-accordian .provider .section-header.insurance {
  background-color: #3dbef3;
}
.onboarding-content .select-providers-accordian .provider .section-header.insurance::after {
  border-top-color: #3dbef3;
}
.onboarding-content .select-providers-accordian .provider .section-header.landscaping {
  background-color: #2fe5cb;
}
.onboarding-content .select-providers-accordian .provider .section-header.landscaping::after {
  border-top-color: #2fe5cb;
}
.onboarding-content .select-providers-accordian .provider .section-header.legal-services {
  background-color: #36df97;
}
.onboarding-content .select-providers-accordian .provider .section-header.legal-services::after {
  border-top-color: #36df97;
}
.onboarding-content .select-providers-accordian .provider .section-header.marketing-advertising {
  background-color: #83d932;
}
.onboarding-content .select-providers-accordian .provider .section-header.marketing-advertising::after {
  border-top-color: #83d932;
}
.onboarding-content .select-providers-accordian .provider .section-header.medical {
  background-color: #b6dd18;
}
.onboarding-content .select-providers-accordian .provider .section-header.medical::after {
  border-top-color: #b6dd18;
}
.onboarding-content .select-providers-accordian .provider .section-header.pets {
  background-color: #f3e300;
}
.onboarding-content .select-providers-accordian .provider .section-header.pets::after {
  border-top-color: #f3e300;
}
.onboarding-content .select-providers-accordian .provider .section-header.photographer {
  background-color: #f3c73d;
}
.onboarding-content .select-providers-accordian .provider .section-header.photographer::after {
  border-top-color: #f3c73d;
}
.onboarding-content .select-providers-accordian .provider .section-header.real-estate {
  background-color: #f3a43d;
}
.onboarding-content .select-providers-accordian .provider .section-header.real-estate::after {
  border-top-color: #f3a43d;
}
.onboarding-content .select-providers-accordian .provider .section-header.special-events {
  background-color: #f3773d;
}
.onboarding-content .select-providers-accordian .provider .section-header.special-events::after {
  border-top-color: #f3773d;
}
.onboarding-content .select-providers-accordian .provider .section-header.special-events {
  background-color: #d35419;
}
.onboarding-content .select-providers-accordian .provider .section-header.special-events::after {
  border-top-color: #d35419;
}
.onboarding-content .select-providers-accordian .provider .section-header span {
  font-size: 1.8rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.onboarding-content .select-providers-accordian .provider .section-header span.icon-check {
  margin: -8px 0 0 8px;
  font-size: .7rem;
  display: inline-block;
}
.onboarding-content .select-providers-accordian .provider .refer-content {
  padding: 12.5px;
  display: none;
}
@media screen and (min-width: 768px) {
  .onboarding-content .select-providers-accordian .provider .refer-content {
    padding: 25px;
  }
}
.onboarding-content .select-providers-accordian .provider .refer-content .centered-label {
  font-size: 1.2rem;
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  color: #1c365d;
  padding-bottom: 0;
}
.onboarding-content .select-providers-accordian .provider.active .refer-content {
  display: block;
}
.onboarding-content .select-providers-accordian .provider.active .section-header .after {
  display: block;
}
@media screen and (max-width: 767px) {
  .onboarding-content .radio-cards li input[type=radio] + label:before {
    margin-right: 8px;
  }
}
.onboarding-content .radio-cards li input[type=radio] + label img,
.onboarding-content .radio-cards li input[type=radio] + label .inline-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px #e6e7e8;
}
@media screen and (min-width: 768px) {
  .onboarding-content .radio-cards li input[type=radio] + label img,
  .onboarding-content .radio-cards li input[type=radio] + label .inline-avatar {
    width: 60px;
    height: 60px;
  }
}
.onboarding-content .radio-cards li input[type=radio] + label .provider-info {
  padding-left: 15px;
}
.onboarding-content .radio-cards li input[type=radio] + label .provider-info h4 {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
  padding: 0 0 .1rem;
  color: #374250;
}
.onboarding-content .radio-cards li input[type=radio] + label .provider-info h5 {
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  padding: 0 0 .1rem;
}
.onboarding-content .radio-cards li input[type=radio] + label .provider-info p {
  font-size: 1rem;
  color: #a4afbe;
  padding: 0;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .onboarding-content .radio-cards li input[type=radio] + label .provider-info {
    padding-left: 10px;
  }
  .onboarding-content .radio-cards li input[type=radio] + label .provider-info h4 {
    font-size: .8rem;
  }
  .onboarding-content .radio-cards li input[type=radio] + label .provider-info h5 {
    font-size: .8rem;
  }
  .onboarding-content .radio-cards li input[type=radio] + label .provider-info p {
    font-size: .75rem;
    line-height: 1.3;
  }
}
.onboarding-content a.text-btn.not-listed {
  margin-top: 1rem;
}
.onboarding-content .results-header {
  font-size: 1.5em;
  margin-top: 1em;
  color: #374250;
}
.onboarding-content .radio-cards-new li > .btn {
  margin-bottom: 0;
}
.onboarding-content .radio-cards-new li.card {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: left;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .onboarding-content .radio-cards-new li.card {
    padding: 31.25px;
  }
}
.onboarding-content .radio-cards-new li.card.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.onboarding-content .radio-cards-new li.card.empty h2 {
  font-size: 1.5rem;
}
.onboarding-content .radio-cards-new li.card.empty p:last-of-type {
  padding-bottom: 0;
}
.onboarding-content .radio-cards-new li.card.empty h2:last-of-type {
  padding-bottom: 0;
}
.onboarding-content .radio-cards-new li.card .checkbox-circle {
  border: 1px solid #d2d7df;
  background-color: #fbfbfb;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 13px;
  margin-right: 1em;
}
.onboarding-content .radio-cards-new li.card .checkbox-circle.checked {
  border-color: #83d932;
  display: flex;
  justify-content: center;
  align-items: center;
}
.onboarding-content .radio-cards-new li.card .checkbox-circle.checked:after {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #83d932;
  content: "";
}
.onboarding-content .radio-cards-new li.card .provider-info {
  text-align: left;
  padding-left: 15px;
}
.onboarding-content .radio-cards-new li.card .provider-info h4 {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
  padding: 0 0 .1rem;
  color: #374250;
}
.onboarding-content .radio-cards-new li.card .provider-info h5 {
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  padding: 0 0 .1rem;
}
.onboarding-content .radio-cards-new li.card .provider-info p {
  font-size: 1rem;
  color: #a4afbe;
  padding: 0;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .onboarding-content .radio-cards-new li.card .provider-info {
    padding-left: 10px;
  }
  .onboarding-content .radio-cards-new li.card .provider-info h4 {
    font-size: .8rem;
  }
  .onboarding-content .radio-cards-new li.card .provider-info h5 {
    font-size: .8rem;
  }
  .onboarding-content .radio-cards-new li.card .provider-info p {
    font-size: .75rem;
    line-height: 1.3;
  }
}
.onboarding-content .continue p {
  padding-bottom: 0.5em;
}
.alternate-auth {
  font-size: 1rem;
  padding-bottom: 0;
}

.page-container {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.page {
  display: block;
  box-sizing: border-box;
  margin: 0px auto;
  width: 100%;
  max-width: 1200px;
  padding: 1em 2em 2em 2em;
}
.page.content-page {
  padding-top: 5em;
  max-width: 920px;
}
@media screen and (max-width: 767px) {
  .page.content-page {
    padding-top: 2.5em;
    font-size: 70%;
  }
}
.page.no-padding {
  padding: 0;
}
.page.forward {
  animation: slide-in 0.5s;
}
.page.back {
  animation: slide-in-from-left 0.5s;
}
@keyframes slide-in {
  0% {
    transform: translateX(10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-from-left {
  0% {
    transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.page-title {
  display: flex;
  justify-content: space-between;
  align-items: left;
  padding-top: 1em;
}
.page-title h1 {
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
}
.margin-1-em {
  margin: 1em;
}
.text-decoration-solid {
  text-decoration: solid!important;
}
.text-transform-none {
  text-transform: none!important;
}

.predictive-search-dropdown {
  font-size: 1rem;
  position: relative;
  background: #fbfbfb;
  z-index: 2;
}
.predictive-search-dropdown h4 {
  font-size: 0.8em;
  padding: 1rem;
  font-weight: 500;
  color: #B9C3D0;
  text-align: left;
}
.predictive-search-dropdown .result {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 1rem;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
}
.predictive-search-dropdown .result:hover {
  background-color: #fbfbfb;
}
.predictive-search-dropdown .result > div {
  flex: 1;
  flex-shrink: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  max-width: 70%;
  min-width: 50%;
  text-overflow: ellipsis;
  overflow: hidden;
}
.predictive-search-dropdown .result > div > .icon {
  flex-shrink: 0;
  height: 2.3em;
  width: 2.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5em;
}
.predictive-search-dropdown .result > div > span:last-child {
  color: black;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.4;
}
.predictive-search-dropdown .result > span {
  color: #B9C3D0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 60%;
  min-width: 40%;
  flex-shrink: 0;
  text-align: right;
  line-height: 1.4;
  width: 10px;
}
.predictive-search-dropdown .service-icon {
  font-size: 1.5em;
}
.predictive-search-dropdown ul {
  border: 1px solid #d2d7df;
  border-radius: 10px;
  position: absolute;
  top: 7px;
  width: 100%;
  background-color: #fff;
  margin: 0;
  padding: 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  padding-bottom: 0.6rem;
  overflow: hidden;
}
.predictive-search-dropdown ul li a {
  display: block;
  text-decoration: none;
}
.predictive-search-dropdown ul li.add {
  cursor: pointer;
  background: #7370FB url(../images/controls/icon-plus-white.svg) no-repeat 1em center / 23px 23px;
  margin-bottom: 0;
  color: #fff;
  padding: .85em .75em .85em 0.25em;
}
.predictive-search-dropdown ul li.add:hover {
  background-color: #6966fb;
}
.predictive-search-dropdown ul li.view-all {
  background: #fff;
  margin-bottom: 0;
  padding: .85em .75em .85em 0.25em;
}
.predictive-search-dropdown ul li.view-all a {
  text-align: center;
  display: block;
}
.predictive-search-dropdown.with-add ul {
  padding-bottom: 0;
  max-height: 10em;
  overflow: scroll;
}
.predictive-search-card .result {
  cursor: pointer;
}
.predictive-search-card ul li > div > a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.profile-header .profile-info .profile-name .name-actions {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .profile-header .profile-info .profile-name .name-actions {
    flex-direction: row;
  }
}
.profile-header {
  width: 100%;
  padding: 25px;
  background-color: #fff;
  border-bottom: 1px solid #f3f5f7;
}
@media screen and (min-width: 768px) {
  .profile-header {
    padding: 50px 25px;
  }
}
.profile-header .mobile-control {
  display: none;
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
}
@media screen and (max-width: 767px) {
  .profile-header .mobile-control {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .profile-header .mob-hidden {
    display: none !important;
  }
}
.profile-header .mob-visible {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .profile-header .mob-visible {
    display: inherit !important;
  }
}
@media screen and (min-width: 768px) {
  .profile-header .content-wrapper {
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .profile-header .content-wrapper > .yooze-button {
    display: none;
  }
}
.profile-header .profile-info {
  width: 100%;
  display: flex;
}
@media screen and (min-width: 768px) {
  .profile-header .profile-info {
    width: 42%;
  }
}
@media screen and (max-width: 767px) {
  .profile-header .profile-info {
    margin-bottom: 1rem;
  }
}
.profile-header .profile-info .profile-name {
  margin-left: 1rem;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column nowrap;
}
@media screen and (max-width: 767px) {
  .profile-header .profile-info .profile-name {
    margin-left: .5rem;
  }
  .profile-header .profile-info .profile-name .name-actions {
    display: flex;
    justify-content: space-between;
  }
  .profile-header .profile-info .profile-name .name-actions .yooze-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 100%;
    min-width: 80px;
    margin-bottom: 10px;
    padding: 0;
  }
  .profile-header .profile-info .profile-name .name-actions .text-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 100%;
    min-width: 80px;
    height: 30px;
    font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
    cursor: pointer;
    color: #a4afbe;
    line-height: 1rem;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease-in-out;
    text-align: center;
  }
  .profile-header .profile-info .profile-name .name-actions .text-btn > span {
    font-size: 16px;
    margin: auto;
  }
  .profile-header .profile-info .profile-name .name-actions .text-btn > span .icon-star {
    margin-right: auto;
  }
  .profile-header .profile-info .profile-name .name-actions .text-btn > span .icon-star-full {
    margin-right: auto;
  }
  .profile-header .profile-info .profile-name .name-actions .save-group .text-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 100%;
    min-width: 80px;
    height: 30px;
    font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
    cursor: pointer;
    color: #a4afbe;
    line-height: 1rem;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease-in-out;
    text-align: center;
  }
  .profile-header .profile-info .profile-name .name-actions .save-group .text-btn > span {
    font-size: 16px;
    margin: auto;
  }
  .profile-header .profile-info .profile-name .name-actions .save-group .text-btn > span .icon-star {
    margin-right: auto;
  }
  .profile-header .profile-info .profile-name .name-actions .save-group .text-btn > span .icon-star-full {
    margin-right: auto;
  }
  .profile-header .profile-info .profile-name .name-actions .you-yooze-pill {
    margin-left: 0;
    height: 30px;
    display: flex!important;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px!important;
  }
  .profile-header .profile-info .profile-name .provider-detail {
    display: none;
  }
}
.profile-header .profile-info .profile-name .provider-detail a {
  text-decoration: underline;
}
.profile-header .profile-info .profile-name .provider-detail a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .profile-header .profile-info .profile-name .provider-detail {
    flex-direction: column;
  }
  .profile-header .profile-info .profile-name .provider-detail .name-actions {
    display: none;
  }
}
.profile-header .profile-info .profile-name .name-actions {
  align-items: center;
}
@media screen and (max-width: 1159px) {
  .profile-header .profile-info .profile-name .name-actions {
    flex-flow: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .profile-header .profile-info .profile-name .name-actions {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.profile-header .profile-info .profile-name .name-actions .you-yooze-pill {
  margin-left: 16.66666667px;
  background-color: #83d932;
  color: #fff;
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  padding: .25em .8em;
  font-size: 1em;
  border-radius: 2em;
  flex-shrink: 0;
}
.profile-header .profile-info .profile-name .name-actions .you-yooze-pill .icon-check {
  font-size: .65em;
  margin-right: .25em;
}
@media screen and (max-width: 1159px) {
  .profile-header .profile-info .profile-name .name-actions .you-yooze-pill {
    margin: 0 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .profile-header .profile-info .profile-name .name-actions .you-yooze-pill {
    margin: 0 auto 0 10px;
    font-size: 85%;
  }
}
@media screen and (max-width: 320px) {
  .profile-header .profile-info .profile-name .name-actions .you-yooze-pill {
    margin-left: 8px;
    font-size: 80%;
  }
}
.profile-header .profile-info .profile-name .name-actions .save-group {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .profile-header .profile-info .profile-name .name-actions .save-group {
    margin-left: 0.5rem;
  }
}
.profile-header .profile-info .profile-name .name-actions .save-group button {
  padding: 0;
  color: #a4afbe;
  outline: 0;
  cursor: pointer;
}
@media screen and (max-width: 1159px) {
  .profile-header .profile-info .profile-name .name-actions .save-group button {
    margin: 0 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .profile-header .profile-info .profile-name .name-actions .save-group button span {
    font-size: .8rem;
  }
}
@media screen and (max-width: 320px) {
  .profile-header .profile-info .profile-name .name-actions .save-group button span {
    font-size: .75rem;
  }
}
.profile-header .profile-info .profile-name .name-actions .save-group button .icon-star,
.profile-header .profile-info .profile-name .name-actions .save-group button .icon-star-full {
  margin-top: -5px;
  display: inline-block;
}
.profile-header .profile-info .profile-name .name-actions .save-group button .icon-star-full {
  color: #f3a43d;
}
.profile-header .profile-info .profile-name h2 {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 1.15rem;
  padding: 0 0 0.25rem 0;
}
@media screen and (min-width: 768px) {
  .profile-header .profile-info .profile-name h2 {
    font-size: 1.8rem;
    line-height: 1.8rem;
    padding: 0 0 0.4rem 0;
  }
}
@media screen and (max-width: 767px) {
  .profile-header .profile-info .profile-name h2 {
    max-width: 150px;
    font-size: .95rem;
  }
}
.profile-header .profile-info .profile-name nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .profile-header .profile-info .profile-name nav {
    flex-direction: column;
  }
}
.profile-header .profile-info .profile-name nav p {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  font-size: 1rem;
}
.profile-header .profile-info .profile-name nav p:not(.see-more) {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .profile-header .profile-info .profile-name nav p {
    font-size: 1.2rem;
  }
  .profile-header .profile-info .profile-name nav p:last-of-type {
    display: none;
  }
  .profile-header .profile-info .profile-name nav p:first-of-type:not(.see-more) {
    display: block;
  }
}
.profile-header .profile-info .profile-name nav a {
  text-decoration: none;
}
.profile-header .profile-info .profile-name nav a:hover {
  text-decoration: underline;
}
.profile-header .profile-info .profile-name nav a span {
  font-size: 0.6rem;
}
.profile-header .profile-info .profile-name nav h6 {
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  color: #a4afbe;
  font-size: 1rem;
  padding: 0.25rem 0 0 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .profile-header .profile-info .profile-name nav h6 {
    display: inline;
    font-size: 1.2rem;
  }
}
.profile-header .inactive {
  font-size: 1.2rem;
}
.profile-header .you-yooze-pill {
  cursor: pointer;
}
.profile-header .profile-yoozers {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .profile-header .profile-yoozers {
    width: 30%;
    margin: 0;
    padding-left: 0.5rem;
    padding-top: 0;
    border-top: none;
    order: 3;
    display: flex;
    align-items: center;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .profile-header .profile-yoozers .yoozers-avatars {
    margin-right: 1rem;
    flex-shrink: 0;
  }
}
.profile-header .profile-yoozers .yoozers-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: -15px;
}
.profile-header .profile-yoozers .yoozers-avatars img:nth-child(1) {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .profile-header .profile-yoozers .avatars {
    margin-right: 0.2rem;
    flex-shrink: 0;
  }
}
.profile-header .profile-yoozers a {
  text-decoration: none;
  color: #1c365d;
}
.profile-header .profile-yoozers p {
  padding: 0;
  padding-left: .5rem;
}
.profile-header .profile-yoozers p strong {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  color: #1c365d;
}
@media screen and (min-width: 768px) {
  .profile-header .profile-yoozers p {
    font-size: 1rem;
    line-height: 1.1;
    margin: 0;
  }
}
.profile-header .btn.yooze-button {
  width: auto;
  min-width: 200px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .profile-header .btn.yooze-button {
    padding: 1.2rem 3rem;
  }
}
.profile-header .see-more {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  text-decoration: none;
  margin: 1rem 0 0 0;
  color: #a4afbe;
  cursor: pointer;
  background-image: url(../images/controls/arrow-down-small.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px 7px;
  padding: 0 20px 0 0;
}
.profile-header .see-more.open {
  background-image: url(../images/controls/arrow-up-small.svg);
}
@media screen and (min-width: 768px) {
  .profile-header .see-more {
    display: none;
  }
}
.profile-header .see-more.personal {
  margin: 0;
}
.profile-header .profile-bio {
  margin-top: 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .profile-header .profile-bio {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .profile-header .profile-bio {
    border-top: 1px solid #f3f5f7;
    padding-top: 1.5rem;
  }
}
.profile-header .profile-bio p {
  font-size: 0.9rem;
  line-height: 1.2rem;
  padding: 0 0 0.5rem 0;
}
.profile-header .profile-bio p:last-of-type {
  margin-bottom: 0;
}
.profile-header .profile-bio h6 {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 0.9rem;
  padding: 1.25rem 0 0.5rem 0;
}
.profile-header .profile-bio h6:first-of-type {
  margin-top: 0;
}
.profile-header .profile-bio a {
  color: #1c365d;
}
.profile-header .btn {
  width: 100%;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .profile-header .btn {
    width: auto;
    flex-shrink: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .profile-header.personal-profile .content-wrapper {
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .profile-header.personal-profile .profile-info {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .profile-header .mob-call-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 45px;
    height: 40px;
    font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1rem;
    text-decoration: none;
    background-color: #00bfff;
    border-radius: 30px;
    border: none;
    width: auto;
    transition: all 0.2s ease-in-out;
    text-align: center;
    text-transform: uppercase;
  }
  .profile-header .mob-call-button:before {
    display: block;
    content: "";
    background-image: url(images/phone-png.png);
    width: 25px;
    height: 25px;
    background-size: 25px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 20px;
  }
  .profile-header .mob-call-button a {
    color: #fff;
    text-transform: initial;
  }
}
.profile-content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .profile-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.profile-content .profile-left {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .profile-content .profile-left {
    margin-right: 50px;
  }
}
.profile-content .profile-left .employees-header {
  margin-top: 1em;
}
.profile-content .profile-left h5 {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .profile-content .profile-left h5 {
    font-size: 1.25rem;
  }
}
.profile-content .profile-left h5.yoozes-header {
  color: #a4afbe;
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin: 20px 0;
  padding: 0;
}
.profile-content .profile-left .employee-header {
  margin-top: 1em;
}
.profile-content .profile-left .services-card {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .profile-content .profile-left .services-card {
    padding: 31.25px;
  }
}
.profile-content .profile-left .services-card.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.profile-content .profile-left .services-card.empty h2 {
  font-size: 1.5rem;
}
.profile-content .profile-left .services-card.empty p:last-of-type {
  padding-bottom: 0;
}
.profile-content .profile-left .services-card.empty h2:last-of-type {
  padding-bottom: 0;
}
.profile-content .profile-left .services-card h3 {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 1rem;
  padding: 0 0 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .profile-content .profile-left .services-card h3 {
    font-size: 1.25rem;
  }
}
.profile-content .profile-left .services-card .pill-btn {
  margin: 0.25rem 0.125rem;
}
@media screen and (min-width: 768px) {
  .profile-content .profile-left .services-card .pill-btn {
    margin: 0.5rem 0.2rem;
  }
}
.profile-content .profile-right {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .profile-content .profile-right {
    width: 300px;
    flex-shrink: 0;
  }
}
.profile-content .profile-right .card {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .profile-content .profile-right .card {
    padding: 31.25px;
  }
}
.profile-content .profile-right .card.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.profile-content .profile-right .card.empty h2 {
  font-size: 1.5rem;
}
.profile-content .profile-right .card.empty p:last-of-type {
  padding-bottom: 0;
}
.profile-content .profile-right .card.empty h2:last-of-type {
  padding-bottom: 0;
}
.profile-content .profile-right .card.contact-card,
.profile-content .profile-right .card.about-card {
  display: none;
}
@media screen and (min-width: 768px) {
  .profile-content .profile-right .card.contact-card,
  .profile-content .profile-right .card.about-card {
    display: block;
  }
}
.profile-content .profile-right .card.contact-card .about-text:empty,
.profile-content .profile-right .card.about-card .about-text:empty {
  border-bottom: solid 20px #f3f5f7;
}
.profile-content .profile-right .card.contact-card .about-text:empty::before,
.profile-content .profile-right .card.about-card .about-text:empty::before,
.profile-content .profile-right .card.contact-card .about-text:empty::after,
.profile-content .profile-right .card.about-card .about-text:empty::after {
  content: '';
  display: block;
  margin: 10px 0;
  width: 100%;
  height: 20px;
  background-color: #f3f5f7;
  width: 80%;
}
.profile-content .profile-right .card.contact-card .about-text:empty::before,
.profile-content .profile-right .card.about-card .about-text:empty::before {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .profile-content .profile-right .card.photos-card {
    margin: 0;
  }
}
.profile-content .profile-right .card p {
  font-size: 1.05rem;
  line-height: 1.5rem;
  padding: 0 0 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .profile-content .profile-right .card p {
    font-style: 1.2rem;
    line-height: 1.5rem;
  }
}
.profile-content .profile-right .card p a {
  color: #1c365d;
}
.profile-content .profile-right .card h6 {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 1.2rem;
  padding: 0 0 1rem 0;
  text-align: center;
}
.profile-content .profile-right .card .profile-photos {
  display: flex;
  flex-wrap: wrap;
}
.profile-content .profile-right .card .profile-photos li {
  display: block;
  width: 45.2%;
  padding-bottom: 2.67%;
  margin: 0 .4em .4em .4em;
  position: relative;
}
.profile-content .profile-right .card .profile-photos li .photo {
  width: 100%;
  background-size: cover;
  background-position: center center;
  border-radius: 7px;
  padding-bottom: 100%;
  background-repeat: no-repeat;
}
.claim-business {
  font-size: 1.2em;
}
@media screen and (min-width: 768px) {
  .claim-business.mobile {
    display: none;
  }
}
.claim-business.desktop {
  display: none;
  font-size: 1.2em;
}
@media screen and (min-width: 768px) {
  .claim-business.desktop {
    display: inline;
  }
}

.progress-bar {
  width: 100%;
  flex-grow: 1;
  text-align: center;
  margin: 2rem auto;
  order: 2;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .progress-bar {
    margin: 0 auto;
    margin-bottom: 2rem;
    max-width: 300px;
    padding: 0 1rem;
  }
}
@media screen and (min-width: 992px) {
  .progress-bar {
    margin: 0 auto;
    margin-bottom: 2rem;
    max-width: 450px;
    padding: 0 1rem;
  }
}
.progress-bar h6 {
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  font-size: 0.9rem;
  padding: 0 0 0.75rem 0;
}
.progress-bar .bar {
  width: 100%;
  max-width: 450px;
  height: 8px;
  margin: 0 auto;
  background-color: #edf0f3;
  border-radius: 4px;
}
.progress-bar .bar .progress {
  width: 20%;
  height: 8px;
  background-color: #00bfff;
  border-radius: 4px;
}

.react-tags {
  position: relative;
  padding: 6px 0 0 6px;
  border: 1px solid #D1D1D1;
  border-radius: 1px;
  /* shared font styles */
  font-size: 1em;
  line-height: 1.2;
  /* clicking anywhere will focus the input */
  cursor: text;
}
.react-tags.is-focused {
  border-color: #B1B1B1;
}
.react-tags__selected {
  display: inline;
}
.react-tags__selected-tag {
  display: inline-block;
  box-sizing: border-box;
  margin: 0 6px 6px 0;
  padding: 6px 8px;
  border: 1px solid #D1D1D1;
  border-radius: 2px;
  background: #F1F1F1;
  /* match the font styles */
  font-size: inherit;
  line-height: inherit;
}
.react-tags__selected-tag:after {
  content: '\2715';
  color: #AAA;
  margin-left: 8px;
}
.react-tags__selected-tag:hover,
.react-tags__selected-tag:focus {
  border-color: #B1B1B1;
}
.react-tags__search {
  display: inline-block;
  /* match tag layout */
  padding: 7px 2px;
  margin-bottom: 6px;
  /* prevent autoresize overflowing the container */
  max-width: 100%;
}
@media screen and (min-width: 30em) {
  .react-tags__search {
    /* this will become the offsetParent for suggestions */
    position: relative;
  }
}
.react-tags__search input {
  /* prevent autoresize overflowing the container */
  max-width: 100%;
  /* remove styles and layout from this element */
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  /* match the font styles */
  font-size: inherit;
  line-height: inherit;
}
.react-tags__search input::-ms-clear {
  display: none;
}
.react-tags__suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 30em) {
  .react-tags__suggestions {
    width: 240px;
  }
}
.react-tags__suggestions ul {
  margin: 4px -1px;
  padding: 0;
  list-style: none;
  background: white;
  border: 1px solid #D1D1D1;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.react-tags__suggestions li {
  border-bottom: 1px solid #ddd;
  padding: 6px 8px;
}
.react-tags__suggestions li mark {
  text-decoration: underline;
  background: none;
  font-weight: 600;
}
.react-tags__suggestions li:hover {
  cursor: pointer;
  background: #eee;
}
.react-tags__suggestions li.is-active {
  background: #b7cfe0;
}
.react-tags__suggestions li.is-disabled {
  opacity: 0.5;
  cursor: auto;
}

.referral-card {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  margin: 37.5px 0;
}
@media screen and (min-width: 768px) {
  .referral-card {
    padding: 31.25px;
  }
}
.referral-card.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.referral-card.empty h2 {
  font-size: 1.5rem;
}
.referral-card.empty p:last-of-type {
  padding-bottom: 0;
}
.referral-card.empty h2:last-of-type {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .referral-card {
    margin: 50px 0;
  }
  .referral-card:last-of-type {
    margin-bottom: 0;
  }
}
.referral-card .card-header {
  width: 100%;
  height: 3px;
  background: #FF413C;
  border-radius: 3px 3px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.referral-card .card-header h5 {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  color: #fff;
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.75rem;
  background: #FF413C;
  border-radius: 30px;
  box-shadow: 0 2px 6px 0 rgba(28, 54, 93, 0.2);
}
@media screen and (min-width: 768px) {
  .referral-card .card-header h5 {
    font-size: 1.25rem;
    padding: 0.7rem 2.5rem;
    min-width: 250px;
  }
}
.referral-card .card-header.automotive {
  background: #FF413C;
}
.referral-card .card-header.automotive h5 {
  background: #FF413C;
}
.referral-card .card-header.beauty-spas {
  background: #f33d8c;
}
.referral-card .card-header.beauty-spas h5 {
  background: #f33d8c;
}
.referral-card .card-header.business-services {
  background: #f33dbe;
}
.referral-card .card-header.business-services h5 {
  background: #f33dbe;
}
.referral-card .card-header.children {
  background: #e83df3;
}
.referral-card .card-header.children h5 {
  background: #e83df3;
}
.referral-card .card-header.fashion {
  background: #7370FB;
}
.referral-card .card-header.fashion h5 {
  background: #7370FB;
}
.referral-card .card-header.finance {
  background: #993df3;
}
.referral-card .card-header.finance h5 {
  background: #993df3;
}
.referral-card .card-header.fitness {
  background: #6a3df3;
}
.referral-card .card-header.fitness h5 {
  background: #6a3df3;
}
.referral-card .card-header.home-improvement {
  background: #3d8cf3;
}
.referral-card .card-header.home-improvement h5 {
  background: #3d8cf3;
}
.referral-card .card-header.insurance {
  background: #3dbef3;
}
.referral-card .card-header.insurance h5 {
  background: #3dbef3;
}
.referral-card .card-header.landscaping {
  background: #2fe5cb;
}
.referral-card .card-header.landscaping h5 {
  background: #2fe5cb;
}
.referral-card .card-header.legal-services {
  background: #36df97;
}
.referral-card .card-header.legal-services h5 {
  background: #36df97;
}
.referral-card .card-header.marketing-advertising {
  background: #83d932;
}
.referral-card .card-header.marketing-advertising h5 {
  background: #83d932;
}
.referral-card .card-header.medical {
  background: #b6dd18;
}
.referral-card .card-header.medical h5 {
  background: #b6dd18;
}
.referral-card .card-header.pets {
  background: #f3e300;
}
.referral-card .card-header.pets h5 {
  background: #f3e300;
}
.referral-card .card-header.photographer {
  background: #f3c73d;
}
.referral-card .card-header.photographer h5 {
  background: #f3c73d;
}
.referral-card .card-header.real-estate {
  background: #f3a43d;
}
.referral-card .card-header.real-estate h5 {
  background: #f3a43d;
}
.referral-card .card-header.special-events {
  background: #f3773d;
}
.referral-card .card-header.special-events h5 {
  background: #f3773d;
}
.referral-card .card-header.special-events {
  background: #d35419;
}
.referral-card .card-header.special-events h5 {
  background: #d35419;
}
.referral-card p {
  color: #a4afbe;
  font-size: 1.2rem;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .referral-card p {
    font-size: 1.4rem;
    padding: 1rem 0;
  }
}
.referral-card p a {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  color: #1c365d;
}
.referral-card .avatar.single {
  margin-right: 0.4rem;
}
.referral-card .delete-referral {
  color: #1c365d;
  font-size: 1.1rem;
  position: absolute;
  top: 12.5px;
  right: 12.5px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.referral-card .delete-referral:hover {
  color: #FF413C;
}

.referral-request-content {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  padding: 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .referral-request-content {
    text-align: left;
  }
}
.referral-request-content h2 {
  padding: 1rem 0 1rem 0;
}
@media screen and (min-width: 768px) {
  .referral-request-content h2 {
    padding: 0 0 0.5rem 0;
  }
}
.referral-request-content p {
  padding-bottom: 0;
}
.referral-request-content img.referral-request {
  width: 100%;
  max-width: 144px;
}
@media screen and (min-width: 768px) {
  .referral-request-content img.referral-request {
    max-width: 175px;
    float: left;
    margin-right: 2rem;
  }
}
.referral-info {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .referral-info {
    display: flex;
  }
}
.referral-info h4 {
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .referral-info h4 {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .referral-info .content-left {
    width: 70%;
    padding-right: 1.5rem;
  }
}
.referral-info .content-left .send-request {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .referral-info .content-left .send-request {
    padding: 31.25px;
  }
}
.referral-info .content-left .send-request.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.referral-info .content-left .send-request.empty h2 {
  font-size: 1.5rem;
}
.referral-info .content-left .send-request.empty p:last-of-type {
  padding-bottom: 0;
}
.referral-info .content-left .send-request.empty h2:last-of-type {
  padding-bottom: 0;
}
.referral-info .content-left .share-link {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .referral-info .content-left .share-link {
    padding: 31.25px;
  }
}
.referral-info .content-left .share-link.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.referral-info .content-left .share-link.empty h2 {
  font-size: 1.5rem;
}
.referral-info .content-left .share-link.empty p:last-of-type {
  padding-bottom: 0;
}
.referral-info .content-left .share-link.empty h2:last-of-type {
  padding-bottom: 0;
}
.referral-info .content-left .share-link .btn {
  min-width: 0;
}
@media screen and (min-width: 992px) {
  .referral-info .content-right {
    width: 30%;
    height: 100%;
    max-height: 800px;
    display: flex;
  }
}
.referral-info .content-right .invite-list {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .referral-info .content-right .invite-list {
    padding: 31.25px;
  }
}
.referral-info .content-right .invite-list.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.referral-info .content-right .invite-list.empty h2 {
  font-size: 1.5rem;
}
.referral-info .content-right .invite-list.empty p:last-of-type {
  padding-bottom: 0;
}
.referral-info .content-right .invite-list.empty h2:last-of-type {
  padding-bottom: 0;
}
.referral-info .content-right .invite-list .dissapointed-face {
  font-size: 3rem;
  vertical-align: center;
}
.referral-info .content-right .invite-list .dissapointed-face:before {
  content: "\01F614";
}
.referral-info .content-right .invite-list ul {
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 992px) {
  .referral-info .content-right .invite-list ul {
    display: flex;
    flex-direction: column;
    flex-shrink: 1;
    overflow-y: auto;
  }
}
.referral-info .content-right .invite-list ul li {
  list-style: none;
  width: 100%;
  padding: 1rem 0;
  text-align: left;
  border-top: 1px solid #f3f5f7;
}
.referral-info .content-right .invite-list ul li:last-of-type {
  padding-bottom: 0;
}
.referral-info .content-right .invite-list ul li img {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  border-radius: 20px;
}
.referral-info .content-right .invite-list ul li h5 {
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding: 0 0 0.5rem;
}
.referral-info .content-right .invite-list ul li p {
  font-size: 0.85rem;
  line-height: 0.85rem;
  color: #a4afbe;
  padding: 0;
}
.referral-info .content-right .invite-list ul li p.success-text {
  color: #83d932;
}
.referral-info .content-right .invite-list ul li p.error-text {
  color: #FF413C;
}

.settings-wrapper {
  width: 100%;
  max-width: 600px;
  padding: 25px;
  margin: 0 auto;
  text-align: center;
}
.business-profile-card {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .business-profile-card {
    padding: 31.25px;
  }
}
.business-profile-card.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.business-profile-card.empty h2 {
  font-size: 1.5rem;
}
.business-profile-card.empty p:last-of-type {
  padding-bottom: 0;
}
.business-profile-card.empty h2:last-of-type {
  padding-bottom: 0;
}
.business-profile-card h6 {
  font-size: 1rem;
}
.business-profile-card p {
  font-size: 1rem;
  line-height: 1.3rem;
  color: #a4afbe;
  padding: 0 0 1rem 0;
}
.staff-card {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(28, 54, 93, 0.07);
  border-radius: 4px;
  padding: 25px 12.5px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .staff-card {
    padding: 31.25px;
  }
}
.staff-card.empty {
  opacity: 0;
  animation: 0.5s fadein ease-in 0.5s forwards;
}
.staff-card.empty h2 {
  font-size: 1.5rem;
}
.staff-card.empty p:last-of-type {
  padding-bottom: 0;
}
.staff-card.empty h2:last-of-type {
  padding-bottom: 0;
}
.staff-card .avatar {
  margin-right: 2rem;
  align-self: flex-start;
}
.staff-card .staff-info {
  margin-right: 2rem;
}
.staff-card .staff-info h5 {
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
}
.staff-card .staff-info h6 {
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  font-size: 0.95rem;
  padding-bottom: 0;
}
.staff-card .staff-info p {
  font-size: 1rem;
  line-height: 1.3rem;
  padding: 0.5rem 0 1rem 0;
}
.staff-card .staff-info .btn {
  margin-right: 0.5rem;
}
.staff-card .staff-info .btn:last-of-type {
  margin-right: 0;
}
.staff-card .close-btn {
  font-size: 0.7rem;
  text-decoration: none;
  width: 30px;
  height: 30px;
  background-color: #f3f5f7;
  border-radius: 50%;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.staff-card form {
  display: inline-block;
  margin-right: 1em;
}
.manage-photos {
  padding: 0 0 0 0;
  margin: 0 -0.4em;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.manage-photos li {
  display: block;
  width: 23%;
  padding-bottom: 2.67%;
  margin: 0 .4em;
  position: relative;
}
.manage-photos li .photo {
  width: 100%;
  background-size: cover;
  background-position: center center;
  border-radius: 7px;
  padding-bottom: 100%;
  background-repeat: no-repeat;
}
.manage-photos li a {
  font-size: 0.4rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  color: #fff;
  background-color: #f33dbe;
  border-radius: 50%;
  position: absolute;
  top: -7px;
  right: -7px;
}
.photos-help-text span {
  font-size: 0.6rem;
  color: #a4afbe;
  margin-right: 0.25rem;
}
.photos-help-text span:last-of-type {
  margin-right: 0;
  margin-left: 0.25rem;
}
.form-group .promo-content img {
  margin-bottom: 1.25rem;
}
.form-group .no-message {
  padding-bottom: 0;
}
.form-group .no-message a {
  color: #374250;
}

.text-feature:nth-of-type(odd) {
  background-color: #FBFBFC;
}
.text-feature .container {
  justify-content: space-between;
  align-items: center;
  padding-top: 8em;
  padding-bottom: 8em;
}
@media screen and (max-width: 767px) {
  .text-feature .container {
    flex-flow: column wrap;
    max-width: 365px;
    padding: 4em 25px;
    font-size: 90%;
    align-items: flex-start;
  }
}
.text-feature .text {
  width: 51%;
}
@media screen and (max-width: 767px) {
  .text-feature .text {
    width: 100%;
  }
}
.text-feature .text h4 {
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 1.1em;
  margin: 0 0 1em 0;
  padding: 0;
  font-family: 'Futura PT W01 Medium', Gill Sans, helvetica, sans-serif;
}
.text-feature .text h2 {
  color: #1c365d;
  line-height: 1.5;
  font-size: 2em;
  margin: 0 0 1em 0;
  padding: 0;
}
.text-feature .text h2::after {
  content: '';
  display: block;
  width: 21px;
  height: 2px;
  margin-top: 1em;
  background-color: currentColor;
}
.text-feature .text p {
  color: #a4afbe;
  font-size: 1.4em;
  line-height: 1.6;
  margin: 0;
  max-width: 80%;
}
@media screen and (max-width: 767px) {
  .text-feature .text p {
    max-width: 100%;
  }
}
.text-feature .image {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .text-feature .image {
    width: 90%;
    max-width: 150px;
    margin-bottom: 2em;
  }
}
.text-feature .image img {
  width: 100%;
  height: auto;
  display: block;
}
.text-feature:nth-of-type(even) .text {
  order: 2;
}
@media screen and (max-width: 767px) {
  .text-feature .text {
    order: 2;
  }
}
.text-feature.blue h4 {
  color: #00bfff;
}
.text-feature.blue h2::after {
  background-color: #00bfff;
}
.text-feature.dark-yellow h4 {
  color: #f3c73d;
}
.text-feature.dark-yellow h2::after {
  background-color: #f3c73d;
}
.text-feature.dark-pink h4 {
  color: #ED5A7D;
}
.text-feature.dark-pink h2::after {
  background-color: #ED5A7D;
}
.text-feature.dark-purple h4 {
  color: #993df3;
}
.text-feature.dark-purple h2::after {
  background-color: #993df3;
}

strong {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-weight: normal;
}
p {
  font-size: 1rem;
  line-height: 1.5rem;
  padding-bottom: 1.8rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 1.3rem;
    line-height: 1.7rem;
    padding-bottom: 2.5rem;
  }
}
p.small-padding {
  padding-bottom: 1rem;
}
a {
  color: #a4afbe;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-weight: normal;
  padding: 0 0 1rem 0;
  margin: 0;
}
h2 {
  font-size: 1.8rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
    padding-bottom: 2.5rem;
  }
}
h4 {
  font-family: 'Futura PT W01 Book', Gill Sans, helvetica, sans-serif;
  font-size: 1.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 1.9rem;
    padding-bottom: 1.5rem;
  }
}
h5 {
  font-size: 1.6rem;
  padding-bottom: 1.5rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 1.8rem;
    padding-bottom: 1.5rem;
  }
}
hr {
  border: none;
  border-bottom: 1px solid #d2d7df;
  margin: 1rem 0;
}
.small-caps {
  font-family: 'Futura PT W01 Demi', Gill Sans, helvetica, sans-serif;
  font-size: 0.9rem;
  color: #a4afbe;
  text-transform: uppercase;
}
strong {
  font-weight: normal;
}
.success-text {
  color: #83d932;
}
.error-text {
  color: #FF413C;
}
.automotive {
  color: #FF413C;
}
.beauty-spas {
  color: #f33d8c;
}
.business-services {
  color: #f33dbe;
}
.children {
  color: #e83df3;
}
.fashion {
  color: #7370FB;
}
.finance {
  color: #993df3;
}
.fitness {
  color: #6a3df3;
}
.home-improvement {
  color: #3d8cf3;
}
.insurance {
  color: #3dbef3;
}
.landscaping {
  color: #2fe5cb;
}
.legal-services {
  color: #36df97;
}
.marketing-advertising {
  color: #83d932;
}
.medical {
  color: #b6dd18;
}
.pets {
  color: #f3e300;
}
.photographer {
  color: #f3c73d;
}
.real-estate {
  color: #f3a43d;
}
.special-events {
  color: #f3773d;
}
.other {
  color: #FF413C;
}
.seperation-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 768px) {
  .seperation-heading {
    margin-bottom: 2.5rem;
  }
}
.seperation-heading .hr-line {
  display: block;
  height: 1px;
  width: 40%;
  border-bottom: 1px solid #d2d7df;
}
.seperation-heading h6 {
  font-size: 0.7rem;
  color: #a4afbe;
  margin: 0 0 0 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .seperation-heading h6 {
    font-size: 1rem;
  }
}
.content-page h1,
.content-page h2,
.content-page h3,
.content-page h4 {
  padding: 0;
  margin-bottom: 0.7em;
}
.content-page h1 {
  font-size: 3.157em;
}
.content-page h2 {
  font-size: 2.369em;
}
.content-page h3 {
  font-size: 1.777em;
}
.content-page h4 {
  font-size: 1.333em;
}
.content-page ul,
.content-page ol {
  font-size: 1.4em;
}
.content-page li {
  line-height: 1.3;
}
.content-page ul,
.content-page ol {
  margin: 0 0 2.5rem 1em;
  padding: 0;
  list-style: disc outside;
}
.content-page ol {
  list-style: decimal;
}
.content-page ul ul {
  margin: 1em 0 1em 1em;
}
.content-page ol ul {
  margin: 1em 0 1em 1em;
}
.content-page ol ol {
  margin: 1em 0 1em 1.25em;
}
.content-page ul li {
  list-style: outside;
  margin: 0 0 .20em 0;
}
.content-page ol li {
  margin: 0 0 0.5em 0;
}
.content-page li li {
  font-size: 1em;
}


.yoozers-page .select-wrapper {
  display: flex;
  justify-content: center;
}
.yoozers-page .select-wrapper:after {
  content: '';
}
.yoozers-page .yoozers-select {
  position: relative;
}
.yoozers-page .yoozers-select:after {
  font-family: 'icomoon';
  font-size: 0.75rem;
  color: #696c72;
  display: block;
  content: "\e90a";
  position: absolute;
  right: 1em;
  top: 2em;
}
.yoozers-page select {
  padding: 1em;
  padding-right: 2em;
  border: none;
  width: 15em;
  text-align: center;
  background: none;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.5em;
  color: #f33d8c;
}
.yoozers-page select.automotive {
  color: #FF413C;
}
.yoozers-page select.beauty-spas {
  color: #f33d8c;
}
.yoozers-page select.business-services {
  color: #f33dbe;
}
.yoozers-page select.children {
  color: #e83df3;
}
.yoozers-page select.fashion {
  color: #7370FB;
}
.yoozers-page select.finance {
  color: #993df3;
}
.yoozers-page select.fitness {
  color: #6a3df3;
}
.yoozers-page select.home-improvement {
  color: #3d8cf3;
}
.yoozers-page select.insurance {
  color: #3dbef3;
}
.yoozers-page select.landscaping {
  color: #2fe5cb;
}
.yoozers-page select.legal-services {
  color: #36df97;
}
.yoozers-page select.marketing-advertising {
  color: #83d932;
}
.yoozers-page select.medical {
  color: #b6dd18;
}
.yoozers-page select.pets {
  color: #f3e300;
}
.yoozers-page select.photographer {
  color: #f3c73d;
}
.yoozers-page select.real-estate {
  color: #f3a43d;
}
.yoozers-page select.special-events {
  color: #f3773d;
}
.yoozers-page select.other {
  color: #FF413C;
}

