/* 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;
}

.location-picker-wrap {
  position: relative;
}
.location-picker-wrap input[type=text] {
  width: 100%;
  box-sizing: border-box;
}

.location-dropdown {
  display: none;
  position: absolute;
  z-index: 100;
  background: #fff;
  border: 1px solid #ccc;
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.location-dropdown .location-group-header {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  color: #888;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
  letter-spacing: 0.5px;
  cursor: default;
}
.location-dropdown .location-option {
  padding: 12px 12px 12px 20px;
  cursor: pointer;
  font-size: 16px;
}
.location-dropdown .location-option:hover {
  background-color: #f0f0f0;
}

.location-selected-text {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  line-height: 28px;
  width: 100%;
}
.location-selected-text .location-clear {
  margin-left: auto;
  cursor: pointer;
  font-size: 26px;
  font-weight: bold;
  color: #999;
}

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: rgb(0, 66.88, 132);
  display: none;
  position: absolute;
  right: -4px;
  top: -4px;
  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 rgb(0, 0, 0);
  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 {
  position: relative;
  border-radius: 5px;
}
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 .name {
  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: 5px;
}
body .search-profile .inner .image {
  width: 100%;
  padding-bottom: 160%;
  position: relative;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
  background: #fff;
}
body .search-profile .inner .image > div {
  border-radius: 5px 5px 0 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
body .search-profile .inner a {
  width: 100%;
  display: block;
  text-decoration: none;
}
body .search-profile .inner a .info-wrap {
  padding: 15px 15px 10px 15px;
}
body .search-profile .inner a .info-wrap .name {
  height: 66px;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .search-profile .inner a .info-wrap .name span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body .search-profile .inner .area-label {
  color: #666;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  padding: 0 0 15px 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: 0;
  left: 0;
  background-color: white;
  width: 50px;
  height: 50px;
  z-index: 5;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-top-left-radius: 3px;
}
body .search-card-type > span {
  font-family: "Open Sans Condensed", Arial, sans-serif;
  font-size: 16px;
  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 {
  background-color: #fafafa;
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-family: "Open Sans", Arial, sans-serif;
  flex: 1;
}
body .main-wrap .content-wrap .fp-title {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #900;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
}
body .main-wrap .content-wrap .fp-text-wrap {
  background-color: #ffffff;
  border-top: #eee 1px solid;
}
body .main-wrap .content-wrap .fp-text-wrap .fp-text-wrap-inner {
  max-width: 1300px;
  margin: 0 auto 0 auto;
  padding: 10px 20px 20px 20px;
  text-align: center;
}
body .main-wrap .content-wrap .fp-text-wrap .fp-text-wrap-inner h2 {
  font-weight: bold;
  margin-bottom: 15px;
}
body .main-wrap .content-wrap .fp-text-wrap .fp-text-wrap-inner p {
  margin-bottom: 15px;
  line-height: 22px;
}
body .main-wrap .content-wrap .fp-service-tags {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 20px 20px 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
body .main-wrap .content-wrap .fp-service-tags > h2 {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #900;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
body .main-wrap .content-wrap .fp-service-tags .service-tag {
  display: inline-block;
  padding: 6px 12px;
  background-color: #fff;
  border: #eeeeee 1px solid;
  border-radius: 11px;
  font-size: 14px;
  color: #666;
  text-decoration: none;
}
body .main-wrap .content-wrap .fp-service-tags .service-tag > .service-count {
  color: #dd5555;
  font-size: 12px;
  position: relative;
  top: -1px;
  padding-left: 3px;
}
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 {
  /* View profile */
}
body .main-wrap .content-wrap .profile-header-wrap {
  width: 100%;
  padding: 20px 0;
  background-color: #fafafa;
  position: relative;
}
body .main-wrap .content-wrap .profile-header-wrap > .label-validated {
  display: none;
}
body .main-wrap .content-wrap .profile-header-wrap .profile-header-inner {
  max-width: 1300px;
  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: #991122;
}
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: #24a1de;
}
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-mobile-gallery {
  display: none;
}
body .main-wrap .content-wrap .profile-outer-wrap {
  max-width: 1300px;
  margin: 0 auto;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap {
  display: flex;
  width: 100%;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap {
  width: 40%;
  flex-shrink: 0;
  padding: 20px 30px 20px 15px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .profileprimarymedia-wrap {
  position: relative;
  margin-bottom: 15px;
  border-radius: 5px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .profileprimarymedia-wrap .label-validated {
  top: -5px;
  right: -5px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .profileprimarymedia-wrap > a {
  background-color: #ffffff;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 5px;
}
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 .media-thumb-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .media-thumb-wrap .media-wrap {
  border-radius: 5px;
  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;
  text-align: center;
  margin: 0 0 20px 0;
  color: #999;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-media-wrap .profile-id > a {
  color: #999 !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-content-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 15px 50px 0;
  position: relative;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap h3 {
  padding: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #666;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-data-wrap {
  order: 1;
  margin-bottom: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-data-wrap .info-cards-title {
  padding: 20px;
  margin: 0;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-data-wrap .info-cards-wrap {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-data-wrap .info-cards-wrap .info-card-full {
  grid-column: 1/-1;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-data-wrap .info-cards-wrap .info-card .info-card-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
  padding-bottom: 3px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-data-wrap .info-cards-wrap .info-card .info-card-value {
  font-size: 16px;
  color: #000;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-data-wrap .info-cards-wrap .info-card .info-card-value a {
  color: #000;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .payment-methods-wrap {
  order: 6;
  margin-bottom: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .payment-methods-wrap > h3 {
  margin-left: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .payment-methods-wrap .payment-methods {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .payment-methods-wrap .payment-methods .payment-method-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 11px;
  font-size: 14px;
  background-color: #f6f6f6;
  color: #333;
  text-decoration: none;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-text-wrap {
  order: 3;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-text-wrap > h3 {
  margin-left: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-text-wrap .text-wrap {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  line-height: 140%;
  margin-bottom: 20px;
  word-break: break-word;
  position: relative;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-text-wrap .text-wrap.collapsed {
  max-height: 390px;
  overflow: hidden;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-text-wrap .text-wrap.collapsed .read-more-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: left;
  padding: 50px 0 0 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 50%);
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-text-wrap .text-wrap.collapsed .read-more-fade .read-more-link {
  display: inline-block;
  padding: 20px;
  background-color: #fff;
  color: #bb4444;
  xborder: 1px solid #bb4444;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-services-wrap {
  order: 4;
  margin-bottom: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-services-wrap > h3 {
  margin-left: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-services-wrap .profile-services {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  columns: 3;
  column-gap: 10px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-services-wrap .profile-services .service-tag {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  margin-bottom: 6px;
  break-inside: avoid;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-services-wrap .profile-services .service-tag::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url(/Gfx/FontAwesome/circle-check-solid-full.svg) center/contain no-repeat;
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(401%) hue-rotate(87deg) brightness(97%) contrast(90%);
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container {
  order: 5;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container > h3 {
  margin-left: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container .pricelist-wrap {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 10px;
  padding: 5px 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container .pricelist-wrap .pricelist-item {
  padding: 15px 0;
  border-top: rgba(0, 0, 0, 0.1) 1px solid;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container .pricelist-wrap .pricelist-item:first-child {
  border-top: none;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container .pricelist-wrap .pricelist-item .pricelist-item-top {
  display: flex;
  align-items: baseline;
  font-weight: 500;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container .pricelist-wrap .pricelist-item .pricelist-item-period {
  flex: 1;
  text-align: left;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container .pricelist-wrap .pricelist-item .pricelist-item-prices {
  display: flex;
  flex-shrink: 0;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container .pricelist-wrap .pricelist-item .pricelist-item-dkk,
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container .pricelist-wrap .pricelist-item .pricelist-item-eur {
  text-align: right;
  color: #900;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container .pricelist-wrap .pricelist-item .pricelist-item-dkk {
  width: 150px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .pricelist-container .pricelist-wrap .pricelist-item .pricelist-item-text {
  color: #666;
  margin-top: 4px;
  line-height: 130%;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-schedule-wrap {
  order: 7;
  margin-bottom: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-schedule-wrap > h3 {
  margin-left: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-schedule-wrap .schedule-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 10px;
  padding: 0 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-schedule-wrap .schedule-table tbody tr.schedule-row {
  border-top: rgba(0, 0, 0, 0.1) 1px solid;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-schedule-wrap .schedule-table tbody tr.schedule-row:first-child {
  border-top: 0;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-schedule-wrap .schedule-table tbody tr.schedule-row td {
  padding: 15px;
  text-align: left;
  vertical-align: top;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-schedule-wrap .schedule-table tbody tr.schedule-row td.schedule-day {
  white-space: nowrap;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-schedule-wrap .schedule-table tbody tr.schedule-row td.schedule-time {
  white-space: nowrap;
  color: #900;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-content-wrap .profile-schedule-wrap .schedule-table tbody tr.schedule-row td.schedule-text {
  width: 100%;
  color: #666;
}
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 .profile-stories-wrap {
  order: 2;
  margin-bottom: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-stories-wrap h3 {
  margin-left: 20px;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-stories-wrap .profile-stories {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  flex-wrap: wrap;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-stories-wrap .profile-stories .profile-story-circle {
  display: block;
  flex-shrink: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-stories-wrap .profile-stories .profile-story-circle:hover .profile-story-circle-image {
  transform: scale(1.05);
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-stories-wrap .profile-stories .profile-story-circle .profile-story-circle-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 3px solid white;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.2s ease, filter 0.3s ease;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-stories-wrap .profile-stories .profile-story-circle .profile-story-circle-image::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(#ffbf48, #991122, #ffbf48);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: storyRingRotate 2s linear infinite;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-stories-wrap .profile-stories .profile-story-circle.viewed .profile-story-circle-image {
  filter: grayscale(100%);
  opacity: 0.7;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .profile-stories-wrap .profile-stories .profile-story-circle.viewed .profile-story-circle-image::after {
  background: transparent;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap {
  margin-bottom: 20px;
  order: 2;
}
body .main-wrap .content-wrap .profile-outer-wrap .profile-info-wrap .video-gallery-wrap .video-gallery-title {
  margin-left: 20px;
}
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: 15px;
}
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: 5px;
  background: #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 {
  /* Story Circles */
}
body .main-wrap .content-wrap .stories-circles-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
body .main-wrap .content-wrap .stories-circles-wrap .stories-scroll-btn {
  position: absolute;
  top: 50px;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  opacity: 1;
  transition: opacity 0.2s ease;
}
body .main-wrap .content-wrap .stories-circles-wrap .stories-scroll-btn:hover {
  opacity: 1;
}
body .main-wrap .content-wrap .stories-circles-wrap .stories-scroll-btn img {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
  width: 100%;
  height: 100%;
}
body .main-wrap .content-wrap .stories-circles-wrap .stories-scroll-left {
  left: 0;
}
body .main-wrap .content-wrap .stories-circles-wrap .stories-scroll-right {
  right: 0;
}
body .main-wrap .content-wrap .stories-circles-wrap::before, body .main-wrap .content-wrap .stories-circles-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 1;
  pointer-events: none;
  display: none;
}
body .main-wrap .content-wrap .stories-circles-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fafafa, transparent);
}
body .main-wrap .content-wrap .stories-circles-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fafafa, transparent);
}
body .main-wrap .content-wrap .stories-circles-wrap.has-scroll-left::before {
  display: block;
}
body .main-wrap .content-wrap .stories-circles-wrap.has-scroll-right::after {
  display: block;
}
body .main-wrap .content-wrap .stories-circles-wrap .inner-wrap {
  display: flex;
  padding: 7px;
  margin-bottom: 10px;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
  cursor: grab;
}
body .main-wrap .content-wrap .stories-circles-wrap .inner-wrap.dragging {
  cursor: grabbing;
  user-select: none;
}
body .main-wrap .content-wrap .stories-circles-wrap .inner-wrap::-webkit-scrollbar {
  display: none;
}
body .main-wrap .content-wrap .stories-circles-wrap .story-circle {
  display: block;
  flex-shrink: 0;
  text-align: center;
  text-decoration: none;
}
body .main-wrap .content-wrap .stories-circles-wrap .story-circle:hover .story-circle-image {
  transform: scale(1.05);
}
body .main-wrap .content-wrap .stories-circles-wrap .story-circle .story-circle-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 3px solid white;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.2s ease, filter 0.3s ease;
}
body .main-wrap .content-wrap .stories-circles-wrap .story-circle .story-circle-image::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(#ffbf48, #991122, #ffbf48);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: storyRingRotate 2s linear infinite;
}
body .main-wrap .content-wrap .stories-circles-wrap .story-circle .story-circle-name {
  font-size: 12px;
  font-weight: 600;
  color: #912;
  padding-top: 8px;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .main-wrap .content-wrap .stories-circles-wrap .story-circle.viewed .story-circle-image {
  filter: grayscale(100%);
  opacity: 0.7;
}
body .main-wrap .content-wrap .stories-circles-wrap .story-circle.viewed .story-circle-image::after {
  background: transparent;
}
body .main-wrap .content-wrap .stories-circles-wrap .story-circle.viewed .story-circle-name {
  font-weight: 400;
  color: #666;
  opacity: 0.5;
}
body .main-wrap .content-wrap {
  /* Frontpage */
}
body .main-wrap .content-wrap .frontpagepromotions-wrap {
  padding: 10px 0;
  background-color: #eee;
  box-sizing: border-box;
  border-bottom: #dddddd 1px solid;
  box-shadow: 0 3px 6px #eee;
  width: 100%;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .inner-wrap {
  max-width: 1300px;
  margin: 0 auto 0 auto;
  padding: 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: 5px;
  box-sizing: border-box;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner {
  position: relative;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 5px;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner .image {
  width: 100%;
  padding-bottom: 160%;
  position: relative;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner .image > div {
  border-radius: 5px 5px 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;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner a .info-wrap .name span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body .main-wrap .content-wrap .frontpagepromotions-wrap .frontpagepromotion-wrap .inner .area-label {
  color: #666;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  padding: 0 0 15px 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 */
}
body .main-wrap .search-result-wrap {
  box-sizing: border-box;
  background-color: #eee;
  border-top: #e6e6e6 1px solid;
  border-bottom: #dddddd 1px solid;
  padding: 10px 0;
}
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: 5px 15px 20px 15px;
}
body .main-wrap .search-result-wrap .title-wrap .title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #666666;
  padding: 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 0 auto;
  padding: 10px;
  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 .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 * {
  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 {
  /* Clear floats after the columns */
}
body .main-wrap .create-wrap .form-wrap .form-container .row:after {
  content: "";
  display: table;
  clear: both;
}
body .main-wrap .create-wrap .form-wrap .form-container {
  /* 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 */
}
@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 .create-completed {
  padding: 15px;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
body .main-wrap .create-completed h1 {
  font-size: 22px;
  color: #912;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
body .main-wrap .create-completed div.advert-id {
  margin: 20px 0;
  padding: 15px;
  background-color: #eee;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 30px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
body .main-wrap .create-completed div.advert-id > div {
  font-size: 14px;
  text-transform: uppercase;
}
body .main-wrap .create-completed .button-wrap {
  margin-top: 20px;
  padding: 15px 20px;
  text-transform: uppercase;
}
body .main-wrap .create-completed .button-wrap a {
  color: #fff;
  text-decoration: none;
}
body .main-wrap .normal-page {
  max-width: 1300px;
  margin: 0 auto;
  vertical-align: top;
  padding: 20px;
}
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 10px 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 .article-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  font-family: "Open Sans", Arial, sans-serif;
}
body .main-wrap .article-wrap > h1 {
  font-family: "Roboto Condensed", serif;
  font-weight: 600;
  font-size: 26px;
  color: #990000;
  margin: 0 0 20px 0;
}
body .main-wrap .article-wrap .article-introduction {
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 10px;
}
body .main-wrap .article-wrap .article-content {
  position: relative;
}
body .main-wrap .article-wrap .article-content p {
  line-height: 160%;
  margin-bottom: 10px;
}
body .main-wrap .article-wrap .article-content h2 {
  font-family: "Roboto Condensed", serif;
  margin: 30px 0 10px 0;
  color: #333333;
  font-style: normal;
  font-weight: 600 !important;
  font-size: 22px;
}
body .main-wrap .article-wrap .article-content h3 {
  font-family: "Roboto Condensed", serif;
  font-style: normal;
  font-weight: 600 !important;
  font-size: 20px;
  color: #000;
  margin: 20px 0 5px 0;
}
body .main-wrap .article-wrap .article-content h4 {
  font-style: normal;
  font-family: "Roboto", serif;
  font-weight: 600 !important;
  font-size: 16px;
  color: #000;
  margin: 20px 0 5px 0;
}
body .main-wrap .article-wrap .article-content a {
  color: #990000;
  font-weight: bold;
  text-decoration: underline;
}
body .main-wrap .article-wrap .faq {
  margin-top: 40px;
}
body .main-wrap .article-wrap .faq h2 {
  font-family: "Roboto Condensed", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  margin: 0 0 20px 0;
  color: #000;
  text-transform: uppercase;
}
body .main-wrap .article-wrap .faq .faq-item {
  margin-bottom: 15px;
  padding: 15px;
  background-color: #fff;
  border-radius: 4px;
}
body .main-wrap .article-wrap .faq .faq-item h3 {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
}
body .main-wrap .article-wrap .faq .faq-item .faq-answer {
  font-size: 14px;
  line-height: 160%;
  color: #333;
}
body .main-wrap .article-wrap .article-list .list-item {
  margin-bottom: 20px;
}
body .main-wrap .article-wrap .article-list .list-item > h2 {
  font-family: "Roboto Condensed", serif;
  font-weight: 600 !important;
  font-size: 18px;
}
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: 1300px;
  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: 1300px;
}
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);
}

/* Story Viewer Overlay - must be at root level since it's appended to body */
.story-viewer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-family: "Open Sans", Arial, sans-serif;
}
.story-viewer-overlay .story-viewer-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  max-height: 95vh;
  height: 95vh;
}
.story-viewer-overlay .story-viewer-wrap.story-exit-left {
  animation: storyExitLeft 0.2s ease forwards;
}
.story-viewer-overlay .story-viewer-wrap.story-exit-right {
  animation: storyExitRight 0.2s ease forwards;
}
.story-viewer-overlay .story-viewer-wrap.story-enter {
  animation: storyFadeIn 0.05s ease forwards;
}
@media (max-width: 500px) {
  .story-viewer-overlay .story-viewer-wrap {
    max-width: 100%;
    height: 100%;
    max-height: 100%;
  }
}
.story-viewer-overlay .story-viewer {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
}
@keyframes storyExitLeft {
  from {
    transform: translateX(0) scaleY(1);
    opacity: 1;
  }
  to {
    transform: translateX(-60%) scaleY(0.9);
    opacity: 0;
  }
}
@keyframes storyExitRight {
  from {
    transform: translateX(0) scaleY(1);
    opacity: 1;
  }
  to {
    transform: translateX(60%) scaleY(0.9);
    opacity: 0;
  }
}
@keyframes storyFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.story-viewer-overlay .story-progress-container {
  display: flex;
  gap: 4px;
  padding: 8px 8px 0 8px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
}
.story-viewer-overlay .story-progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}
.story-viewer-overlay .story-progress-bar.completed {
  background: #fff;
}
.story-viewer-overlay .story-progress-bar .story-progress-fill {
  height: 100%;
  background: #fff;
  width: 0%;
}
.story-viewer-overlay .story-header {
  padding: 30px 15px 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  background: none;
  box-sizing: border-box;
}
.story-viewer-overlay .story-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.story-viewer-overlay .story-header-left:hover {
  text-decoration: none;
}
.story-viewer-overlay .story-header-picture {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  flex-shrink: 0;
}
.story-viewer-overlay .story-header-info {
  color: #fff;
  overflow: hidden;
}
.story-viewer-overlay .story-header-name {
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 2px;
  padding-right: 30px;
}
.story-viewer-overlay .story-header-location {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
}
.story-viewer-overlay .story-btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10001;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  opacity: 0.9;
}
.story-viewer-overlay .story-btn-close:hover {
  opacity: 1;
}
.story-viewer-overlay .story-btn-mute {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  opacity: 0.9;
  display: none;
}
.story-viewer-overlay .story-btn-mute:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}
.story-viewer-overlay .story-btn-mute.muted .icon-unmuted, .story-viewer-overlay .story-btn-mute.unmuted .icon-muted {
  display: none;
}
.story-viewer-overlay .story-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-viewer-overlay .story-btn-visit {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(153, 17, 34, 0.6);
  color: #fff;
  border: 1px solid rgba(153, 17, 34, 0.8);
  border-radius: 25px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Open Sans Condensed", sans-serif;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease;
}
.story-viewer-overlay .story-btn-visit:hover {
  background: rgba(153, 17, 34, 0.8);
}
.story-viewer-overlay .story-bg-blur {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.5);
  z-index: 0;
}
.story-viewer-overlay .story-media-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.story-viewer-overlay .story-media-container img, .story-viewer-overlay .story-media-container video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.story-viewer-overlay .story-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  color: #fff;
}
.story-viewer-overlay .story-nav svg {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.story-viewer-overlay .story-nav:hover svg {
  opacity: 1;
}
.story-viewer-overlay .story-nav-prev {
  left: 0;
  padding: 100px 25px 100px 0;
}
.story-viewer-overlay .story-nav-next {
  right: 0;
  padding: 100px 0 100px 25px;
}

@keyframes storyRingRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
