/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
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 {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.cf:after {
  clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
  *zoom: 1;
}

html, body, form {
  height: 100%;
}

body {
  background-color: #fafafa;
  height: 100%;
}
body a {
  color: #991122;
  text-decoration: none;
}
body a:hover {
  text-decoration: underline;
}
body .important-message-wrap {
  margin: 25px auto 0 auto;
  padding: 15px;
  border: #900 1px dotted;
  background-color: white;
}
body .important-message-wrap h2 {
  font-weight: bold;
  margin-bottom: 8px;
}
body .important-message-wrap p {
  line-height: 130%;
  margin-bottom: 16px;
}
body .important-message-wrap p:last-child {
  margin-bottom: 0;
}
body .important-message-wrap p.date {
  font-size: 12px;
  color: #990000;
}
body .button-wrap {
  position: relative;
  display: inline-block;
  padding: 7px 30px;
  background-color: #990000;
  color: #ffffff;
  border: 0;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
}
body .button-wrap input {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}
body .terms-textbox {
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 300px;
  font-size: 12px !important;
  font-family: monospace;
  margin-bottom: 15px;
  resize: vertical;
  background-color: #fff;
  padding: 10px;
  border: #ddd 1px solid;
  border-radius: 4px;
}
body .terms-text {
  padding: 15px;
  font-size: 12px;
  font-family: monospace;
  background-color: #fff;
  margin: 15px;
  border: #ddd 1px solid;
}
body .label-validated {
  --ribbon-width: 130px;
  --ribbon-offset-top: 24px;
  --ribbon-offset-right: -28px;
  --ribbon-edge-size: 3px;
  --ribbon-color: dodgerblue;
  --ribbon-edge-color: #004384;
  display: none;
  position: absolute;
  right: -9.5px;
  top: -9px;
  z-index: 5;
  width: var(--ribbon-width);
  height: var(--ribbon-width);
  overflow: hidden;
  pointer-events: none;
}
body .label-validated span {
  font-family: "Open Sans Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 100%;
  transform: rotate(45deg);
  box-shadow: 0 3px 10px -5px black;
  width: var(--ribbon-width);
  background: var(--ribbon-color);
  position: absolute;
  top: var(--ribbon-offset-top);
  right: var(--ribbon-offset-right);
  padding: 5px 5px 5px 5px;
}
body .label-validated span:before {
  content: "";
  position: absolute;
  top: 100%;
  z-index: -1;
  border-bottom: var(--ribbon-edge-size) solid transparent;
  border-top: var(--ribbon-edge-size) solid var(--ribbon-edge-color);
  left: 0;
  border-left: var(--ribbon-edge-size) solid var(--ribbon-edge-color);
  border-right: var(--ribbon-edge-size) solid transparent;
}
body .label-validated span:after {
  content: "";
  position: absolute;
  top: 100%;
  z-index: -1;
  border-bottom: var(--ribbon-edge-size) solid transparent;
  border-top: var(--ribbon-edge-size) solid var(--ribbon-edge-color);
  right: 0;
  border-left: var(--ribbon-edge-size) solid transparent;
  border-right: var(--ribbon-edge-size) solid var(--ribbon-edge-color);
}
body .label-validated.visible {
  display: block;
}
body .label-available-now {
  position: absolute;
  left: 10px;
  bottom: -30px;
  z-index: 5;
  background-color: #EAB361;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
body .label-available-now img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
body .label-available-now span {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}
body .search-profile {
  --card-corner-radius: 15px;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: var(--card-corner-radius);
}
body .search-profile:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
body .search-profile.search-boost .inner {
  background-color: #912 !important;
  border-color: #912 !important;
}
body .search-profile.search-boost .inner > .search-card-type {
  background-color: #912 !important;
}
body .search-profile.search-boost .inner > .search-card-type > span {
  color: #fff !important;
}
body .search-profile.search-boost .inner > a {
  color: #ffdd63 !important;
}
body .search-profile.search-boost .inner .area-label {
  color: #fff !important;
}
body .search-profile.search-boost .inner .area-label a {
  color: #fff !important;
}
body .search-profile.search-boost .inner .service-label {
  color: #e5baba !important;
}
body .search-profile.search-boost .inner .service-label a {
  color: #e5baba !important;
}
body .search-profile .inner {
  position: relative;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: var(--card-corner-radius);
  border: #ffffff 5px solid;
}
body .search-profile .inner .image {
  border-radius: calc(var(--card-corner-radius) - 3px) calc(var(--card-corner-radius) - 3px) 0 0;
  overflow: hidden;
}
body .search-profile .inner .image img {
  border-radius: calc(var(--card-corner-radius) - 3px) calc(var(--card-corner-radius) - 3px) 0 0;
  width: 100%;
  height: 100%;
  vertical-align: top;
}
body .search-profile .inner > a {
  display: block;
  width: 100%;
  height: 81px;
  padding: 15px 5px 0 5px;
  box-sizing: border-box;
  overflow: hidden;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #990000;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  word-break: break-word;
}
body .search-profile .inner .area-label {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 0 10px 0;
}
body .search-profile .inner .area-label a {
  display: inline;
  color: #666;
}
body .search-profile .inner .service-label {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 120%;
  font-family: "Roboto Condensed";
  padding: 0 0 15px 0;
  color: #aaa;
}
body .search-profile .inner .service-label a {
  display: inline;
  color: #aaa;
}
body .search-card-type {
  position: absolute;
  top: -1px;
  left: -1px;
  background-color: white;
  width: 50px;
  height: 50px;
  z-index: 5;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-top-left-radius: 10px;
}
body .search-card-type > span {
  font-family: "Open Sans Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  line-height: 100%;
  position: absolute;
  top: 30%;
  left: 30%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
body .contact-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
body .contact-overlay.visible {
  display: block;
}
body .contact-overlay .contact-overlay-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
body .contact-overlay .contact-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
body .contact-overlay .contact-overlay-content h3 {
  margin: 30px;
  font-size: 22px;
  color: #990000;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
body .contact-overlay .contact-overlay-content .contact-overlay-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 36px;
  font-weight: 300;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
body .contact-overlay .contact-overlay-content .contact-overlay-close:hover {
  color: #333;
}
body .contact-overlay .contact-overlay-content .contact-picture-wrap {
  background-color: #f0f0f0;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
}
body .contact-overlay .contact-overlay-content .contact-picture-wrap .contact-picture-container {
  position: relative;
  width: 200px;
  height: 200px;
}
body .contact-overlay .contact-overlay-content .contact-picture-wrap .contact-picture-container .search-card-type {
  border-top-left-radius: 5px;
  top: 4px;
  left: 4px;
}
body .contact-overlay .contact-overlay-content .contact-picture-wrap .contact-picture-container .label-validated {
  top: -4px;
  right: -4px;
}
body .contact-overlay .contact-overlay-content .contact-picture-wrap .contact-picture {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  border: 5px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
body .contact-overlay .contact-overlay-content .contact-details {
  color: #666;
  padding: 20px;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-intro {
  color: #666;
  line-height: 1.5;
  text-align: center;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-intro > strong {
  font-weight: bold;
  color: #912;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-action {
  margin-top: 20px;
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #912;
  border-radius: 10px;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-action .contact-icon {
  font-size: 32px;
  margin-right: 15px;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-action .contact-icon img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}
body .contact-overlay .contact-overlay-content .contact-details .contact-action .contact-info {
  flex: 1;
  text-align: center;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-action .contact-info .contact-label {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-action .contact-info .contact-value {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: block;
  word-break: break-all;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-action .contact-info .contact-value:hover {
  text-decoration: underline;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-social {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-social .contact-social-button {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-social .contact-social-button img {
  width: 36px;
  height: 36px;
  filter: invert(1);
}
body .contact-overlay .contact-overlay-content .contact-details .contact-social .contact-social-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
body .contact-overlay .contact-overlay-content .contact-details .contact-social .contact-social-button.sms {
  background-color: #EAB361;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-social .contact-social-button.whatsapp {
  background-color: #25D366;
}
body .contact-overlay .contact-overlay-content .contact-details .contact-social .contact-social-button.telegram {
  background-color: #0088cc;
}
body .terms-decline-link {
  color: #999;
  text-decoration: underline;
  display: block;
  float: right;
  padding-top: 8px;
  font-size: 14px;
}
body #GeoCookieQuestion {
  display: none;
}
body #GeoCookieQuestion .inner {
  display: none;
}
body #GeoCookieReset {
  display: none;
}
body #GeoCookieReset .inner {
  display: none;
}
body .main-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-family: "Open Sans", Arial, sans-serif;
  flex: 1;
  /* Search */
}
body .main-wrap .content-wrap {
  /* View profile */
  /* Frontpage */
}
body .main-wrap .content-wrap .fp-title {
  padding: 15px;
  text-align: center;
}
body .main-wrap .content-wrap .fp-text-wrap {
  max-width: 700px;
  margin: 0 auto 0 auto;
  padding: 15px 15px 0 15px;
  text-align: center;
}
body .main-wrap .content-wrap .fp-text-wrap h2 {
  font-weight: bold;
  margin-bottom: 15px;
}
body .main-wrap .content-wrap .fp-text-wrap p {
  margin-bottom: 15px;
  line-height: 22px;
}
body .main-wrap .content-wrap .profile-status {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #EAB361;
  color: white;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
body .main-wrap .content-wrap .profile-header-wrap {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px dashed #ddd;
  background-color: #fafafa;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner {
  max-width: 990px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name phone";
  gap: 15px;
  align-items: center;
  padding: 0 15px;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner h1.name {
  font-size: 22px;
  color: #912;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  grid-area: name;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner .phoneno {
  grid-area: phone;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner .phoneno .contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px 8px 10px;
  color: #fff;
  background-color: #912;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  border-radius: 6px;
  cursor: pointer;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner .phoneno .contact-button .contact-button-main {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  white-space: nowrap;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner .phoneno .contact-button .contact-button-main > a {
  color: #fff !important;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner .phoneno .contact-button .contact-button-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
  flex-shrink: 0;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner .phoneno .contact-social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
  padding: 8px;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner .phoneno .contact-social-button img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner .phoneno .contact-social-button.contact-social-sms {
  background-color: #EAB361;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner .phoneno .contact-social-button.contact-social-whatsapp {
  background-color: #25D366;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner .phoneno .contact-social-button.contact-social-telegram {
  background-color: #0088cc;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner .phoneno .no-phone-message {
  color: #999;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}
body .main-wrap .content-wrap .profile-outer-wrap {
  max-width: 990px;
  margin: 0 auto;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap {
  display: table;
  width: 100%;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap {
  display: table-cell;
  width: 400px;
  padding: 20px 15px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .profileprimarymedia-wrap {
  position: relative;
  border: #fff 5px solid;
  margin-bottom: 10px;
  border-radius: 15px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .profileprimarymedia-wrap .search-card-type {
  border-top-left-radius: 5px;
  top: 0;
  left: 0;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .profileprimarymedia-wrap a {
  background-color: #eeeeee;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 15px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .profileprimarymedia-wrap a img {
  display: block;
  width: 100%;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .profileprimarymedia-wrap div.mediacount {
  display: none;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .media-thumb-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .media-thumb-wrap .media-wrap {
  border: #fff 5px solid;
  border-radius: 15px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
  cursor: pointer;
  overflow: hidden;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .media-thumb-wrap .media-wrap .media-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .media-thumb-wrap .media-wrap .video-indicator {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .media-thumb-wrap .media-wrap .video-indicator .icon {
  width: 64px;
  height: 64px;
  opacity: 0.8;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .media-thumb-wrap .media-wrap.video-thumbnail .video-indicator {
  display: flex;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .profile-id {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 5px;
  color: #ccc;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .profile-id > a {
  color: #ccc !important;
  text-decoration: none;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .support-validation-picture > img {
  width: 100%;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap {
  display: table-cell;
  vertical-align: top;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap > .inner {
  padding: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap h3 {
  padding: 0;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #666;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .info-list li {
  padding-bottom: 10px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .info-list li span {
  display: inline-block;
  width: 120px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .info-list li a {
  color: #444444;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .text-wrap {
  max-width: 590px;
  line-height: 140%;
  margin-bottom: 40px;
  word-break: break-word;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .pricelist-wrap {
  margin-bottom: 40px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .pricelist-wrap .pricelist-item {
  padding: 5px 0;
  border-top: #ccc 1px dotted;
  line-height: 150%;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .pricelist-wrap .pricelist-item:last-child {
  border-bottom: #ccc 1px dotted;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .pricelist-wrap .pricelist-item:hover {
  background-color: #eee;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .pricelist-wrap .pricelist-item .pricelist-item-name {
  float: left;
  text-align: left;
  padding-left: 10px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .pricelist-wrap .pricelist-item .pricelist-item-price {
  float: right;
  text-align: right;
  padding-right: 10px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .schedule-wrap {
  margin-bottom: 40px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .schedule-wrap .schedule-item {
  padding: 5px 0;
  border-top: #ccc 1px dotted;
  line-height: 150%;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .schedule-wrap .schedule-item:last-child {
  border-bottom: #ccc 1px dotted;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .schedule-wrap .schedule-item:hover {
  background-color: #eee;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .schedule-wrap .schedule-item .schedule-day {
  float: left;
  text-align: left;
  padding-left: 10px;
  width: 15%;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .schedule-wrap .schedule-item .schedule-time {
  float: left;
  text-align: left;
  padding-left: 10px;
  width: 15%;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .schedule-wrap .schedule-item .schedule-text {
  float: left;
  text-align: left;
  padding-left: 10px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-text-wrap .schedule-wrap .schedule-item .schedule-location {
  float: right;
  text-align: right;
  padding-right: 10px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .media-gallery {
  margin-top: 20px;
  display: none;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .media-gallery .media-item {
  width: 100%;
  margin-bottom: 10px;
  border: #dddddd 1px solid;
  position: relative;
  display: block;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .media-gallery .media-item .media-link {
  display: block;
  width: 100%;
  position: relative;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .media-gallery .media-item .media-link img {
  width: 100%;
  height: auto;
  display: block;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .media-gallery .media-item .media-link video {
  width: 100%;
  height: auto;
  display: block;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .media-gallery .media-item .media-link .video-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  width: 80px;
  height: 80px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .media-gallery .media-item .media-link .video-indicator .icon {
  width: 64px;
  height: 64px;
  opacity: 0.8;
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .media-gallery .media-item.video-thumbnail .video-indicator {
  display: flex;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .media-gallery .media-item:not(.video-thumbnail) .video-indicator {
  display: none;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap {
  background-color: #eeeeee;
  border-top: #dddddd 1px solid;
  border-top: #dddddd 1px solid;
  padding: 20px 0;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap .video-gallery-title {
  padding: 0 0 20px 20px;
  margin: 0;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap .video-gallery {
  box-sizing: border-box;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  padding: 0 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap .video-gallery .video-item {
  width: 100%;
  max-width: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 3px solid #fff;
}
@media screen and (min-width: 569px) {
  body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap .video-gallery .video-item {
    grid-area: initial;
  }
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap .video-gallery .video-item::before {
  content: "";
  display: block;
  padding-top: 150%;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap .video-gallery .video-item .video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap .video-gallery .video-item .video-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap .video-gallery .video-item .video-link .video-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  width: 64px;
  height: 64px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap .video-gallery .video-item .video-link .video-indicator .icon {
  width: 64px;
  height: 64px;
  opacity: 0.8;
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}
body .main-wrap .content-wrap .frontpagepromotions-wrap {
  padding: 20px 0 0 0;
  margin-bottom: 20px;
  background-color: #eee;
  box-sizing: border-box;
  border-top: #e6e6e6 1px solid;
  border-bottom: #dddddd 1px solid;
  box-shadow: 0 3px 6px #eee;
  width: 100%;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .search-link {
  margin: 0 auto 15px auto;
  display: block;
  text-decoration: none;
  width: calc(100% - 40px);
  max-width: 300px;
  box-sizing: border-box;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .inner-wrap {
  max-width: 1300px;
  margin: 0 auto 0 auto;
  padding: 10px 10px 30px 10px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 1024px) {
  body .main-wrap .content-wrap .frontpagepromotions-wrap .inner-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap {
  position: relative;
  border-radius: 15px;
  box-sizing: border-box;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner {
  position: relative;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 15px;
  border: #ffffff 5px solid;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner .image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner .image > div {
  border-radius: 12px 12px 0 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner a {
  width: 100%;
  display: block;
  text-decoration: none;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner a .info-wrap {
  padding: 15px 15px 10px 15px;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner a .info-wrap .name {
  height: 66px;
  overflow: hidden;
  word-break: break-word;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #990000;
  text-align: center;
  font-family: "Open Sans Condensed", sans-serif;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner .area-label {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  padding: 5px 0 10px 0;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner .area-label a {
  display: inline;
  color: #666;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner .service-label {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 120%;
  font-family: "Roboto Condensed";
  padding: 0 0 15px 0;
  color: #aaa;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner .service-label a {
  display: inline;
  color: #aaa;
}
body .main-wrap .search-wrap {
  box-sizing: border-box;
  max-width: 1300px;
  margin: 20px auto;
  padding: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}
body .main-wrap .search-wrap input,
body .main-wrap .search-wrap select {
  -webkit-appearance: none;
}
body .main-wrap .search-wrap h2 {
  font-size: 18px;
  margin: 20px;
  text-align: center;
}
body .main-wrap .search-wrap .search-refine {
  display: none;
}
body .main-wrap .search-wrap .search-input-wrap {
  box-sizing: border-box;
  display: block;
}
body .main-wrap .search-wrap .search-input-wrap .column {
  display: inline-block;
  vertical-align: top;
}
body .main-wrap .search-wrap .search-input-wrap .column.type, body .main-wrap .search-wrap .search-input-wrap .column.area, body .main-wrap .search-wrap .search-input-wrap .column.service {
  width: 17%;
}
body .main-wrap .search-wrap .search-input-wrap .column.age {
  width: 11%;
}
body .main-wrap .search-wrap .search-input-wrap .column.text {
  width: 20%;
}
body .main-wrap .search-wrap .search-input-wrap .column.button {
  width: 18%;
}
body .main-wrap .search-wrap .search-input-wrap .column .inner {
  padding: 10px 0 10px 10px;
}
body .main-wrap .search-wrap .search-input-wrap .column:last-child > .inner {
  padding-right: 10px;
}
body .main-wrap .search-wrap .search-input-wrap .column label {
  display: block;
  margin: 12px 0 6px 0;
}
body .main-wrap .search-wrap .search-input-wrap .column select {
  width: 100%;
  padding: 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  font-size: 16px;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
body .main-wrap .search-wrap .search-input-wrap .column input[type=search] {
  width: 100%;
  padding: 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  font-size: 16px;
}
body .main-wrap .search-wrap .search-input-wrap .column .button-wrap {
  position: relative;
  display: inline-block;
  padding: 14px 0;
  background-color: #990000;
  color: #ffffff;
  border: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  margin-top: 34px;
}
body .main-wrap .search-wrap .search-input-wrap .column .button-wrap input {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}
body .main-wrap .search-result-wrap {
  box-sizing: border-box;
  background-color: #eee;
  border-top: #e6e6e6 1px solid;
  border-bottom: #dddddd 1px solid;
  padding-bottom: 20px;
}
body .main-wrap .search-result-wrap .title-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 20px;
}
body .main-wrap .search-result-wrap .title-wrap .title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #666666;
  padding: 20px 0;
}
body .main-wrap .search-result-wrap .title-wrap .grid-select {
  display: none;
}
body .main-wrap .search-result-wrap .search-result {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-gap: 20px;
  box-sizing: border-box;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1310px) {
  body .main-wrap .search-result-wrap .search-result {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1024px) {
  body .main-wrap .search-result-wrap .search-result {
    grid-template-columns: repeat(4, 1fr);
  }
}
body .main-wrap .search-result-wrap .search-loadmore {
  text-align: center;
  cursor: pointer;
  border: #ddd 1px solid;
  padding: 10px;
  background-color: #fff;
  color: #991122;
  margin-right: 10px;
}
body .main-wrap .create-wrap {
  max-width: 990px;
  margin: 0 auto;
  vertical-align: top;
}
body .main-wrap .create-wrap .create-failed-text {
  background-color: #ffafaf;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
body .main-wrap .create-wrap .form-wrap {
  display: inline-block;
  width: 70%;
  vertical-align: top;
}
body .main-wrap .create-wrap .form-wrap input,
body .main-wrap .create-wrap .form-wrap select {
  -webkit-appearance: none;
}
body .main-wrap .create-wrap .form-wrap .inner {
  margin-left: 10px;
}
body .main-wrap .create-wrap .form-wrap .inner h1 {
  font-size: 22px;
  color: #666;
  margin-top: 15px;
  padding-bottom: 7px;
  border-bottom: 2px #ddd solid;
  margin-bottom: 15px;
}
body .main-wrap .create-wrap .form-wrap .inner .button-wrap {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background-color: #990000;
  color: #ffffff;
  border: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}
body .main-wrap .create-wrap .form-wrap .inner .button-wrap input {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}
body .main-wrap .create-wrap .form-wrap .form-container {
  /* Clear floats after the columns */
  /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
}
body .main-wrap .create-wrap .form-wrap .form-container * {
  box-sizing: border-box;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-label {
  float: left;
  width: 30%;
  margin-top: 10px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-label label {
  padding: 12px 12px 2px 0;
  display: inline-block;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-label label .note {
  color: #888;
  font-size: 12px;
  line-height: 15px;
  margin-top: 3px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input {
  float: left;
  width: 70%;
  margin-top: 10px;
  position: relative;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input ul li label {
  cursor: pointer;
  line-height: 24px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=text],
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=password],
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=tel],
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=email],
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=number],
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=search],
body .main-wrap .create-wrap .form-wrap .form-container .col-input select,
body .main-wrap .create-wrap .form-wrap .form-container .col-input textarea {
  width: 100%;
  padding: 14px 12px 12px 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  font-size: 16px;
  font-family: "Open Sans", Arial, sans-serif;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input select {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=tel] {
  border-radius: 4px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=submit], body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=button] {
  background-color: #990000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=file] {
  width: 100%;
  background-color: #eee;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input textarea {
  height: 300px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=checkbox] {
  position: relative;
  cursor: pointer;
  width: 24px;
  height: 24px;
  float: left;
  border: 0px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background-color: #ccc;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=checkbox]:checked:before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background-color: #990000;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 6px;
  left: 10px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input .imagepreview img {
  cursor: pointer;
  border: #fff 5px solid;
  margin-bottom: 10px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input .validate-warning {
  display: none;
  color: #990000;
  font-size: 12px;
  margin-top: 10px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input #ProfilePhoneNoTextBox {
  padding-left: 60px;
}
body .main-wrap .create-wrap .form-wrap .form-container .col-input span.phonePrefix {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  background-color: #ccc;
  border-radius: 4px 0 0 4px;
  color: #333;
  bottom: 0;
  width: 50px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .main-wrap .create-wrap .form-wrap .form-container hr {
  border: 0;
  border-top: rgba(0, 0, 0, 0.2) 1px dashed;
  margin: 15px 0 5px 0;
}
body .main-wrap .create-wrap .form-wrap .form-container .row {
  padding: 5px 0;
}
body .main-wrap .create-wrap .form-wrap .form-container .row:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 600px) {
  body .main-wrap .create-wrap .form-wrap .form-container .col-label, body .main-wrap .create-wrap .form-wrap .form-container .col-input, body .main-wrap .create-wrap .form-wrap .form-container input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}
body .main-wrap .create-wrap .form-wrap .form-container #ZipCityRegion {
  display: inline-block;
  padding: 0 20px;
}
body .main-wrap .create-wrap .picture-rules {
  padding: 10px;
  background-color: #eee;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 12px;
}
body .main-wrap .create-wrap .picture-rules h3 {
  margin: 0 0 10px 0;
  font-weight: 700;
}
body .main-wrap .create-wrap .picture-rules p {
  margin-bottom: 10px;
  line-height: 120%;
}
body .main-wrap .create-wrap .picture-rules ul {
  display: block !important;
  list-style: square inside !important;
}
body .main-wrap .create-wrap .picture-rules ul li {
  display: list-item !important;
  float: none !important;
  padding: 0 0 10px 10px !important;
  list-style-type: square !important;
}
body .main-wrap .create-wrap .media-rules-accept-create {
  margin: 20px 0;
}
body .main-wrap .create-wrap .media-rules-accept-create .checkbox-label {
  display: block;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 15px;
}
body .main-wrap .create-wrap .media-rules-accept-create .checkbox-label input[type=checkbox] {
  margin-right: 8px;
  vertical-align: middle;
}
body .main-wrap .create-wrap .media-rules-accept-create .button-wrap {
  display: inline-block;
}
body .main-wrap .create-wrap .fileupload-wrap-create {
  position: relative;
}
body .main-wrap .create-wrap .fileupload-wrap-create .fileupload {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
body .main-wrap .create-wrap .sidebar {
  display: inline-block;
  width: 30%;
  vertical-align: top;
}
body .main-wrap .create-wrap .sidebar .inner {
  margin: 0 10px 0 20px;
}
body .main-wrap .create-wrap .sidebar .inner h2 {
  font-size: 18px;
  margin: 20px 0 10px 0;
}
body .main-wrap .create-wrap .sidebar .inner p {
  line-height: 20px;
  margin-bottom: 10px;
}
body .main-wrap .create-wrap .sidebar .inner .phone {
  margin-top: 6px;
  color: #991122;
  font-weight: bold;
}
body .main-wrap .create-wrap .sidebar .inner h3 {
  font-weight: bold;
  font-size: 14px;
  margin: 20px 0 10px 0;
}
body .main-wrap .create-wrap .sidebar .inner ul.prices {
  margin-bottom: 10px;
}
body .main-wrap .create-wrap .sidebar .inner ul.prices li {
  margin: 20px 0;
}
body .main-wrap .create-wrap .sidebar .inner ul.prices li span.name {
  display: block;
  padding-bottom: 6px;
}
body .main-wrap .create-wrap .sidebar .inner ul.prices li span.price {
  font-size: 22px;
  padding-bottom: 6px;
  color: #900;
}
body .main-wrap .create-wrap .sidebar .inner ul.prices li span.normal-price {
  text-decoration: line-through;
  color: #666;
  padding-left: 10px;
}
body .main-wrap .normal-page {
  max-width: 990px;
  margin: 0 auto;
  vertical-align: top;
  padding-top: 25px;
}
body .main-wrap .normal-page h1 {
  font-size: 22px;
  color: #666;
  padding-bottom: 7px;
  border-bottom: 2px #ddd solid;
  margin-bottom: 15px;
}
body .main-wrap .normal-page h2 {
  font-size: 16px;
  font-weight: 700;
  color: #666;
  margin: 20px 0 10px 0;
}
body .main-wrap .normal-page h3 {
  font-style: italic;
  color: #666;
  margin: 20px 0 5px 0;
}
body .main-wrap .normal-page h4 {
  font-weight: bold;
  color: #888;
  margin: 0 0 6px 0;
}
body .main-wrap .normal-page p {
  line-height: 120%;
  margin-bottom: 15px;
}
body .main-wrap .normal-page strong {
  font-weight: bold;
}
body .main-wrap .normal-page em {
  font-style: italic;
}
body .main-wrap .normal-page ul {
  list-style: square inside none;
}
body .main-wrap .normal-page ul li {
  padding-left: 25px;
  line-height: 1.4;
}
body .main-wrap .normal-page.seo-page {
  box-sizing: border-box;
  padding: 25px;
}
body .main-wrap .normal-page.seo-page h1 {
  border-bottom: 0;
  font-family: "Roboto Condensed", serif;
  font-weight: 600;
  font-size: 40px;
  color: #990000;
  text-align: center;
  padding-top: 40px;
}
body .main-wrap .normal-page.seo-page .seo-content {
  position: relative;
}
body .main-wrap .normal-page.seo-page .seo-content .seo-search-button {
  position: relative;
  display: block;
  padding: 10px 20px;
  background-color: #990000;
  color: #ffffff;
  border: 0;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  width: 150px;
  top: -40px;
  border: 5px solid #fafafa;
}
body .main-wrap .normal-page.seo-page .seo-content .seo-search-button a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-indent: -10000px;
  overflow: hidden;
}
body .main-wrap .normal-page.seo-page .seo-content p {
  line-height: 160%;
}
body .main-wrap .normal-page.seo-page .seo-content p:first-child {
  font-size: 18px;
  font-weight: 600;
}
body .main-wrap .normal-page.seo-page .seo-content h2, body .main-wrap .normal-page.seo-page .seo-content h3, body .main-wrap .normal-page.seo-page .seo-content h4, body .main-wrap .normal-page.seo-page .seo-content h5 {
  font-family: "Roboto Condensed", serif;
  margin-top: 40px;
  color: #333333;
  font-style: normal;
}
body .main-wrap .normal-page.seo-page .seo-content h2 {
  font-weight: 600 !important;
  font-size: 26px;
}
body .main-wrap .normal-page.seo-page .seo-content h3 {
  font-weight: 600 !important;
  font-size: 20px;
  color: #000;
  margin-top: 30px;
}
body .main-wrap .normal-page.seo-page .seo-content h4 {
  font-family: "Roboto", serif;
  font-weight: 600 !important;
  font-size: 16px;
  color: #000;
  margin-top: 20px;
}
body .main-wrap .normal-page.seo-page .seo-content h5 {
  font-family: "Roboto", serif;
  font-weight: 400 !important;
  font-size: 16px;
  color: #900;
  margin-top: 20px;
  padding-bottom: 5px;
}
body .main-wrap .normal-page.seo-page .seo-content a {
  color: #990000;
  font-weight: bold;
  text-decoration: underline;
}
body .main-wrap .normal-page.seo-page .seo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
body .main-wrap .normal-page.seo-page .seo-list .list-item h2 {
  font-size: 20px;
  line-height: 24px;
}
body .main-wrap .normal-page.seo-page .seo-list .list-item p {
  font-size: 14px;
  line-height: 18px;
}
body .main-wrap .normal-page.seo-page .seo-author {
  box-sizing: border-box;
  padding: 30px;
  width: 100%;
  display: table;
  background-color: #f0f0f0;
  border-radius: 30px;
  margin-top: 100px;
}
body .main-wrap .normal-page.seo-page .seo-author .image {
  box-sizing: border-box;
  width: 180px;
  height: 180px;
  display: table-cell;
}
body .main-wrap .normal-page.seo-page .seo-author .image img {
  box-sizing: border-box;
  width: 100%;
  border-radius: 30px;
  border: 10px solid white;
}
body .main-wrap .normal-page.seo-page .seo-author .info {
  display: table-cell;
  vertical-align: middle;
  padding-left: 30px;
  box-sizing: border-box;
}
body .main-wrap .normal-page.seo-page .seo-author .info p {
  line-height: 150%;
  margin: 0;
}
body .main-wrap .normal-page.seo-page .seo-author .info span {
  display: block;
  font-weight: bold;
  padding-bottom: 10px;
}
body .footer {
  font-family: "Open Sans", Arial, sans-serif;
  background: #222;
  color: #fff;
  box-shadow: 0 50vh 0 50vh #222;
  box-sizing: border-box;
  margin: 0 auto;
}
body .footer .info {
  display: grid;
  padding: 20px;
  gap: 20px;
  grid-template-columns: 260px 1fr;
  max-width: 980px;
  margin: 0 auto;
}
body .footer .info .contact-info .logo {
  width: 135px;
  margin-bottom: 23px;
  align-items: center;
  flex-direction: column;
  display: flex;
  flex-wrap: wrap;
}
body .footer .info .contact-info .logo .site-name {
  text-transform: uppercase;
  color: #fff !important;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 30px;
}
body .footer .info .contact-info .company-info {
  margin: -10px 0 0 -10px;
  font-family: Roboto Condensed, sans-serif;
}
body .footer .info .contact-info .company-info .item {
  display: flex;
  align-items: center;
  width: 193px;
  padding: 10px 0 0 10px;
  box-sizing: border-box;
}
body .footer .info .contact-info .company-info .item .icon {
  margin-right: 13px;
}
body .footer .info .contact-info .company-info .item a {
  color: #fff;
  opacity: 0.5;
  line-height: 30px;
  font-family: Roboto Condensed, sans-serif;
  text-decoration: none;
}
body .footer .info .contact-info .images {
  margin-top: 21px;
  margin-left: -15px;
}
body .footer .info .contact-info .images .q-img {
  opacity: 0.5;
  margin-top: 15px;
  margin-left: 15px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
}
body .footer .info .contact-info .images .q-img .pay-logo {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
body .footer .info .contact-info .images .q-img .pay-logo img {
  width: 100%;
  height: 100%;
}
body .footer .info .services ul {
  padding-top: 25px;
}
body .footer .info .services ul li {
  padding: 0 0 10px 0;
}
body .footer .info .services ul li a {
  color: #fff;
  font-family: Roboto Condensed, sans-serif;
  opacity: 0.5;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
}
body .footer .info .services ul li a:hover {
  opacity: 1;
}
body .footer .notice {
  color: #777;
  margin: 0 auto;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  box-sizing: border-box;
  padding: 10px;
  max-width: 980px;
}
body .update-message {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #27b71b;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 5px;
}
body .error-message {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #991122;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 5px;
}

ul#popular-searches {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
ul#popular-searches li {
  margin: 0;
  padding: 0;
}
ul#popular-searches a[data-weight="1"] {
  --size: 1;
}
ul#popular-searches a[data-weight="2"] {
  --size: 2;
}
ul#popular-searches a[data-weight="3"] {
  --size: 3;
}
ul#popular-searches a[data-weight="4"] {
  --size: 4;
}
ul#popular-searches a[data-weight="5"] {
  --size: 5;
}
ul#popular-searches a[data-weight="6"] {
  --size: 6;
}
ul#popular-searches a[data-weight="7"] {
  --size: 7;
}
ul#popular-searches a[data-weight="8"] {
  --size: 8;
}
ul#popular-searches a[data-weight="9"] {
  --size: 9;
}
ul#popular-searches a[data-weight="10"] {
  --size: 10;
}
ul#popular-searches a {
  display: inline-block;
  padding: 0.25rem 0.4rem;
  text-decoration: none;
  position: relative;
  font-size: calc(var(--size) * 0.15rem + 0.75rem);
  opacity: calc(0.5 + var(--size) * 0.075);
  transition: transform 0.2s ease, color 0.2s ease;
}
ul#popular-searches a:hover {
  transform: scale(1.1);
}

/* NSFW picture blur effect */
.picture-nsfw {
  filter: blur(12px);
  transform: scale(1.15);
}
