@charset "utf-8";
@font-face {
    font-family: "Beausite";
    src: url(../fonts/Beausite.eot);
    src: url("../fonts/Beausite.eot?#iefix") format("embedded-opentype"), url(../fonts/Beausite.woff2) format("woff2"), url(../fonts/Beausite.woff) format("woff"), url(../fonts/Beausite.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
figcaption,
dl,
dd,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    font-weight: 400
}

html {
    font-size: 16px
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    color: #111;
    background-color: #fff
}

ul,
ol {
    list-style: none
}

blockquote,
q {
    quotes: none
}

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

img,
video,
canvas,
audio,
iframe,
embed {
    display: block;
    max-width: 100%;
    height: auto
}

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

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0
}

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

:root {
    --font-size-form-label: 15px;
    --font-size-form-label-small: 12px;
    --font-size-form-label-large: 17px;
    --font-size-form-hint: 12px;
    --font-size-form-label-error: 14px;
    --font-size-form-input: 15px;
    --font-size-default-p: 16px;
    --font-size-default-h1: 38px;
    --font-size-default-h2: 28px;
    --font-size-default-h3: 18px;
    --font-size-default-h4: 16px;
    --font-size-footer-text: 13px;
    --font-size-nav-bar: 17px;
    --font-size-nav-tagline: 14px;
    --font-size-nav-button: 11px;
    --font-size-sub-text-small: 13px;
    --font-size-review-count: 12px;
    --font-size-icon-key: 14px;
    --font-size-checkbox-interests: 13px;
    --font-size-lockerroom-icon: 24px;
    --font-size-lockerroom-nav: 12px;
    --font-size-chat-body: 14px;
    --font-size-chat-time: 9px;
    --font-size-nav-menu: 25px;
    --font-size-search-pagination: 12px;
    --font-size-lockerroom-title: 18px;
    --font-size-lockerroom-subtitle: 17px;
    --font-size-chat-input: 14px;
    --font-size-profile-tags: 12px;
    --font-size-profile-header: 17px;
    --blue-color: #509cc8;
    --bright-blue-color: #5bc7fd;
    --white-color: #fff;
    --light-gray-color: #a0a0a0;
    --white-font-color: #f0f0f0;
    --color-body-text: #dfdfdf;
    --default-font-family: "Beausite", sans-serif, arial, helvetica;
    --special-font-family: "Poppins", sans-serif;
    --default-p-font: "Beausite", sans-serif;
    --dark-gray-color: #7a8084;
    --background-color-alt: #16191c;
    --background-color: #1c2023;
    --color-special-button: #c8a450;
    --color-form-border: #a8a8a812;
    --bg-image: url(../images/site/backgrounds/qs-bg11.png);
    --zero: 0;
    --button-border-radius: 4px;
    --filter-de-sat: hue-rotate(0deg) saturate(0);
    --form-background: #202327e3;
    --avatar-bg-color: #819baa
}

ol,
ul {
    list-style: none
}

a:active,
a:hover,
a:link,
a:visited {
    color: var(--white-color)
}

html {
    background-color: var(--background-color)
}

html::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, black, transparent), var(--bg-image) no-repeat center/cover;
    filter: saturate(0);
    z-index: -1;
    animation: saturate-fade 4s forwards
}

html.no-background::before {
    background: linear-gradient(to bottom, black, transparent) !important;
    animation: none
}

@keyframes saturate-fade {
    0% {
        filter: saturate(0)
    }
    100% {
        filter: saturate(.5)
    }
}

body {
    color: var(--color-body-text);
    font-family: var(--default-p-font);
    text-rendering: optimizelegibility;
    height: 100%;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(to bottom, black, #0000 5%, #1c2023 50%, black 100%);
    background-position: top
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%
}

.no-content body {
    background: linear-gradient(to bottom, black, #0000 5%, #1c2023 80%, black 100%)
}

a:link {
    text-decoration: none
}

.special .title {
    font-family: var(--special-font-family)
}

a:hover,
.help a:hover {
    text-decoration: underline
}

.logo a {
    display: flex;
    position: relative
}

.padlock {
    background-image: url(../images/site/padlock.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform-origin: top center;
    height: 25px;
    aspect-ratio: 1;
    width: 25px;
    position: absolute;
    right: -4px;
    bottom: -9px;
    animation: sway 2.5s ease-out forwards
}

@keyframes sway {
    0% {
        transform: rotate(0deg)
    }
    15% {
        transform: rotate(20deg)
    }
    30% {
        transform: rotate(-15deg)
    }
    45% {
        transform: rotate(10deg)
    }
    60% {
        transform: rotate(-8deg)
    }
    75% {
        transform: rotate(4deg)
    }
    90% {
        transform: rotate(-2deg)
    }
    100% {
        transform: rotate(2deg)
    }
}

p {
    padding-bottom: 5px;
    padding-top: 5px;
    line-height: 1.5;
    font-size: var(--font-size-default-p)
}

.center,
section .center {
    text-align: left
}

section .full-width {
    width: 100%
}

h1.default-font.link i.fa-solid {
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    display: none
}

#wrapper {
    width: 100%;
    padding-top: 10px;
    height: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column
}

.terms #wrapper {
    display: block;
    width: 100%
}

.center-div {
    width: 1170px
}

#menu-items {
    width: 100%;
    height: fit-content;
    position: absolute;
    max-height: 600px;
    max-width: initial;
    top: 75px;
    overflow: clip
}

#menu-items :not(a) {
    font-size: var(--font-size-nav-bar)
}

.menu-toggle {
    display: block;
    margin-right: 15px;
    margin-top: 4px
}

#menu-btn {
    background-color: unset;
    color: #fff
}

.switch .sign-up {
    position: absolute;
    right: 5px;
    top: 45px
}

.nav ul li {
    font-family: var(--special-font-family);
    text-transform: capitalize;
    position: relative
}

.highlight.mobile-link {
    display: none
}

.nav-padding .menu-wrap>li:not(.dropdown):not(.highlight) {
    display: none
}

.header-main .center-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    gap: 10px
}

.nav-bar .center-div {
    flex-direction: column;
    align-items: end;
    gap: 5px;
    position: relative
}

.border.top,
.qs-header {
    position: relative
}

.border.top {
    background-color: #000;
    min-height: 25px;
    padding-top: 5px;
    padding-bottom: 5px
}

.border.top.divider {
    border: none
}

li .highlight,
.nav ul.switch #menu-items .menu-wrap li.highlight a {
    background-color: var(--blue-color);
    border-radius: 1000px;
    align-content: center;
    align-items: center;
    display: inline-block;
    height: 25px;
    padding: 0 10px
}

.border.top li {
    display: inline
}

.border.top .login-menu {
    float: right;
    font-weight: 700
}

.menu-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 25px 15px 15px 18px;
    right: -100%;
    background: linear-gradient(to bottom, #000, #304c59);
    border-bottom: 1px solid #8599a62e;
    transition: all 1s, opacity 0.5s;
    opacity: 0;
    z-index: 1000
}

.menu-wrap.show {
    right: 0;
    opacity: 1
}

.header-main .logo {
    display: none;
    flex-direction: column;
    max-width: 300px;
    align-items: center;
    padding-left: 10px
}

.header-main .logo {
    display: none
}

.header-main .switch .logo {
    display: flex;
    padding-left: 10px
}

.header-main .logo img {
    height: 40px;
    max-width: 206px
}

.nav ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
    place-content: center space-between;
    flex-wrap: wrap
}

.nav ul.login-menu {
    flex-wrap: nowrap;
    white-space: nowrap;
    place-content: center;
    gap: 0;
    max-width: 100px
}

.login-menu li.highlight {
    flex: 0 0 auto
}

.nav .switch {
    place-content: space-between;
    gap: 10px;
    padding-top: .5em
}

.nav ul li:hover ul {
    display: block
}

.nav ul li:hover ul.login-menu {
    display: flex
}

.nav ul li.divider {
    background-image: url(../images/site/disc-blue.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 10px;
    background-color: initial;
    border: none;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: inline;
    overflow: clip
}

.nav .dropdown-menu {
    position: relative;
    padding: 5px;
    gap: 0;
    margin-top: 5px;
    margin-bottom: 5px
}

.nav .dropdown-menu li {
    display: block;
    padding: 4px 5px;
    width: 100%;
    min-width: 100%
}

.nav .dropdown:hover .dropdown-menu {
    display: block
}

.nav .locker-room {
    background-image: url(../images/locker-rooms-small.png);
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: center calc(50% + 1px);
    color: #fff0;
    padding-left: 5px;
    padding-right: 10px
}

.nav-bar {
    width: 100%;
    order: -1;
    border-bottom: 1px solid #8599a62e;
    background: linear-gradient(to bottom, black 50%, #00000059);
    padding-bottom: 5px
}

#nav-select {
    width: 100%
}

.nav .fa-solid.fa-ellipsis-vertical {
    margin: 0;
    padding: 4px
}

.nav .fa-solid {
    padding-top: 2px;
    font-size: var(--font-size-nav-menu)
}

.nav-droplet {
    height: fit-content;
    align-self: center;
    display: none
}

ul.dropdown-menu i,
.nav ul div#menu-items li a i {
    min-width: 20px
}

.nav .fa-solid.reverse {
    transform: scaleX(-1);
    transform-origin: center;
    right: 4px;
    position: relative
}

.nav ul li.highlight a {
    font-size: var(--font-size-nav-button);
    display: block
}

li.lockerroom a {
    background-image: url(../images/locker-rooms-nav.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: #fff0
}

.nav ul.switch #menu-items .menu-wrap li.highlight a {
    margin-left: 10px
}

button.splash .fa-solid {
    margin-left: 6px
}

#main {
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    flex: 1;
    padding-left: .75rem;
    padding-right: .75rem;
    padding-top: 1em
}

h1 {
    font-family: var(--special-font-family);
    position: relative;
    text-transform: capitalize;
    line-height: 1;
    padding: 0 0 5px;
    background-color: #fff0;
    color: var(--white-font-color);
    text-align: left;
    font-size: var(--font-size-default-h1)
}

h2 {
    color: var(--white-color);
    line-height: 1;
    width: fit-content;
    margin-bottom: 1rem;
    font-family: var(--special-font-family);
    text-transform: capitalize;
    padding: 10px 0;
    position: relative;
    display: inline-block;
    font-size: var(--font-size-default-h2);
    text-align: center
}

h3 {
    color: #fff;
    margin-top: 10px;
    line-height: 1;
    font-size: var(--font-size-default-h3)
}

.logo .tag-line {
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    display: flex;
    max-width: 300px;
    width: fit-content;
    font-size: var(--font-size-nav-tagline)
}

.welcome {
    position: relative
}

.welcome span {
    font-weight: 700
}

.welcome .shortcuts {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #8599a62e;
    margin-top: 1em;
    padding-top: 1em
}

.shortcuts a i {
    color: #fff;
    margin-right: 5px
}

#s-sauna,
#u-sauna {
    margin-top: 20px
}

.special {
    width: 280px;
    border: 1px solid #444;
    box-shadow: 0 0 4px #000;
    background-color: #292929
}

.special .venue {
    height: 100%;
    width: 100%;
    position: relative
}

.special .thumb {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center
}

.special .title {
    text-align: center;
    background-color: var(--blue-color);
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 8px 0 10px;
    opacity: .75;
    display: none
}

.footer .details,
.footer .social,
.form-message {
    text-align: center
}

.fa-solid.fa-cookie-bite {
    display: none
}

.info-head h2 {
    position: relative;
    display: inline-block
}

.home-preview {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-flow: column wrap;
    gap: 20px
}

.home-preview .venue {
    width: 250px;
    vertical-align: top;
    height: 150px;
    margin-bottom: 10px;
    margin-top: 10px;
    position: relative
}

.home-preview .featured-venue {
    height: auto;
    position: relative;
    min-height: 200px;
    flex: 0 0 48%;
    text-align: center
}

.featured-venue {
    width: 100%;
    height: 340px;
    position: relative
}

.featured-venue a {
    display: flex;
    gap: 0;
    flex-direction: column;
    text-align: center;
    position: relative
}

.featured-venue .shadow {
    position: absolute;
    width: 100%;
    background-color: #000;
    opacity: .12;
    height: 100%;
    z-index: 1
}

.featured-venue .sub-title {
    color: var(--dark-gray-color);
    font-style: italic;
    display: none
}

.featured-venue .sub-title.italic {
    color: var(--blue-color);
    padding-bottom: 10px;
    font-style: italic;
    font-size: var(--font-size-sub-text-small)
}

div.border {
    padding: 10px 20px;
    margin-bottom: 50px;
    background: url(../images/mosaic-bottom-right.png) no-repeat bottom right/20px, url(../images/mosaic-top-left.png) no-repeat top left/20px, var(--background-color)
}

.home-preview .venue .title,
.review .details .name h3 a,
.top-ten .position {
    font-family: var(--special-font-family)
}

#main .register-holder p,
#main .register-holder table tr td label,
#main .register-holder ul li,
.home-preview .venue .title a {
    color: var(--white-color)
}

.featured-venue .stars {
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    margin: auto;
    background-position: center
}

.featured-venue .reviews {
    margin-top: 5px;
    font-size: var(--font-size-review-count)
}

#main .register-holder p {
    width: 100%
}

.home-preview .thumb {
    width: 100%;
    align-self: center;
    align-content: center;
    position: relative;
    display: flex;
    height: 120px
}

.home-preview .image {
    width: 120px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    margin: auto;
    border-radius: 50%;
    align-self: center;
    box-shadow: 0 0 20px #cc7f1d4d;
    aspect-ratio: 1
}

.home-preview .award {
    background-image: url(../images/icons/award-banner01.svg);
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 1;
    height: 100%
}

.home-preview .title {
    color: var(--white-color);
    padding-bottom: 2px;
    padding-top: 2px;
    width: 100%;
    opacity: .75;
    text-align: center;
    font-family: var(--special-font-family);
    font-weight: 700;
    font-size: 20px
}

.review .details {
    padding-left: 15px
}

.review .details .name {
    text-shadow: none;
    color: #cecece
}

.review .details .name h3 a {
    color: var(--white-color)
}

.review .details .rating {
    padding-top: 2px
}

.review .details .rating .stars {
    background-position: -4px center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 16px;
    padding-top: 5px;
    width: 100px
}

.review .avatar {
    background-size: cover;
    background-repeat: no-repeat
}

.review .details .rating .author {
    display: block;
    padding-top: 8px;
    vertical-align: top
}

.review .details .rating .author .name-emp {
    font-weight: 700
}

#main .review .body p {
    padding-left: 0
}

.review .date {
    text-shadow: none;
    color: #999;
    font-style: italic;
    padding-top: 20px;
    font-size: var(--font-size-review-count)
}

.review .details .rating .review-by {
    display: inline-block;
    position: relative;
    top: 0;
    vertical-align: top
}

.review .avatar {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #dddddd45;
    box-shadow: 0 0 5px rgb(0 0 0 / 50%);
    overflow: clip;
    background-size: cover;
    background-position: center;
    background-color: var(--avatar-bg-color)
}

#onBoarding {
    display: flex;
    opacity: 0
}

.top-ten {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    box-sizing: border-box;
    gap: 10px;
    margin-top: 1rem
}

.footer .social ul li,
.top-ten .num-reviews,
.top-ten .stars {
    display: inline-block
}

.top-ten .title {
    z-index: 100
}

.top-ten .title>a {
    color: var(--white-color);
    font-family: var(--special-font-family);
    display: block
}

.top-ten .venue {
    background-color: #444;
    position: relative;
    flex: 0 0 48%;
    border-radius: 4px;
    overflow: clip
}

.top-ten .venue.hidden {
    min-width: 270px;
    visibility: hidden
}

.display-wrap,
.full-span.row-wrap {
    flex-wrap: wrap
}

.top-ten .thumb {
    background-repeat: no-repeat;
    background-position: 50% center;
    background-size: cover;
    background-attachment: scroll;
    min-height: 150px;
    width: 100%
}

.top-ten .position,
.top-ten .stars {
    background-repeat: no-repeat;
    background-size: contain
}

.top-ten .position {
    background-image: url(../images/corner-top-left-blue.png);
    color: var(--white-color);
    font-weight: 700;
    padding: 5px 30px 30px 10px;
    position: absolute;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain
}

.top-ten .rating {
    z-index: 100
}

.venue-info-wrap {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0;
    bottom: 0;
    padding-left: 4px
}

.top-ten .shadow {
    opacity: .6;
    width: 100%;
    position: absolute;
    height: 100%;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to top, black, transparent)
}

.top-ten .stars {
    height: 15px;
    width: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: -5px center
}

.top-ten .num-reviews {
    color: var(--white-color);
    vertical-align: top;
    font-size: var(--font-size-review-count)
}

.footer {
    padding-top: 1rem;
    position: relative;
    width: 100%
}

.footer * {
    font-size: var(--font-size-footer-text)
}

.footer .details ul li {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px
}

.footer .social {
    padding-bottom: 30px;
    padding-top: 30px
}

.footer .social ul li img {
    background-color: #040404;
    border-radius: 50px;
    height: 30px;
    width: 30px;
    padding: 5px
}

.main-bg.dark-bg #main .full-span.row-wrap li,
.main-bg.dark-bg .full-span.row-wrap p {
    color: var(--white-color);
    width: 100%
}

.padding,
p.bg-float {
    padding: 10px
}

.width-100 {
    width: 100%
}

.g-recaptcha {
    margin-bottom: 10px;
    margin-top: 10px;
    transform-origin: 0 0
}

.main-bg #wrapper {
    background-image: url(../images/site/background-02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%
}

.main-bg .background-wrap #wrapper {
    background-image: url(../images/site/background-01.jpg)
}

.no-ads .ad-responsive,
.no-ads .adsbygoogle {
    display: none !important
}

.main-bg.no-ads #main {
    padding-top: 150px;
    padding-bottom: 150px
}

.main-bg .bg-float {
    background-color: rgb(150 150 150 / 50%)
}

.main-bg .bg-float a:link {
    font-weight: 700
}

.main-bg .bg-float .help a:link {
    text-decoration: none
}

.main-bg .bg-float p,
.main-bg .bg-float tr td label {
    color: var(--white-color)
}

.form-message {
    color: #1ebfee;
    padding-top: 30px;
    padding-bottom: 10px
}

.half-span,
.sauna-preview-box .right .more button.site-button {
    vertical-align: top
}

.display-wrap {
    display: flex;
    margin-bottom: 2rem;
    gap: 8px;
    justify-content: flex-start
}

section.header {
    position: relative;
    width: 100%;
    padding-bottom: 1rem;
    margin-top: .75em
}

.background-frame {
    background: linear-gradient(to top left, #43a3d21f, #0000);
    padding: 1rem;
    border: 1px solid #8599a62e;
    border-radius: 6px;
    max-width: 100%
}

.background-frame.no-frame {
    background: none;
    border: none
}

.background-frame.no-frame a,
.background-frame.no-frame a:link {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase
}

.background-frame.no-frame a span {
    display: inline-block
}

.background-frame.no-frame a span span {
    color: var(--bright-blue-color);
    display: inline
}

.background-frame.no-frame a i {
    position: relative;
    top: -1.5px
}

section.header h1 {
    padding: 10px 0;
    margin-bottom: 40px;
    width: fit-content
}

section.header .profile-header h1 {
    padding-bottom: .5em;
    width: 100%;
    margin-bottom: 0;
    font-size: var(--font-size-profile-header);
    border-bottom: 1px solid #7575751c
}

section.sauna-page.header h1 {
    text-align: center;
    border: none;
    margin: 0;
    width: 100%
}

.spotlight h3 {
    text-transform: capitalize;
    font-size: 28px;
    text-align: center;
    margin-bottom: .5em;
    padding: 10px 0
}

.spotlight p {
    font-size: var(--font-size-default-p)
}

.spotlight-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1em
}

.spotlight-card {
    flex: 1 0 calc(100%);
    display: flex;
    flex-direction: row;
    gap: 10px;
    background: linear-gradient(to top left, #43a3d21f, #0000);
    border: 1px solid #8599a62e;
    padding: 5px;
    border-radius: 4px
}

a.spotlight-card:hover {
    text-decoration: none
}

.spotlight-card .avatar {
    width: 50px;
    height: 50px;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--avatar-bg-color);
    border-radius: 1000px
}

.spotlight-card .name {
    text-decoration: underline
}

.spotlight-card .body {
    display: flex;
    flex-direction: column
}

.spotlight-card .location {
    color: var(--color-special-button);
    font-size: 14px
}

.spotlight-card .location i {
    color: #fff;
    font-size: 12px
}

.spotlight-card .icons {
    padding-right: 10px;
    display: flex;
    gap: 20px;
    align-items: center
}

.spotlight-card .details {
    flex: 1
}

.spotlight-card .icons svg {
    height: 25px;
    width: 25px;
    color: #62bafa;
    fill: #62bafa
}

.spotlight-holder>:nth-last-child(-n+2) {
    display: none
}

.inbox-handler h1 {
    text-align: center;
    align-self: center
}

.chevrons.line-height {
    line-height: 1.6
}

.chevrons {
    background: url(../images/mosaic-bottom-right.png) no-repeat bottom right/20px, url(../images/mosaic-top-left.png) no-repeat top left/20px;
    padding: 20px;
    min-width: auto;
    width: auto;
    display: inline-block;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px
}

section.header.profile {
    margin: auto;
    position: relative;
    display: block;
    width: fit-content;
    max-width: 100%;
    min-width: 100%
}

section.header.profile div.chevrons p {
    background: none
}

.chevrons.review-call {
    width: 100%;
    text-align: center;
    background-color: var(--background-color);
    margin-top: 2rem;
    margin-bottom: 2rem
}

.icon-key {
    display: block;
    text-align: left;
    margin-top: 20px;
    color: var(--white-font-color);
    font-family: var(--special-font-family)
}

#icon-show {
    display: block;
    cursor: pointer
}

.icon-key div {
    flex-flow: row wrap;
    gap: 10px;
    font-family: var(--default-font-family);
    display: none;
    margin-top: 10px;
    background: rgb(0 0 0 / 20%);
    padding: 10px;
    border-radius: 10px
}

.icon-key div span {
    display: block;
    height: fit-content
}

.icon-key div span.left-padding {
    padding-left: 25px
}

.icon-key div span.left-padding:last-of-type {
    background-size: contain !important;
    padding-left: 15px
}

.icon-key.active div {
    display: flex
}

.sauna-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center
}

.sauna-preview-box .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 80%), rgb(0 0 0 / 20%));
    color: var(--white-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    place-content: center center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    gap: 10px
}

.sauna-preview-box .overlay .title {
    color: var(--white-color);
    font-weight: 700;
    font-family: var(--special-font-family);
    line-height: 1
}

.facilities-icons {
    margin-top: 8px;
    justify-content: start;
    display: flex;
    flex-wrap: wrap;
    row-gap: 2px
}

.fac-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5px
}

.sauna-preview-box .view-more {
    color: var(--blue-color);
    font-weight: 700;
    line-height: 1
}

.sauna-preview-box {
    flex: 0 0 calc((100% / 2) - 0.25rem);
    max-width: unset;
    border-radius: 4px;
    overflow: hidden;
    background: #222;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    aspect-ratio: 1/1;
    position: relative
}

.image-wrap {
    position: relative;
    padding-top: 60%;
    background-size: cover;
    background-position: center
}

.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgb(0 0 0 / 70%), transparent)
}

.info-wrap {
    padding: 15px
}

.facilities-icons .fac-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    margin-right: 5px
}

.sauna-preview-box .right .title {
    display: flex
}

.sauna-preview-box .right {
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 4px;
    background: linear-gradient(to top, #000000ad 50%, #0000);
    width: 100%;
    display: flex;
    flex-direction: column
}

#main .sauna-preview-box .right .title h2 {
    position: relative;
    padding: 0;
    text-align: left;
    font-weight: 400;
    font-size: 18px
}

.sauna-preview-box .right .location {
    color: #b2b2b2
}

.sauna-preview-box .right .ratings {
    align-items: center;
    display: flex
}

.sauna-preview-box .right .ratings .stars {
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 50%;
    height: 20px;
    background-position: -2px center
}

.sauna-preview-box .left {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50%;
    position: absolute
}

.sauna-preview-box .left .thumb {
    background-position: 50% center;
    background-size: cover;
    border: 3px solid #666;
    box-shadow: 0 0 4px #000;
    height: 135px;
    width: 260px
}

.sauna-preview-box .right .facilities-icons {
    margin: 0;
    gap: 2px;
    display: none
}

.sauna-preview-box .right .facilities-icons .fac-icon {
    width: 20px;
    height: 20px
}

.full-span .title h2 {
    margin: 0;
    background: none
}

.sauna-preview-box.atoz>a {
    width: 100%
}

.sauna-preview-box.atoz .shadow {
    height: 50%;
    width: 100%;
    position: absolute;
    background-color: #000;
    opacity: .6;
    bottom: 0
}

.facs {
    display: none;
    padding-left: 5px
}

.half-span {
    width: 50%
}

.sauna-preview-box.atoz button {
    position: absolute;
    top: 10px;
    right: 280px;
    display: none
}

.sauna-preview-box a:hover {
    text-decoration: none;
    color: inherit
}

.sauna-preview-box a:hover .title h2 {
    text-decoration: underline
}

#u-sauna table {
    width: 100%
}

#u-sauna table textarea {
    min-height: 120px
}

#u-sauna table.services {
    margin-bottom: 10px
}

#u-sauna table.services td {
    display: inline-block
}

#u-sauna table.services td label {
    display: inline
}

#u-sauna table.services td input {
    display: inline;
    width: auto
}

.services-label td {
    padding-top: 10px
}

.sauna-wrap table.top td .rating,
h1 .wrap .rating {
    background-size: contain;
    background-repeat: no-repeat
}

.sauna-wrap table.top {
    width: 100%;
    border: 1px solid #444;
    margin-top: 20px;
    box-shadow: 0 0 4px #000;
    background-color: #292929;
    padding: 15px;
    margin-bottom: 20px
}

h1 .wrap {
    display: inline-flex;
    vertical-align: middle;
    line-height: 1.5
}

h1 .wrap .rating {
    height: 35px;
    width: 200px;
    background-position: center
}

.sauna-wrap table.top td {
    padding: 0;
    vertical-align: middle
}

.sauna-wrap table.top td.social {
    vertical-align: top
}

.sauna-wrap table.top td .rating {
    background-position: -5px 0;
    display: block;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 280px
}

.sauna-wrap table.top td .num-reviews {
    font-family: sans-serif, arial;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 0 #000
}

.sauna-wrap table.bottom td .tag a,
.tag-search-result .tag a {
    color: #000;
    padding: 3px;
    text-decoration: none !important;
    text-shadow: 1px 1px var(--white-color);
    cursor: pointer
}

.sauna-wrap table.top td.logo {
    vertical-align: middle;
    width: 60%
}

.sauna-wrap table.top td.logo div img {
    display: none;
    margin-left: auto;
    margin-right: auto;
    max-height: 160px
}

.sauna-wrap table.bottom td .tag,
.tag-search-result .tag {
    background: #efefef;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 50%);
    display: inline-block;
    margin: 2px
}

table.profile,
table.wrap {
    margin-top: 20px
}

.facilities-list,
.search-term {
    color: var(--white-color);
    font-weight: 700
}

.sauna-wrap .wrap {
    display: inline-block;
    text-align: center;
    width: 100%
}

.sauna-wrap .wrap .sub-rating {
    background-position: -5px 0;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 200px
}

#sauna-list.tag-search-result .search-result .thumb,
.profile .avatar>div,
.profile td a div {
    background-position: 50% center;
    background-size: cover;
    background-repeat: no-repeat
}

.sauna-wrap .wrap .sub-title {
    font-family: sans-serif, arial;
    text-align: center;
    text-shadow: 0 0 0 #000
}

.sauna-wrap .wrap.address {
    text-align: right;
    width: 100%
}

.sauna-wrap .cover {
    border: 1px solid #444;
    cursor: pointer;
    float: left;
    opacity: .8;
    position: relative;
    width: 99%;
    box-shadow: 0 0 4px #000;
    background-color: #292929
}

.sauna-wrap .cover img {
    display: block;
    width: 100%
}

.facilities-list {
    text-shadow: 0 0 0 #000
}

.full-span.reviews {
    padding-left: 5px
}

.background-wrap.maintenance #main {
    background-image: url(../images/site/background-02.jpg)
}

.profile .avatar {
    background-color: #45575e;
    box-shadow: 0 0 0 1px #50646c inset;
    overflow: hidden;
    padding: 0;
    width: auto
}

.profile td.label,
.profile.change td:first-child {
    background-color: #f5f5f5;
    color: #444
}

.profile td {
    color: #444;
    background-color: var(--white-color);
    border: 1px solid #dedede;
    padding: 10px;
    vertical-align: top;
    width: 50%
}

.profile .avatar>div {
    box-shadow: none;
    height: 150px;
    width: 150px
}

table.profile a {
    color: #444
}

.profile td p {
    padding: 0
}

.profile.change td.sub div input {
    width: auto
}

.review-stars table,
table.wrap {
    width: 100%
}

.profile.change td.sub div {
    color: #444
}

.review-message {
    color: red;
    display: none;
    line-height: 1em;
    font-family: var(--default-font-family);
    padding: 10px
}

.review-message.success {
    color: #349bbf
}

table.wrap td {
    vertical-align: top
}

#review-form .basic-table,
#review-select table {
    width: 100%;
    background-color: #f5f5f5
}

#review-select table td {
    vertical-align: top;
    padding: 0 15px 8px
}

#review-form .basic-table td {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    width: 100%;
    max-width: 100%;
    display: block
}

#review-form .basic-table td label {
    padding-top: 15px
}

.review-stars td td {
    vertical-align: top;
    padding: 0
}

.review-stars td.review-rating-stars {
    max-width: 18%
}

.review-stars td.review-rating-label {
    max-width: 35%
}

.review-message-send {
    display: none;
    padding-top: 10px
}

#review-form .basic-table td.review-rating-label {
    padding-left: 0;
    color: #444
}

#review-form .basic-table td.review-rating-hint {
    color: #444;
    display: none
}

#review-form .basic-table td.review-rating-stars {
    padding-right: 0;
    padding-left: 0
}

option.reviewed {
    color: gray;
    text-decoration: line-through
}

.profile td a div {
    border: 2px solid #666;
    border-radius: 5px;
    box-shadow: 0 0 1px #000;
    display: inline-block;
    height: 50px;
    margin-right: 5px;
    margin-top: 5px;
    position: relative;
    width: 50px
}

.review .summary .highlight {
    color: #fff;
    text-shadow: none;
    font-weight: 700
}

.review .summary {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.name-emp {
    display: block
}

.register-response,
.register-success {
    display: none
}

section.header .register-success p {
    text-align: center
}

section.header .register-success p.sub-info {
    font-weight: 700;
    position: relative;
    padding-top: 2rem;
    display: block;
    text-align: center;
    background: none
}

.register-success h2 {
    text-align: left;
    margin-bottom: .5rem
}

.register-success ul {
    text-align: left
}

.register-success li {
    margin-bottom: .4rem;
    list-style-type: disc;
    margin-left: 1rem
}

.pagination {
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: right
}

.pagination a,
.pagination span {
    background-color: #4c6570;
    border: 1px solid #212121;
    box-shadow: 0 0 0 1px #5c7682 inset;
    margin-left: 1px;
    margin-right: 1px;
    padding: 5px
}

.pagination span.current {
    background-color: #4e859d;
    color: var(--white-color)
}

.pagination span.disabled {
    opacity: .5
}

.pagination span.current {
    font-weight: 700
}

.pagination .summary {
    position: absolute
}

.profile .results.error {
    color: red
}

.profile .results.success {
    color: var(--white-color)
}

.review {
    padding: 10px;
    display: flex;
    width: 100%
}

.review.alternate {
    background: linear-gradient(to top left, #4a9bd64a, #0000)
}

.review .details a {
    color: var(--blue-color);
    text-decoration: underline;
    font-weight: 700
}

.review .details .name-emp a {
    color: #fff
}

.sauna-wrap {
    border-top: 1px solid #f5f5f5;
    padding-top: 10px
}

.saunas td.main-image img {
    width: 100%;
    max-width: 500px
}

.saunas table td.rating-ad,
.saunas table td.ratings {
    height: 100%;
    text-align: center;
    vertical-align: middle
}

.saunas table td table td {
    width: 50%
}

.saunas table td table td div {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
    height: 25px;
    min-width: 200px
}

.saunas table td.content-left div.tag,
.saunas table td.content-left div.thumbs,
.saunas table td.content-left div.thumbs div,
.saunas table td.main-image div,
.saunas table td.rating-ad div,
.saunas table td.ratings div {
    display: inline-block;
    position: relative
}

#main .saunas td h3 {
    background-image: url(../images/nav-arrow-right.png);
    margin: 10px 0 0;
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: left 50%;
    padding-left: 15px;
    text-transform: uppercase
}

#main .saunas td h3:first-of-type {
    margin-top: 0
}

.saunas table td div .rating-feature {
    position: absolute;
    inset: 0;
    height: 40px;
    margin: auto
}

.saunas table td div table td.push-left {
    padding-left: 100px
}

.saunas table td div table td.push-right {
    padding-right: 100px
}

.saunas table td.content-left,
.saunas table td.content-right {
    padding-top: 20px;
    border-top: 1px solid #f5f5f5
}

.saunas table td.content-right {
    padding-left: 10px
}

.saunas table td.content-right p:first-of-type {
    background-color: #f5f5f5;
    padding: 10px
}

.saunas table td.content-right .body p {
    background-color: unset
}

.saunas table td .tag {
    background-color: #222;
    color: var(--white-color);
    border-radius: 8px;
    padding-left: 4px;
    padding-right: 4px;
    margin-right: 4px;
    margin-bottom: 4px;
    padding-bottom: 3px
}

.saunas table td p a,
.saunas table td p a:visited {
    color: var(--blue-color)
}

.saunas table td.content-left div.feed {
    display: none
}

.saunas table td .image {
    padding: 2px
}

.saunas td .thumbs .image div {
    height: 140px;
    width: 140px;
    background-size: cover
}

#go-back div {
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 10px
}

.saunas td .thumbs {
    display: flex;
    flex-wrap: wrap;
    width: 100%
}

td.review-rating-stars img {
    height: 25px;
    width: 25px
}

#review-select table,
#selectid {
    width: 100%
}

#selectid {
    height: 1650px;
    border: 0;
    padding: 0;
    background-color: #f5f5f5
}

#sauna-select-wrap div,
table tr td #selectid option {
    background-color: #fefefe;
    padding-top: 4px;
    padding-bottom: 4px;
    cursor: pointer;
    border: 1px solid #dedede;
    margin-bottom: -1px
}

#sauna-select-wrap div {
    color: #222;
    padding-left: 5px
}

#sauna-select-wrap div.selected {
    background-color: var(--blue-color);
    color: var(--white-color)
}

#go-back {
    background-color: #777;
    color: var(--white-color);
    text-transform: capitalize;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 1px solid #333;
    cursor: pointer
}

#go-back div {
    background-image: url(../images/nav-arrow-left.png);
    display: inline;
    padding-left: 15px
}

.saunas table td.main-image {
    background-size: 0
}

.sub-header,
.standard-section {
    position: relative
}

.standard-section {
    padding-bottom: 1rem;
    margin-top: 1em
}

.sub-header h2 {
    margin-bottom: .5rem;
    text-align: left;
    margin-top: 10px
}

#main .sub-header h3 {
    margin-bottom: .5rem;
    margin-left: 0;
    font-family: arial, sans-serif;
    font-weight: 700
}

.sub-header li {
    margin-left: 1.5rem;
    margin-bottom: .5rem;
    line-height: 1.4;
    list-style-type: disc
}

section.header h2.default-font {
    font-family: var(--special-font-family);
    text-transform: uppercase
}

a.default-font {
    text-decoration: underline
}

section:last-of-type {
    padding-bottom: 20px
}

strong {
    font-weight: 700;
    color: var(--white-font-color)
}

section.header.sauna-page {
    border-bottom: 2px solid var(--background-color-alt);
    margin-top: 0;
    padding: 0
}

.sauna-header {
    position: relative;
    display: flex;
    flex-flow: column wrap;
    width: 100%
}

.sauna-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.sauna-header .title {
    display: flex;
    flex-flow: column wrap;
    flex: 1;
    text-align: left
}

section .sauna-header h2 {
    display: block;
    margin: 0;
    color: var(--blue-color);
    font-style: italic;
    text-align: center;
    font-family: var(--default-font-family);
    width: 100%;
    font-size: 18px
}

.sauna-header .rating {
    background-image: url(../../images/rating-4.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 20px;
    width: 250px;
    display: flex;
    background-position: center
}

.sauna-header .title div {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-review-count)
}

.sauna-ratings {
    flex-basis: 40%;
    display: flex;
    flex-flow: row wrap;
    gap: 4px;
    padding-top: 20px;
    max-width: 100%;
    margin-top: 1rem
}

.sauna-header .star-rating {
    display: flex;
    flex-flow: row nowrap;
    position: relative;
    height: 25px;
    color: var(--white-color);
    text-transform: uppercase;
    font-family: var(--special-font-family);
    flex: 1 1 calc(33.333% - 20px);
    align-content: start;
    text-align: left;
    max-width: 350px
}

.star-rating div {
    height: 20px;
    position: relative;
    text-align: left;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    line-height: 1;
    align-content: center;
    border-radius: 4px;
    flex: 1 1 calc(49% - 20px);
    min-width: 80px
}

.star-rating div:first-of-type {
    flex: 1
}

.sauna-gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 5px;
    position: relative;
    width: 100%;
    padding: 1rem
}

.sauna-gallery .image {
    flex: 1 0 auto;
    position: relative;
    height: 140px;
    width: auto;
    min-width: 120px
}

.sauna-gallery .image img {
    width: 100%;
    height: 140px;
    border-radius: 6px;
    box-shadow: 0 0 5px rgb(0 0 0 / 50%);
    border: 1px solid #8599a62e;
    object-fit: cover
}

.sauna-gallery .image a {
    width: 100%;
    height: auto
}

.sauna-gallery .more-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 60%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    pointer-events: none;
    font-family: var(--special-font-family)
}

section.title {
    font-family: var(--special-font-family);
    text-transform: uppercase;
    padding-bottom: 1rem;
    font-size: 24px
}

.sauna-description {
    line-height: 1.4;
    padding-bottom: 2rem;
    font-family: var(--default-p-font)
}

.sauna-facilities {
    padding-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--default-p-font);
    font-optical-sizing: auto
}

.contact-information p {
    padding: 0;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.contact-information a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.reviews,
.review-container {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.profile-container .reviews {
    margin-top: 2rem
}

.sauna-index {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.sauna-icons {
    display: flex;
    flex-flow: row wrap;
    row-gap: 8px;
    padding-bottom: 2rem
}

.sauna-icons .fac-icon {
    margin-right: 10px
}

.sauna-index section.icon-key {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-icon-key)
}

.sauna-index .icon-key #icon-show {
    margin: 0;
    color: var(--blue-color);
    font-family: var(--default-p-font)
}

.sauna-index section.icon-key div {
    background: unset;
    padding: 0
}

.information {
    display: flex;
    flex-flow: column wrap;
    gap: 10px
}

.information>section {
    flex: 1
}

.expandable {
    width: 100%
}

.left {
    text-align: left
}

.expandable-content {
    max-height: 4.25em;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease
}

.expandable-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: darken
}

.expandable.expanded .expandable-content {
    max-height: none
}

.expandable.expanded .expandable-content::after {
    display: none
}

.expand-toggle {
    background: none;
    border: none;
    color: var(--blue-color);
    cursor: pointer;
    padding: .5em 0;
    font-family: var(--default-p-font);
    font-size: var(--font-size-icon-key)
}

p.no-icon {
    padding: 0;
    padding-left: 25px
}

.contact-information p i {
    padding-right: 10px;
    padding-top: 4px
}

a.site-link {
    color: var(--blue-color);
    font-weight: 700
}

.error li:first-of-type {
    font-weight: 700
}

ol.error {
    background: url(../images/mosaic-bottom-right.png) no-repeat bottom right/20px, url(../images/mosaic-top-left.png) no-repeat top left/20px;
    padding: 20px;
    margin-top: 4rem;
    font-family: var(--default-p-font);
    text-align: left
}

.error li {
    margin-bottom: .2rem
}

.no-content .section.header {
    margin-top: 3rem
}

section.header .hint-para p:first-of-type {
    text-align: left;
    font-style: italic;
    padding: 0
}

.teaser-box {
    background-color: #16191ce3;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1em;
    border: 1px solid #8599a62e;
    box-shadow: 0 0 5px rgb(0 0 0 / 50%)
}

.teaser-box div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px
}

section.header .teaser-box a {
    background-color: var(--blue-color);
    padding: 10px 18px;
    border-radius: 1000px;
    font-weight: 700;
    text-align: center
}

#main section.header .register-holder p.attention-grabber:first-of-type {
    color: var(--blue-color);
    background: none;
    font-family: var(--special-font-family);
    font-style: italic;
    text-transform: capitalize;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 35px #a3a3a394, 0 0 5px #00000073
}

.hint {
    font-size: var(--font-size-form-hint)
}

#sauna-filter-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px
}

#search-box {
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 5px
}

#search-box label {
    font-family: var(--special-font-family);
    text-transform: uppercase
}

#profiles-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1rem
}

.profile-card {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: .5em;
    background: linear-gradient(to top left, #43a3d21f, #0000);
    border-radius: 2px;
    box-shadow: 0 0 5px rgb(0 0 0 / 5%);
    border: 1px solid var(--color-form-border);
    min-height: 95px
}

.profile-card img {
    width: 50px;
    border-radius: 2px;
    border: 1px solid var(--color-form-border);
    box-shadow: 0 0 5px rgb(0 0 0 / 8%);
    aspect-ratio: 1;
    object-fit: cover;
    height: 50px;
    min-width: 50px;
    background-color: var(--avatar-bg-color)
}

.profile-card .info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    min-width: 0
}

.profile-card h3,
.profile-card h3 a {
    margin: 0;
    padding: 0;
    font-weight: 700;
    padding-bottom: 2px
}

.profile-card .avatar {
    display: flex;
    position: relative;
    border-radius: 2px
}

.profile-card p {
    padding: 0;
    margin: 0
}

.profile-card p.about {
    overflow: hidden;
    width: 100%;
    text-wrap: nowrap;
    text-wrap-mode: nowrap;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    padding-top: 2px
}

.profile-card p.hint {
    overflow: hidden;
    width: 100%;
    text-wrap: nowrap;
    text-wrap-mode: nowrap;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-style: italic;
    color: var(--color-special-button);
    font-size: var(--font-size-form-hint);
    flex: 1;
    align-content: end
}

.profile-card .info div p {
    font-size: var(--font-size-form-hint)
}

.profile-card .info div {
    display: flex;
    flex-direction: row;
    gap: 10px
}

.profile-card .distance {
    font-size: var(--font-size-form-hint);
    color: var(--blue-color)
}

.profile-card .options {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
    flex: 1;
    display: none
}

.profile-card .options .msg-btn.btn {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    margin: 0;
    width: 100%;
    text-align: center;
    place-content: center center;
    box-shadow: 0 0 5px #000
}

.profile-card .options .splash.msg-btn.btn div:last-of-type {
    display: flex;
    width: 1.25rem
}

.profile-card .options .wet.splash.msg-btn.btn {
    opacity: .5;
    cursor: default;
    background: #545d62;
    border: 2px solid #545d62
}

#pagination {
    background: #6d88950f;
    padding: .5em;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    display: flex;
    flex-direction: row;
    gap: 2em;
    justify-content: space-around;
    font-size: var(--font-size-search-pagination)
}

#pagination button {
    background: none;
    color: var(--white-font-color);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #353f44b5;
    text-decoration-thickness: 2px;
    cursor: pointer
}

#pagination button:disabled {
    opacity: .5;
    cursor: default
}

#search-box select {
    width: 100%
}

.profile-container .reviews p.center {
    font-size: var(--font-size-form-hint)
}

.badge {
    position: absolute;
    display: inline-block;
    cursor: default;
    z-index: 1;
    width: 50px;
    background-color: #c8a45094;
    top: 55px
}

.badge .tooltip {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 4px 8px;
    border-radius: 4px;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10;
    font-size: 12px;
    display: none
}

.profile-card .badge-title {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-style: italic;
    background-color: #c8a45082;
    font-weight: 700;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    display: none
}

.badge .fa-solid {
    top: -1px;
    position: relative;
    left: 50%;
    color: #fff;
    text-shadow: 0 0 4px #0006;
    transform: translate(-50%, 0)
}

.form-row {
    display: flex;
    flex-direction: column
}

.modern-login-form .form-row {
    margin-bottom: 10px;
    gap: 5px
}

.form-row.review-header * {
    padding: 0;
    margin: 0
}

.modern-login-form .form-row label {
    margin: 0;
    font-size: var(--font-size-form-label)
}

.modern-login-form label.checkbox-label {
    font-size: var(--font-size-sub-text-small)
}

.form-row.interact {
    gap: 5px;
    justify-content: center
}

#edit-profile-form .form-row {
    margin-bottom: 1.5rem
}

.form-row.interact a {
    margin: 0;
    width: auto;
    min-width: 150px
}

#send-splash-btn.wet {
    opacity: .5;
    background: #545d62;
    cursor: default;
    text-decoration: none;
    border: 2px solid #545d62
}

#send-splash-btn div:last-of-type {
    height: 30px;
    width: 30px
}

.form-row label,
.reviews .review-sort label {
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: left
}

.review-item {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 10px;
    text-align: left;
    border: 1px solid #8599a62e;
    background: linear-gradient(to top left, #43a3d21f, #0000)
}

.review-item p a {
    font-weight: 700;
    text-decoration: underline
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="password"],
.form-row textarea,
.form-row input[type="date"],
#create-poll-form input {
    padding: .5em .5em;
    border-radius: 6px;
    border: 1px solid #a8a8a81f;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #202428ab;
    color: var(--light-gray-color);
    box-shadow: 1px 1px 5px #fff0 inset, -1px -1px 5px rgb(0 0 0 / 65%) inset;
    font-size: var(--font-size-form-input)
}

.form-row input:focus,
.form-row textarea:focus,
#locker-room-post-form textarea:focus,
#create-poll-form input:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgb(52 152 219 / 40%);
    outline: none
}

button:focus-visible,
.site-button:focus-visible,
.btn:focus-visible {
    outline: 1px solid #4188c7
}

.remember-row {
    flex-direction: row;
    align-items: center;
    gap: .5em;
    margin-top: .5em
}

.remember-row .small {
    color: var(--light-gray-color);
    margin: 0
}

.error-box {
    color: #e74c3c;
    display: none;
    text-align: center;
    font-size: var(--font-size-form-hint)
}

.site-button {
    width: 100%;
    padding: 10px 12px;
    border-radius: 1000px;
    border: 2px solid var(--blue-color);
    background: var(--blue-color);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
    min-width: 100px;
    text-align: center;
    text-transform: capitalize;
    font-size: 13px;
    font-style: normal
}

#submit-message p.success {
    text-align: left;
    background: none;
    padding: 0
}

.help {
    text-align: center;
    margin-top: 1em
}

.sauna-blurb {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px
}

.sauna-blurb i.fas {
    padding-top: 4px
}

.sauna-blurb i.fas::before {
    padding-right: 0
}

.sauna-blurb span {
    width: 100%;
    display: flex;
    gap: .5em
}

.help a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s
}

.modern-login-form input.invalid {
    border-color: red
}

.modern-login-form input.valid {
    border-color: var(--blue-color)
}

.modern-login-form label .validation-icon {
    margin-left: 8px
}

.modern-login-form label .validation-icon.valid {
    color: var(--blue-color)
}

.modern-login-form label .validation-icon.invalid {
    color: red
}

.register-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.register-list div {
    font-family: var(--default-p-font);
    text-align: left;
    display: flex;
    align-items: start;
    gap: 10px;
    justify-content: start;
    flex-direction: row
}

.register-list p {
    padding: 0
}

.register-list .fa-solid {
    flex: 0 0 20px;
    top: 5px;
    position: relative
}

.modern-login-form a {
    text-decoration: underline
}

.form-row input[type="checkbox"] {
    flex-shrink: 0
}

.form-row.row {
    gap: .2rem;
    padding-bottom: 1rem
}

#server-message-holder {
    display: block;
    text-align: center
}

p#server-message {
    display: inline-block;
    text-align: center;
    font-family: var(--special-font-family);
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 12px;
    color: var(--white-font-color);
    text-transform: uppercase
}

.contact-form.message-sent {
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center
}

.modern-login-form select,
.reviews .review-sort select {
    height: fit-content;
    background-color: #202428ab;
    color: var(--light-gray-color);
    border-radius: 2px;
    border: 1px solid var(--color-form-border);
    padding: .75em 1em
}

.modern-login-form option,
.reviews .review-sort option {
    height: fit-content
}

.modern-login-form textarea {
    width: 100%;
    min-height: 3.5em;
    color: var(--light-gray-color);
    border: 1px solid var(--color-form-border);
    overflow: hidden;
    resize: none
}

#char-count {
    font-size: var(--font-size-form-hint)
}

.review-stars .stars {
    display: flex;
    flex-flow: row nowrap;
    gap: .4rem;
    font-size: 22px
}

.star-icon i {
    color: #686767;
    cursor: pointer
}

.star-icon.hover i {
    color: #f5db95
}

.star-icon.selected i {
    color: #f5b50a
}

#review-message {
    margin-top: 20px;
    padding: 20px;
    background: #46718a;
    color: #f0f0f0;
    border-radius: 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    display: none
}

#review-message p {
    margin: 10px 0;
    overflow-wrap: anywhere
}

section.header #review-message p:first-of-type,
section.header #review-message p:last-of-type {
    font-family: var(--special-font-family);
    padding-left: 0;
    padding-right: 0
}

#review-message strong {
    color: var(--white-color)
}

.review-thankyou {
    animation: fade-in 0.5s ease-in-out
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: var(--font-size-checkbox-interests)
}

.sort-filter {
    margin-top: 20px
}

.sort-filter.atoz {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #a8a8a812;
    flex-wrap: wrap;
    gap: 10px
}

.sort-filter .sauna-sort label {
    margin: 0;
    color: var(--light-gray-color)
}

.sort-filter.atoz .icon-key {
    padding-top: 1em;
    margin: 0;
    font-family: var(--default-p-font);
    display: none;
    flex-wrap: wrap;
    gap: 10px
}

.sort-filter.atoz .icon-key.active {
    display: flex
}

.sort-filter.atoz .icon-key.active * {
    font-size: var(--font-size-icon-key)
}

.sort-filter.atoz .options {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.sort-filter.atoz #icon-show {
    color: var(--blue-color);
    display: initial;
    font-size: var(--font-size-icon-key)
}

.sort-filter .form-row.sauna-sort {
    flex-direction: column;
    justify-content: end;
    gap: 5px;
    align-items: end;
    margin: 0;
    padding-bottom: 0;
    border: none;
    flex: 1
}

.sort-filter.atoz .icon-key .icon {
    color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center left;
    height: 16px;
    width: 16px
}

.sort-filter.atoz .icon-key span {
    display: flex;
    gap: 4px;
    align-items: center
}

.form-row textarea {
    width: 100%;
    resize: vertical;
    padding: .75em 1em;
    box-sizing: border-box;
    border-radius: 6px;
    font-size: var(--font-size-chat-input)
}

textarea.auto-expand {
    overflow: hidden
}

label.extra-margin-bottom {
    margin-bottom: 8px
}

.custom-label input.custom-checkbox {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 2;
    appearance: none;
    background: none;
    border: none;
    padding: 0
}

.custom-label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    cursor: pointer;
    user-select: none
}

.custom-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #688499;
    border-radius: 4px;
    background: #464646;
    z-index: 1
}

.custom-label .checkmark::after {
    content: "\2714";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--bright-blue-color);
    display: none
}

.custom-label input.custom-checkbox:checked~.checkmark::after {
    display: block
}

.custom-label .checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 1;
    background-color: unset
}

.form-background {
    box-shadow: 0 0 5px rgb(0 0 0 / 50%);
    background-color: var(--form-background);
    border-radius: 2px;
    border: 1px solid #8599a62e;
    position: relative;
    padding: 20px 15px;
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    gap: 10px
}

input:-moz-autofill {
    box-shadow: 0 0 0 1000px var(--background-color-alt) inset !important;
    -moz-text-fill-color: var(--text-color) !important
}

.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(2px);
    z-index: 99999;
    justify-content: center;
    align-items: center
}

#image-loading,
#image-loading .loading-overlay {
    display: flex
}

.spinner {
    display: flex;
    gap: .5em
}

.spinner div {
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate
}

.spinner div:nth-child(2) {
    animation-delay: 0.2s
}

.spinner div:nth-child(3) {
    animation-delay: 0.4s
}

@keyframes bounce {
    from {
        transform: translateY(0);
        opacity: .6
    }
    to {
        transform: translateY(-15px);
        opacity: 1
    }
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 79%);
    z-index: 1000;
    backdrop-filter: blur(8px);
    align-content: center
}

.notification {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    max-width: 400px;
    padding: 12px 18px;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 10px rgb(0 0 0 / 20%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 92147483647;
    text-align: center;
    font-size: 12px;
}

.notification.show {
    bottom: 30px;
    opacity: 1
}

.notification.success {
    background-color: #28a745
}

.notification.error {
    background-color: #dc3545
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid var(--color-form-border);
    padding-bottom: 1rem;
    flex-wrap: wrap;
    position: relative
}

.profile-header div {
    text-align: left;
    width: 100%
}

.profile-header.view div {
    gap: 5px;
    display: flex;
    flex-direction: column;
    width: 100%
}

section.header .profile-header div p {
    padding: 0
}

.main-gallery .profile-image {
    cursor: pointer
}

.profile-header.view .main-gallery.view {
    flex-basis: 100%;
    flex-flow: row wrap;
    gap: 5px;
    display: flex;
    margin-top: 1em;
    justify-content: flex-start
}

ul.profile-details {
    list-style: none;
    padding-top: .5em;
    padding-bottom: .5em;
    text-align: left;
    margin-top: 0;
    border-bottom: 1px solid #7575751c;
    display: flex;
    flex-wrap: wrap
}

ul.profile-details li {
    padding: .5rem 0;
    flex: 0 0 100%
}

.edit-btn.btn {
    background: var(--color-special-button);
    border: 2px solid var(--color-special-button)
}

section.header.profile div.chevrons .review-item p {
    padding: 5px
}

.review-item small {
    padding-top: 1em;
    display: block;
    font-size: var(--font-size-form-hint)
}

.site-button.btn.small {
    max-width: 60%
}

.interests .tag-pill {
    background-color: #388ab31f;
    color: #fff;
    display: inline-block;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: var(--font-size-profile-tags)
}

ul.profile-details li.interests {
    display: flex;
    flex-flow: row wrap;
    gap: .5rem;
    padding-bottom: 1.5rem;
    flex: 0 0 100%
}

.profile-details li strong {
    color: var(--light-gray-color)
}

.profile-container {
    border-radius: 2px;
    margin: auto;
    padding: 32px 15px 20px 15px
}

.profile-header img {
    height: 80px;
    width: 80px;
    border-radius: 2px;
    object-fit: cover;
    border: 3px solid var(--color-form-border);
    align-self: start
}

.profile-header img.default {
    object-fit: contain
}

.profile-avatar img {
    background-color: var(--avatar-bg-color)
}

#edit-profile-form ul {
    list-style: none;
    padding: 0;
    text-align: left
}

.lockerroom-list,
.notification-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 1rem
}

.lockerroom-list li,
.notification-list li {
    flex: 1 100%
}

#edit-profile-form ul li {
    padding: 8px 0
}

#edit-profile-form .form-row label.reviews .review-sort label {
    margin-bottom: 1rem
}

.form-row.review-sort {
    place-content: center end;
    align-items: center;
    flex-direction: revert;
    gap: 10px;
    margin-top: 1em;
    margin-bottom: 1em;
    display: flex
}

.reviews .review-sort label {
    margin: 0;
    flex: 0 0 50px
}

.profile section {
    margin-bottom: 2rem
}

.header.profile section h3 {
    border-bottom: 1px solid #8599a62e;
    padding-bottom: 10px
}

.home-reviews .form-row {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
    gap: 5px
}

.home-reviews .form-row:first-of-type {
    margin-bottom: 2rem
}

.home-reviews .form-row h2 {
    margin-bottom: .5em
}

.standard-section.home-reviews {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: clip
}

.action-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem
}

.review-item .stars {
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: -5px
}

.review-item .review-header .review-stars .stars {
    height: auto
}

.italic {
    font-style: italic
}

section.header.profile div.chevrons .profile-container .reviews .best,
section.header.profile div.chevrons .profile-container .reviews .worst {
    margin-top: 1em
}

section.header.profile div.chevrons .profile-container .reviews .best {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px
}

section.header.profile div.chevrons .profile-container .reviews .worst {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    margin-top: 0
}

.picker-wrapper {
    position: relative;
    max-height: 120px;
    overflow: hidden;
    background-color: #202428ab;
    border-radius: 6px;
    border: 1px solid #a8a8a812
}

.picker {
    overflow-y: scroll;
    max-height: 120px;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    padding: 60px 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.picker-item {
    height: 40px;
    line-height: 40px;
    text-align: left;
    padding-left: 10px;
    scroll-snap-align: center;
    font-weight: 400;
    color: #555;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.25s
}

.picker-highlight {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 40px;
    border-top: 1px solid #64a3e62e;
    border-bottom: 1px solid #64a3e62e;
    pointer-events: none;
    background-color: #53a4df1c;
    margin-top: -20px
}

.picker::-webkit-scrollbar {
    display: none
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #575656;
    transition: 0.3s;
    border-radius: 24px
}

.toggle-switch .slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: #fff;
    transition: 0.3s;
    border-radius: 50%
}

.toggle-switch input:checked+.slider {
    background-color: var(--bright-blue-color)
}

.toggle-switch input:checked+.slider::before {
    transform: translateX(26px)
}

.header.profile section h2 {
    margin-top: 1rem;
    font-family: var(--default-p-font);
    margin-bottom: 0
}

.header.profile .modern-login-form,
#confirm-report .modern-login-form,
#confirm-block .modern-login-form {
    margin: 0;
    width: 100%;
    background-color: #fff0;
    padding: 0;
    box-shadow: none
}

#confirm-report .popup-content {
    max-width: 100%
}

.margin-bottom {
    margin-bottom: 10px
}

.tag-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 5px;
    margin-top: 1rem
}

.tag-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer
}

.tag-pill input[type="checkbox"] {
    display: none
}

.tag-pill span {
    padding: 5px 15px;
    border-radius: 20px;
    background-color: #292d31;
    transition: all 0.2s;
     font-weight: 700;
    border: 1px solid var(--color-form-border)
}

.tag-pill input[type="checkbox"]:checked+span {
    background-color: var(--bright-blue-color);
    color: #fff;
    font-weight: 700
}

section.header.profile div.chevrons .profile-container p {
    padding: 0;
    text-transform: none
}

#inbox-container.form-background,
#splash-container.form-background,
.inbox-container.form-background {
    box-shadow: none
}

.form-row.delete {
    border-bottom: none
}

.form-row.delete .msg-btn.btn,
.site-button.btn.alt {
    background: #0b0b0b;
    border: 2px solid #0b0b0b
}

.form-actions .site-button.btn {
    margin-top: 0
}

#change-email-form .error-box {
    display: block
}

section.header.profile .profile-container .form-row p.hint {
    font-style: italic;
    color: var(--dark-gray-color);
    text-transform: none;
    padding-bottom: 1rem;
    width: 100%;
    text-align: left;
    padding-left: 0;
    padding-right: 0
}

section.header .form-row.delete p.hint a {
    font-weight: 700
}

#edit-profile-form .site-button.edit-btn.btn {
    margin-left: auto;
    margin-right: auto
}

.popup-content {
    background: var(--background-color-alt);
    padding: 20px;
    padding-top: 20px;
    padding-top: 20px;
    border-radius: 2px;
    max-width: 95%;
    width: 100%;
    box-shadow: 0 5px 15px rgb(0 0 0 / 80%);
    margin: auto;
    position: relative;
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: fit-content;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.popup-content h2 {
    margin-top: 0;
    font-family: var(--default-p-font);
    margin-bottom: 1rem
}

.popup-content .modern-login-form {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.popup-content form {
    display: flex;
    flex-direction: column
}

.popup-content label {
    margin: 10px 0 8px
}

.popup-content input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px
}

.form-actions {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px
}

.popup-content .form-actions button {
    cursor: pointer
}

#nameerror {
    margin-top: 1rem
}

.zero-margin,
.form-row .zero-margin {
    margin: 0
}

#edit-images-form .profile-header .form-row {
    margin-bottom: 1rem
}

section.header.profile .profile-container .review-item .review-header p {
    text-align: left;
    font-size: var(--font-size-sub-text-small)
}

section.header.profile .profile-container .review-item .review-header .review-stars {
    display: flex;
    flex-direction: column;
    border: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: start
}

section.header.profile .profile-container .review-item .review-header .review-stars label {
    font-weight: 700;
    color: var(--white-font-color);
    margin: 0
}

.review-item .form-row textarea {
    margin-bottom: 1rem
}

.review-content {
    max-height: 0;
    overflow: hidden;
    position: relative;
    transition: all 1s
}

.review-item.expanded .review-content {
    max-height: 2000px
}

.review-toggle {
    margin-top: 5px;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: var(--font-size-sub-text-small)
}

.review-thankyou p:first-of-type {
    font-weight: 700
}

.review-thankyou p:nth-child(4) {
    border-bottom: 1px dashed #a0a0a05c;
    margin-bottom: 1em;
    padding-bottom: 1em
}

.review-thankyou p:last-of-type {
    margin-top: 2em
}

#update-sauna .hint,
#register-form .hint {
    display: block;
    margin-bottom: .5em;
    margin-top: .2em;
    font-style: italic;
    color: var(--dark-gray-color);
    font-size: var(--font-size-form-hint)
}

.popup-overlay p {
    color: var(--light-gray-color)
}

#confirm-password-change .form-row {
    border: none;
    padding-bottom: 0
}

#change-password-error {
    min-height: 1rem;
    display: block
}

#user-gallery {
    position: fixed;
    inset: 0;
    background: var(--background-color-alt);
    backdrop-filter: blur(5px);
    display: none;
    place-content: center center;
    align-items: center;
    z-index: 9999
}

#user-gallery .profile-gallery-item {
    width: unset;
    height: unset;
    position: relative;
    cursor: pointer;
    border: 2px solid #fff0;
    border-radius: 4px;
    overflow: hidden;
    flex: 0 0 calc(50% - 0.5em)
}

#user-gallery .profile-gallery-item.selected {
    border-color: var(--bright-blue-color);
    box-shadow: 0 0 5px 1px #5bc7fd52
}

#user-gallery .profile-gallery-item .profile-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center
}

#send-images-button {
    min-width: 100%
}

#send-images-button.show {
    display: block
}

#load-sauna {
    opacity: .25;
    cursor: default
}

#load-sauna.active {
    opacity: 1;
    cursor: pointer
}

#user-gallery .modern-login-form {
    width: 100%;
    background-color: #16191ce3;
    padding: 20px;
    position: relative;
    max-height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    height: 100%
}

#close-gallery {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    font-weight: 700;
    border-radius: 50%;
    padding: .3em .6em;
    top: 15px;
    background-color: #8a8a8a5c;
    min-width: unset;
    border: none
}

#user-gallery .title {
    border-bottom: 1px solid var(--color-form-border);
    margin-bottom: .5em;
    padding-bottom: .5em;
    font-size: var(--font-size-default-h1);
    flex: 0 0 auto;
    display: flex;
    flex-direction: column
}

.scroll-container {
    max-height: 300px;
    overflow-y: auto
}

#user-gallery .scroll-container {
    background-color: #1f2228;
    border-radius: 4px;
    padding: 5px;
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    max-height: initial
}

#user-gallery #chat-images-form {
    display: flex;
    justify-content: space-evenly;
    flex-flow: row wrap;
    gap: 10px;
    width: 100%;
    margin-top: .5rem;
    border-top: 1px solid var(--color-form-border);
    padding-top: .5rem
}

.upload-icon-wrap {
    display: flex;
    text-align: center;
    align-content: center;
    align-items: center;
    height: fit-content;
    background-color: #000;
    width: 100%;
    margin: 0;
    justify-content: center
}

#user-gallery #upload-image {
    display: inline-block;
    color: #fff;
    background-color: #fff0;
    cursor: pointer;
    margin: 0;
    padding: 0
}

.upload-icon-wrap p {
    padding: 0;
    font-family: var(--default-font-family);
    padding-left: 1rem;
    color: var(--white-font-color);
    padding-right: 1rem;
    display: inline-block
}

#send-image {
    background-color: #303030;
    opacity: .5;
    height: 100%;
    border: 2px solid #303030
}

.show #send-image {
    background-color: var(--blue-color);
    opacity: 1;
    border: 2px solid var(--blue-color)
}

#edit-images-form .profile-header .form-row,
#user-gallery .form-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0
}

#user-gallery .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 0 auto
}

.profile-gallery-item {
    width: 50%;
    max-height: 150px;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 1px solid var(--color-form-border);
    border-radius: 2px;
    overflow: clip;
    aspect-ratio: 1
}

.main-gallery.view .profile-gallery-item {
    flex: 0 0 calc(49%);
    height: 120px
}

#edit-images-form .profile-gallery-item {
    flex: 1 0 calc(45%)
}

.profile-image {
    width: 100%;
    max-height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex: 1 auto;
    background-repeat: no-repeat;
    box-shadow: 0 0 5px rgb(0 0 0 / 50%);
    border: 1px solid #8599a62e;
    background-image: linear-gradient(to top left, #43a3d21f, #0000)
}

.public-toggle {
    width: 25%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    user-select: none;
    position: absolute;
    z-index: 2
}

.profile-gallery-item .fa.fa-eye-slash,
.profile-gallery-item .fa.fa-eye,
.profile-gallery-item .fa.fa-trash {
    text-shadow: 0 0 8px #000;
    color: #fff
}

.public-toggle.public {
    color: #fff
}

.delete-toggle {
    width: 25%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    user-select: none;
    position: absolute;
    bottom: 0;
    z-index: 2
}

.main-toggle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    user-select: none;
    position: absolute;
    text-transform: capitalize;
    font-weight: 700;
    text-shadow: 0 0 8px #000;
    color: #fff;
    opacity: 0;
    visibility: visible;
    z-index: 1
}

.main-toggle.main-image {
    opacity: 1;
    visibility: visible
}

.profile-image.empty {
    display: flex;
    cursor: pointer
}

.profile-container .empty p {
    font-style: italic;
    color: var(--dark-gray-color);
    font-family: var(--default-font-family);
    margin: auto
}

.profile-header .pending {
    position: absolute;
    background-color: #c8a450;
    width: 30px;
    height: 100%;
    left: 0;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    text-align: center;
    font-weight: 700;
    font-family: var(--special-font-family);
    cursor: default;
    display: none;
    align-content: center;
    font-size: 12px;
    justify-content: center;
    z-index: 0
}

.profile-header .pending.toggle {
    display: flex
}

#username-status {
    text-align: center
}

.profile-image.empty .slot-text::after {
    content: " click to add image"
}

.inbox {
    gap: 5px;
    display: flex;
    flex-direction: column
}

.inbox.empty {
    border: none
}

.inbox-item {
    display: flex;
    align-items: flex-start;
    border: 1px solid var(--color-form-border);
    padding: 4px 5px;
    gap: 5px
}

.inbox .avatar {
    border-radius: 50%;
    background-color: unset;
    box-shadow: unset;
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid var(--color-form-border);
    background-color: var(--avatar-bg-color)
}

.inbox-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 1;
    align-items: center;
    min-width: 0
}

.inbox-text {
    flex: 1 auto;
    font-size: var(--font-size-sub-text-small);
    min-width: 0;
    display: flex;
    flex-direction: column
}

.inbox-time {
    color: var(--light-gray-color);
    max-width: 35px;
    order: 1;
    font-size: var(--font-size-chat-time)
}

.inbox-end {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
    width: max-content;
    justify-content: end
}

.inbox-unread {
    text-align: right;
    margin-top: 0
}

.inbox .badge {
    background-color: var(--blue-color);
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
    text-align: center;
    align-content: center;
    border-radius: 50%;
    top: 0;
    font-size: 12px
}

.from-me,
.from-them {
    color: #c5c5c5;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: var(--font-size-sub-text-small);
    white-space: nowrap;
    padding: 0
}

.inbox-text strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    display: inline-block
}

.chat-input {
    width: 100%;
    margin-top: 1.5rem
}

.chat-window {
    background-color: #0000001c;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    border: 1px solid var(--color-form-border);
    display: flex;
    flex-direction: column;
    max-height: 50vh;
    overflow: auto
}

.chat-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 5px;
    margin-top: 1.2em
}

section.header .chat-header h1 {
    text-align: left;
    font-size: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: auto;
    padding: 0 0 5px 0;
    margin: 0
}

.chat-header a {
    flex: 0 0 37px;
    height: 37px
}

.chat-header div {
    flex: 1;
    min-width: 0
}

.chat-header .avatar {
    object-fit: cover;
    border-radius: 50%;
    aspect-ratio: 1;
    height: 100%
}

.inbox-empty {
    text-align: center;
    padding: 2em;
    font-style: italic
}

section.header.profile .chat-message p {
    max-width: 60%;
    width: fit-content;
    overflow-wrap: break-word;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-left: 1rem;
    padding-right: 1rem;
    display: inline-block;
    font-style: normal;
    font-size: 13px
}

section.header.profile .chat-message.me p {
    background-color: var(--blue-color);
    border-bottom-left-radius: 20px
}

section.header.profile .chat-message.them p {
    background: #314655;
    border-bottom-right-radius: 20px
}

.chat-message {
    display: flex;
    align-items: center;
    margin: 6px 0;
    gap: 10px;
    font-style: normal
}

.chat-message.me {
    justify-content: flex-end;
    flex-direction: column;
    align-items: end
}

.chat-message.them {
    justify-content: flex-start;
    flex-direction: column;
    align-items: start
}

.chat-message.me.image {
    flex-direction: row;
    justify-content: end;
    align-items: center
}

.chat-message.them.image {
    flex-direction: row;
    justify-content: start;
    align-items: center
}

.unsend-btn {
    color: var(--white-color);
    border-radius: 6px;
    padding: 5px 10px;
    background-color: var(--color-form-border);
    cursor: pointer;
    font-size: var(--font-size-review-count)
}

.chat-date-divider {
    text-align: center;
    margin: 15px 0;
    color: #888;
    position: relative
}

.chat-date-divider span {
    background: #222;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    font-size: var(--font-size-form-hint)
}

.chat-date-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #fafafa0a;
    z-index: 0
}

.chat-message.me .time {
    margin-right: 8px;
    color: #666;
    order: -1;
    font-size: var(--font-size-chat-time)
}

.chat-message.them .time {
    margin-left: 8px;
    color: #666;
    order: -1;
    font-size: var(--font-size-chat-time)
}

.chat-input.modern-login-form.form-row {
    margin-top: .5em;
    border: none;
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: end
}

.chat-input.modern-login-form.form-row:last-of-type {
    flex-direction: column
}

#user-options {
    position: absolute;
    right: .5rem;
    top: .5rem;
    display: flex;
    flex-direction: row;
    gap: 5px
}

#user-options div {
    cursor: pointer;
    z-index: 1
}

#user-options i {
    padding: .2em .5em
}

#feedback-button {
    border-radius: 6px;
    padding: 2px 6px;
    margin-top: 2px;
    margin-right: 2px;
    color: #fff;
    font-size: 12px
}

#send-chat-btn {
    width: auto;
    align-self: unset;
    flex: 1
}

.user-options {
    display: flex;
    flex: 0 0 90%;
    justify-content: space-between;
    margin-top: .5rem
}

.user-options button {
    max-width: fit-content
}

#user-options.chat {
    position: relative;
    justify-content: space-between;
    top: unset;
    right: unset
}

#user-options.chat span {
    display: flex
}

#emoji-btn {
    width: fit-content;
    background-color: var(--background-color);
    border-radius: 6px;
    cursor: pointer;
    padding: 10px 18px;
    color: var(--white-color);
    border: 1px solid #333;
    max-height: 48px;
    display: none
}

#emoji-picker {
    width: 100%;
    --num-columns: 15
}

#inbox-container .options {
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
    flex-direction: row
}

#upload-image {
    margin-top: .5rem;
    padding: .3em;
    color: #fff;
    background-color: #fff0;
    cursor: pointer
}

.chat-message.image img {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    max-width: 60%;
    width: 60%
}

.chat-message.me.chat-image img,
.chat-message.image.me img {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 0
}

.chat-message.them.image img,
.chat-message.image.them img {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0
}

#image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none
}

#image-lightbox .lightbox-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    backdrop-filter: blur(5px);
    z-index: 10000
}

.lightbox-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    transition: transform 0.3s ease;
    display: block
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10002;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer
}

.lightbox-nav.prev {
    left: 10px
}

.lightbox-nav.next {
    right: 10px
}

#splash-container .inbox-item {
    align-items: center;
    font-style: italic
}

.splash-icon {
    margin-right: 8px;
    margin-left: 8px;
    flex: 0 0 auto
}

#splash-container .fa-solid.fa-droplet {
    color: var(--bright-blue-color);
    background-color: #74eaf61c;
    border-radius: 50%;
    box-shadow: 0 0 20px #40b7ffa3
}

#splash-container .seen .fa-solid.fa-droplet {
    background-color: unset;
    box-shadow: unset;
    opacity: .4;
    color: #fff
}

section.header.profile .chat-message.me p.no-image {
    background-color: unset;
    color: #b2b2b2b0;
    opacity: .5;
    border-radius: 0;
    font-style: italic;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0
}

.custom-select {
    position: relative;
    font-family: inherit;
    cursor: pointer;
    user-select: none;
    width: 100%
}

.custom-select-trigger {
    padding: 8px 10px;
    border: 1px solid var(--color-form-border);
    border-radius: 6px;
    background-color: #202428e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%
}

.custom-select-trigger::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none;
    transition: transform 0.2s ease
}

.custom-select.open .custom-select-trigger::after {
    transform: translateY(-50%) rotate(135deg)
}

.custom-options {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    border: 1px solid var(--color-form-border);
    background-color: #20252b;
    border-radius: 6px;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 180px
}

.custom-options li {
    padding: 10px;
    cursor: pointer
}

.custom-select.open .custom-options {
    display: block
}

#sort-select .custom-options {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%
}

#sort-select .custom-options li {
    padding: 10px 15px;
    cursor: pointer;
    position: relative
}

#sort-select .custom-options li.selected::after {
    content: "\2713";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #4cafef;
    font-weight: 700
}

.blocked-user-item {
    display: grid;
    grid-template-columns: 50px auto auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #8599a62e;
    margin-bottom: 8px;
    padding: 4px 4px;
    border-radius: 6px;
    background: linear-gradient(to top left, #43a3d21f, #0000);
    position: relative
}

.blocked-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-form-border);
    object-fit: cover;
    background-color: var(--avatar-bg-color)
}

.blocked-username {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px
}

.blocked-date {
    width: 160px;
    color: var(--dark-gray-color);
    text-align: right;
    position: absolute;
    font-size: 9px;
    right: 4px;
    top: 0
}

.unblock-btn.site-button.btn {
    margin: 0;
    padding: 4px 2px;
    width: fit-content;
    justify-self: end;
    font-size: 12px
}

.locker-rooms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0
}

.locker-room-pill {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
    width: 100%;
    background: linear-gradient(to top left, #43a3d21f, #00000078), linear-gradient(to top, #47b1d24f, #47b1d259);
    border: 1px solid #8599a62e
}

.locker-room-pill a {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 10px
}

.locker-room-pill i {
    font-size: var(--font-size-lockerroom-icon)
}

.locker-room-info {
    display: flex;
    flex-direction: column;
    flex: 1
}

.lockerroom-toggle.fa-bookmark {
    padding: .5em;
    text-shadow: 0 0 20px #a3d5ee7d;
    cursor: pointer;
    padding-top: 1rem;
    padding-bottom: 1rem;
    opacity: 1;
    transition: all 0.2s;
    height: 100%;
    min-width: 50px;
    border-left: 2px solid #4d7a8a;
    background: #101c2066;
    position: relative;
    display: flex
}

.locker-room-pill i.fa-door-open {
    display: none
}

.fa-bookmark::before {
    margin: auto
}

.locker-room-name {
    font-size: var(--font-size-form-label-large)
}

.locker-room-location {
    color: var(--dark-gray-color);
    font-size: var(--font-size-form-label-small)
}

.locker-room-stats {
    font-size: var(--font-size-review-count);
    color: var(--bright-blue-color)
}

.locker-room-chat {
    margin: 0 auto 20px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgb(22 25 28 / .89);
    padding: 20px
}

section.header.profile.inbox-handler {
    max-width: 800px;
    margin: 20px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgb(22 25 28 / .89);
    padding: 20px
}

#locker-room-messages,
#locker-room-polls,
#splash-container,
#inbox-container {
    overflow: clip auto;
    border: 1px solid #333;
    border-radius: 2px;
    padding: 10px;
    background: #16191ce3;
    margin-bottom: 10px;
    min-height: 150px;
    z-index: 1;
    border-top-right-radius: 0;
    gap: 10px;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    position: relative
}

#locker-room-messages {
    max-height: 450px
}

#locker-room-messages.login {
    background-image: url(../images/padlock.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

.locker-room-message img {
    max-width: 60%
}

#locker-room-messages .message {
    padding: 8px;
    margin-bottom: 6px;
    border-radius: 6px;
    background: #292929;
    color: #fff
}

#locker-room-post-form {
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap
}

#locker-room-post-form textarea {
    flex: 1 1 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #16191ce3;
    color: #fff;
    min-height: 30px;
    font-size: var(--font-size-chat-input)
}

#locker-room-post-form button#emoji-btn {
    background: var(--background-color)
}

#locker-room-polls h2 {
    padding: 0 0 5px 0;
    text-transform: capitalize;
    font-size: 20px
}

.header.locker-room h1 {
    margin: 0;
    padding: 0;
    font-family: var(--special-font-family);
    letter-spacing: .02em;
    font-weight: 700;
    border: none;
    font-size: var(--font-size-lockerroom-title)
}

#locker-room-polls .vote-btn span {
    text-transform: capitalize
}

.header.locker-room {
    margin-bottom: .25em;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: start
}

.header.locker-room h1 span {
    color: var(--blue-color);
    font-weight: 400
}

.header.locker-room h2 {
    margin: 0;
    color: var(--dark-gray-color);
    padding-top: .25em;
    padding-bottom: 0;
    border: none;
    font-size: var(--font-size-lockerroom-subtitle)
}

#locker-room-sub-title p#subscribe {
    align-content: center;
    flex: 1 0 100%;
    width: 100%;
    align-self: center;
    text-decoration: underline;
    margin-bottom: 1.5em;
    padding: 0;
    font-weight: 400;
    text-underline-offset: 2px;
    background: none;
    border: none;
    text-transform: initial
}

#locker-room-sub-title p#subscribe span {
    padding: 0;
    font-size: var(--font-size-form-label)
}

#locker-room-sub-title .lockerroom-toggle.fa-bookmark {
    padding: .4em 1em;
    margin: 0
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin: 0 10px;
    object-fit: cover
}

.chat-content {
    max-width: 70%
}

.chat-image {
    max-width: 100%;
    border-radius: 6px;
    margin-top: 4px
}

.locker-room-message .message-base {
    display: flex;
    flex-direction: row;
    gap: 10px
}

.locker-room-message .message-body {
    flex: 1;
    gap: 5px;
    display: flex;
    flex-direction: column
}

.locker-room-message .message-header {
    display: flex;
    flex-direction: row;
    gap: 10px
}

.locker-room-message .time {
    color: var(--dark-gray-color);
    opacity: .5;
    text-align: right;
    align-self: end
}

.locker-room-message .name {
    flex: 1;
    font-weight: 700;
    opacity: .8
}

.locker-room-message .avatar {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: clip;
    max-width: unset;
    object-fit: cover;
    background-color: var(--avatar-bg-color)
}

.locker-room-message p {
    opacity: .9;
    font-family: var(--default-font-family);
    background-color: #b1b0b00f;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: .5em;
    border-top-right-radius: 6px
}

.locker-room-message .message-body * {
    font-size: var(--font-size-chat-body)
}

.locker-room-message .time {
    font-size: var(--font-size-chat-time)
}

#unread-popup {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    background-color: var(--color-special-button);
    padding: 4px 8px;
    border-radius: var(--button-border-radius);
    display: none
}

#locker-room-sub-title p {
    padding: 5px 10px;
    color: var(--white-color);
    cursor: pointer;
    background: #2b2e31;
    border: 2px solid #fff0;
    text-align: center;
    width: fit-content;
    border-radius: 12px;
    font-family: var(--special-font-family);
    font-size: 12px;
    text-transform: uppercase;
    min-width: auto;
    flex: 1
}

.guest #locker-room-sub-title p {
    opacity: .5
}

#locker-room-sub-title,
#messages-sub-title {
    display: flex;
    align-self: end;
    position: relative;
    width: 100%;
    flex-direction: column;
    gap: 5px
}

#locker-room-sub-title {
    flex-direction: row;
    flex-wrap: wrap
}

#locker-room-sub-title div {
    display: flex;
    gap: 5px
}

#messages-sub-title {
    justify-content: space-between;
    flex-direction: row
}

#messages-sub-title i {
    padding-right: 5px
}

#locker-room-sub-title #create {
    z-index: 0
}

#locker-room-sub-title #polls {
    z-index: 0
}

#locker-room-sub-title #chat {
    z-index: 0;
    flex: 1
}

#messages-sub-title #messages,
#messages-sub-title #splashes {
    z-index: 0;
    padding: 8px 10px;
    border: 2px solid #fff0;
    cursor: pointer;
    background: #2b2e31;
    font-family: var(--special-font-family);
    text-transform: uppercase;
    line-height: 1.5;
    border-radius: 12px;
    text-align: center;
    width: 50%;
    font-size: 15px
}

#locker-room-sub-title p#chat.active,
#locker-room-sub-title p#polls.active,
#locker-room-sub-title p#create.active,
#messages-sub-title p#splashes.active,
#messages-sub-title p#messages.active {
    background: var(--blue-color);
    z-index: 2;
    border: 2px solid var(--blue-color)
}

.locker-room-chat p.no-poll,
.locker-room-chat p.no-messages {
    margin: auto
}

#locker-room-sub-title * {
    font-size: var(--font-size-lockerroom-nav)
}

#locker-room-sub-title div {
    width: 100%
}

#locker-room-sub-title i::before {
    font-size: var(--font-size-icon-key)
}

#locker-room-sub-title .fa-solid {
    padding-right: .5rem
}

.locker-room-chat #back {
    display: flex;
    justify-content: end
}

.locker-room-chat #back i {
    padding-right: 5px
}

.locker-room-chat #back a {
    text-decoration: underline;
    font-size: var(--font-size-sub-text-small)
}

.poll-block {
    background: var(--background-color-alt);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%)
}

.poll-block h3 {
    margin: 0 0 5px
}

.poll-block .meta {
    color: #999;
    margin-bottom: 10px
}

.poll-result {
    margin: 8px 0
}

.poll-result .progress {
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    height: 8px;
    margin-top: 3px
}

.poll-result .progress div {
    background: #4cafef;
    height: 100%
}

.poll-result.user-choice span {
    font-weight: 700;
    color: #4cafef
}

.poll-vote-form label {
    display: block;
    margin-bottom: 6px
}

.poll-vote-form button {
    margin-top: 8px
}

p#locker-room {
    opacity: .8;
    font-style: italic;
    text-align: center;
    font-size: var(--font-size-form-hint)
}

#create-poll-form {
    display: flex;
    flex-direction: column;
    gap: .5em
}

#create-poll-form label {
    font-family: var(--special-font-family);
    text-transform: uppercase
}

#poll-button-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 1em
}

.remove-option {
    margin-left: 10px;
    border-radius: 50%;
    background-color: var(--color-form-border);
    color: var(--white-color);
    cursor: pointer;
    font-weight: 700;
    height: 30px;
    width: 30px
}

.poll .vote-btn {
    border: 1px solid var(--color-form-border);
    border-radius: 6px;
    padding: .5rem;
    color: var(--white-font-color);
    background-color: #2c2e31;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 0 5px rgb(2 2 2 / 36%);
    font-size: 13px
}

.poll {
    width: 100%;
    border-radius: 2px;
    background-color: var(--color-form-border);
    padding: .5em;
    margin: 0 auto
}

.poll h4 {
    font-family: var(--special-font-family);
    text-transform: uppercase
}

.poll h5 {
    font-style: italic;
    opacity: .5;
    padding-top: .2em;
    font-size: var(--font-size-form-hint)
}

.poll h6 {
    margin-top: 1rem
}

.poll ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1rem
}

.vote-btn .info {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    flex: 1
}

.vote-btn .info span:last-of-type {
    font-weight: 400;
    font-size: font-size:12px
}

.vote-btn .percent {
    flex: .2;
    text-align: right
}

.vote-btn .bar-container {
    width: 100%;
    background: #242629;
    border-radius: 6px;
    overflow: hidden;
    height: 12px;
    margin: 5px 0
}

.vote-btn .bar-fill {
    height: 100%;
    background: #4696bd;
    transition: width 0.3s ease
}

.toggle-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 10px;
    vertical-align: middle;
    transition: transform 0.2s ease
}

.toggle-arrow.collapsed {
    border-top: 8px solid #fff0;
    border-bottom: 8px solid #fff0;
    border-left: 15px solid #509cc8
}

.toggle-arrow.expanded {
    border-left: 8px solid #fff0;
    border-right: 8px solid #fff0;
    border-top: 15px solid #509cc8
}

.poll-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 5px 5px 0 0
}

#page-message-box {
    margin: 0 auto
}

#page-message-box div {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    background: #16191ce3;
    padding: 20px;
    box-shadow: 0 0 5px rgb(0 0 0 / .5);
    border-radius: 12px;
    border: 1px solid #8599a62e
}

#page-message-box div div {
    width: 100%;
    flex-direction: column;
    justify-content: start;
    margin-top: 1rem;
    background: unset;
    border: unset;
    box-shadow: unset;
    padding: 0
}

}

#page-message-box h1 {
    margin: 0;
    text-align: left
}

#page-message-box h2 {
    margin: 0
}

#page-message-box i {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem
}

#page-message-box .btn {
    margin: 0
}

.guest-info {
    text-align: center;
    font-style: italic;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

#splash-icon {
    display: flex;
    background-color: #ddd;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    align-items: center;
    place-content: center center;
    cursor: pointer
}

#splash-icon .fa-solid {
    color: #000;
    margin: 0;
    padding: 0
}

#splash-icon svg {
    width: 22px;
    height: auto;
    display: block;
    position: relative;
    transform: scaleX(-1)
}

#splash-icon .badge {
    position: relative;
    cursor: default;
    display: unset
}

.splash-toast {
    background: #0af;
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    animation: popin 0.5s ease
}

.splash-toast i {
    margin-right: 8px
}

@keyframes popin {
    0% {
        transform: scale(0);
        opacity: 0
    }
    80% {
        transform: scale(1.1);
        opacity: 1
    }
    100% {
        transform: scale(1)
    }
}

.home-reviews .site-button {
    width: 100%;
    align-self: center
}

.wiggle {
    animation: wiggle 0.6s ease
}

@keyframes wiggle {
    0%,
    100% {
        transform: rotate(0deg)
    }
    25% {
        transform: rotate(-15deg)
    }
    75% {
        transform: rotate(15deg)
    }
}

.droplet {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-color);
    pointer-events: none
}

.expandable-content dl {
    display: grid;
    grid-template-columns: auto auto;
    gap: 4px 10px;
    margin: 0;
    padding: 0
}

.expandable-content dt {
    font-weight: 700;
    text-align: left;
    color: #9d9d9d;
    grid-column: 1
}

.expandable-content dd {
    margin: 0;
    color: #fff;
    text-align: right;
    grid-column: 2;
    justify-self: end
}

.expandable-content dd.small {
    width: 100%;
    color: #5ca2c4;
    grid-column: 1 / -1;
    text-align: left;
    font-size: var(--font-size-form-hint)
}

.expandable-content dd.small.right {
    text-align: right
}

.expandable-content dt.sub {
    text-align: left;
    font-weight: 400
}

#welcome-user {
    font-family: var(--default-font-family);
    font-weight: 400;
    padding-right: 1em;
    padding-bottom: 2px;
    display: none;
    gap: 10px;
    font-style: italic;
    position: absolute;
    left: 15px;
    top: 26px
}

#welcome-user i {
    cursor: pointer
}

.small-button {
    width: fit-content
}

.margin-top {
    margin-top: 10px
}

.center-button {
    width: 100%;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: block
}

.form-row .notification-list label {
    margin-bottom: 0
}

.availability {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-content: center;
    align-items: center;
    margin-top: 10px
}

#delete-account-btn {
    margin-top: 1.5rem;
    margin-bottom: 0
}

.form-row.account.special-row {
    flex-direction: column;
    gap: 5px
}

.form-row.account.special-row label {
    flex: 1;
    margin: 0
}

section.special-row .form-row,
.special-row.popup-content .form-row {
    margin-bottom: 1.5rem
}

.form-row.account.special-row div {
    flex: 1;
    justify-content: start;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px
}

.form-row.account.special-row div i {
    margin: 0;
    min-width: 100%
}

#edit-images-form .form-row.main-gallery {
    margin-bottom: 20px
}

.profile-header div.header-badge {
    font-style: italic;
    color: var(--color-special-button);
    display: block
}

.profile-container .profile-header .badge {
    position: relative;
    top: unset;
    background-color: unset;
    width: auto
}

.profile-container .profile-header .badge .fa-solid {
    text-shadow: 0 0 10px #000;
    top: unset;
    right: unset;
    left: unset;
    transform: unset
}

#edit-link {
    position: absolute;
    right: 5px;
    top: 2px;
    z-index: 1
}

#edit-link a {
    border-radius: 2px;
    padding: 2px 5px;
    min-width: auto;
    width: 100%;
    font-size: 12px;
    background: unset;
    border: unset;
    font-weight: 400;
    text-decoration: underline
}

.fa-solid.fa-magnet {
    transform: rotate(90deg)
}

.profile-details span {
    margin-top: 10px;
    display: block;
    background-color: #388ab31f;
    padding: 5px 10px;
    border-radius: 6px
}

ul.profile-details li.stat-row {
    display: flex;
    gap: 5px;
    flex-direction: row;
    flex: 1 0 50%
}

.stat-icon {
    flex: 0 0 25px
}

.stat-text {
    flex: 1
}

.review-sauna-button {
    margin: auto;
    margin-top: 20px
}

.content-border.register-holder h1.default-font {
    font-weight: 700;
    text-shadow: 0 0 35px #a3a3a394, 0 0 5px #00000073;
    text-align: left;
    font-family: var(--special-font-family);
    font-style: italic;
    text-transform: capitalize
}

.content-border.register-holder {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.content-border.register-holder section {
    flex: 1
}

.content-border.register-holder section:first-of-type {
    flex: 0 0 50%
}

#register-form,
#contact-form {
    width: 100%;
    margin-top: 0
}

#over-18 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0000006b, #0009 20%, #1c2023ab 80%, #0000006b 100%), url(../images/site/backgrounds/qs-bg17.png), #000000;
    color: #fff;
    display: none;
    place-content: center center;
    align-items: center;
    z-index: 9999;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    min-height: 100%;
    min-width: 100%
}

#over-18 .modern-login-form.form-background {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 1em;
    margin: auto;
    overflow-y: scroll;
    height: 100%;
    padding-top: 50px;
    background-color: #20232791
}

#over-18 h4 {
    text-transform: uppercase;
    font-family: var(--special-font-family);
    border-bottom: 1px solid #8599a62e;
    padding: 0 0 5px;
    font-size: 24px
}

#over-18 .full-span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-top: 1em
}

#over-18 .full-span a,
#cookie-alert a {
    background-color: var(--blue-color);
    border-radius: 2px;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    padding: 15px 12px
}

#cookie-alert div {
    height: fit-content;
    display: flex;
    text-align: left;
    gap: 10px;
    align-items: center
}

#over-18 .full-span a:last-of-type,
#cookie-alert a:last-of-type {
    background-color: #0b0b0b
}

#cookie-alert {
    display: flex;
    padding: 15px 10px;
    background: #16191ce3;
    box-shadow: 0 0 5px rgb(0 0 0 / 50%);
    border-bottom: 1px solid #8599a62e;
    text-align: center;
    flex-direction: column;
    gap: 10px;
    justify-content: center
}

#cookie-alert a {
    flex: 1;
    min-width: unset;
    width: 49%;
    padding: 8px 6px;
    font-size: 12px
}

#sauna-list {
    width: 100%
}

.lb-container {
    height: 100%;
    display: flex
}

.lb-outerContainer {
    background-color: var(--background-color-alt) !important
}

.shortcuts.quick-links .action-buttons a {
    overflow: clip;
    display: flex;
    flex: 1 0 calc(50% - 1em);
    flex-direction: column
}

.shortcuts.quick-links .action-buttons a .site-button {
    width: 100%
}

.shortcuts.quick-links .action-buttons p {
    padding: 8px;
    display: none
}

.shortcuts.quick-links .action-buttons a:nth-child(2) div {
    background: #4d8cb0cf;
    border: 2px solid #4d8cb0cf
}

.shortcuts.quick-links .action-buttons a:nth-child(3) div {
    background: #3a7293cf;
    border: 2px solid #3a7293cf
}

.shortcuts.quick-links .action-buttons a:nth-child(4) div {
    background: #264b60d4;
    border: 2px solid #264b60d4
}

.shortcuts.quick-links .action-buttons a:last-of-type div {
    background: #19303ee3;
    border: 2px solid #19303ee3
}

.shortcuts.quick-links p a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px
}

.form-actions.button-padding {
    padding-top: 2.5em;
    padding-bottom: 1em;
    border-top: 1px solid #8599a62e;
    flex-direction: row
}

.form-more-info div {
    display: flex;
    gap: 10px;
    justify-content: start;
    align-items: center
}

.form-more-info.column div {
    flex-direction: column
}

.form-more-info i {
    font-size: 22px
}

.form-more-info p {
    font-size: 18px
}

.form-more-info.column p.hint {
    font-size: 15px;
    font-style: italic;
    color: var(--dark-gray-color)
}

.form-more-info {
    margin-bottom: 20px
}

#password-reset-form .hint,
#reset-form .hint {
    display: block
}

section.header.profile .profile-container #edit-images-form #main-avatar {
    flex: 0 0 auto;
    height: auto;
    width: 100%;
    background-color: var(--avatar-bg-color)
}

@media (hover:hover) and (pointer:fine) {
    .site-button:hover {
        text-decoration: underline
    }
    .featured-venue:hover .shadow,
    .sauna-preview-box.atoz:hover .shadow,
    .venue:hover .shadow {
        background-color: var(--blue-color);
        opacity: .8
    }
    .footer .social ul li:hover img {
        background-color: var(--blue-color)
    }
    .sauna-preview-box:hover .overlay {
        opacity: 1
    }
    .sauna-preview-box:hover .right {
        opacity: 0
    }
    .sauna-preview-box a:hover button.site-button {
        background: #349bc0
    }
    .sauna-wrap table.bottom td .tag:hover,
    .tag-search-result .tag:hover {
        background: #cecece;
        border: 1px solid #ddd
    }
    .pagination a:hover {
        background-color: #4e859d;
        color: var(--white-color)
    }
    #go-back:hover div {
        background-repeat: no-repeat;
        background-position: 0;
        background-size: 10px
    }
    #sauna-select-wrap div:hover {
        background-color: var(--blue-color);
        color: var(--white-color)
    }
    #go-back:hover {
        background-color: var(--blue-color)
    }
    #go-back:hover div {
        background-image: url(../images/nav-arrow-left-white.png)
    }
    .profile-card .options .wet.splash.msg-btn.btn:hover {
        background: #545d62;
        border: 2px solid #545d62;
        cursor: default
    }
    #pagination button:not(:disabled):hover {
        text-decoration-color: var(--white-font-color)
    }
    .badge:hover .tooltip {
        visibility: visible;
        opacity: 1
    }
    .site-button:hover,
    .shortcuts.quick-links .action-buttons a .site-button:hover {
        background: #5bc7fd47;
        border: 2px solid var(--bright-blue-color);
        text-decoration: none
    }
    .custom-label:hover::before {
        border-color: var(--bright-blue-color);
        background: #5bc7fd61
    }
    .edit-btn.btn:hover {
        background: #f5c75d36;
        border: 2px solid var(--color-special-button)
    }
    .tag-pill:hover span {
        background-color: #6b9ec047
    }
    .form-row.delete .msg-btn.btn:hover,
    .site-button.btn.alt:hover {
        background: #c8a4504a;
        border: 2px solid var(--color-special-button)
    }
    #close-gallery:hover {
        background-color: #3498db;
        text-decoration: none
    }
    .show #send-image:hover {
        background-color: #5bc7fd47
    }
    .public-toggle:hover {
        background-color: #00802cc9
    }
    .delete-toggle:hover {
        background-color: #f44336;
        color: #fff
    }
    .main-toggle:hover {
        background-color: #509cc866;
        opacity: 1
    }
    a.inbox-item:hover {
        text-decoration: none;
        background-color: #383a3d26
    }
    .unsend-btn:hover {
        background-color: #b5b3b32e
    }
    #user-options div:hover {
        color: var(--bright-blue-color)
    }
    #user-options.feedback div:hover {
        background-color: #c8a45078;
        color: #fff
    }
    #emoji-btn:hover {
        text-decoration: navajowhite;
        background-color: var(--color-special-button)
    }
    .custom-options li:hover {
        background-color: #53a4df1c
    }
    #sort-select .custom-options li:hover::after {
        content: "\2713";
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #4cafef;
        font-weight: 700
    }
    .locker-room-pill:hover {
        background: linear-gradient(to top, #0000, #fff0), linear-gradient(to bottom, #0000, #fff0), linear-gradient(to left, #0000, #499fc8), linear-gradient(to right, #fff9, #499fc8)
    }
    .locker-room-pill:hover span {
        color: #fff
    }
    .lockerroom-toggle.fa-bookmark:hover {
        opacity: .5;
        text-shadow: 0 0 0 #fff0
    }
    #locker-room-post-form button#emoji-btn:hover {
        background: var(--color-special-button)
    }
    .locker-room-message .name:hover {
        opacity: 1
    }
    .remove-option:hover {
        background-color: #b5b3b32e
    }
    .poll .vote-btn:hover {
        box-shadow: 0 0 5px #000;
        background-color: var(--bright-blue-color)
    }
    #splash-icon:hover .fa-solid,
    #splash-icon.wet .fa-solid {
        color: #00a9ff
    }
    #over-18 .full-span a:hover,
    #cookie-alert a:hover {
        background: var(--bright-blue-color);
        text-decoration: none
    }
    #over-18 .full-span a:last-of-type:hover,
    #cookie-alert a:last-of-type:hover {
        background: var(--color-special-button);
        text-decoration: none
    }
    .locker-room-pill a:hover {
        text-decoration: none
    }
}

.adsbygoogle,
.google-auto-placed {
    margin: 0 !important
}

.no-ads {
    google-auto-ads-disable: true
}

.no-ads .adsbygoogle,
.no-ads .google-auto-placed {
    display: none !important
}

.full-screen #main,.full-screen .header.profile, .full-screen #wrapper, .full-screen .chat-header, .full-screen section.header .chat-header p {
  margin: 0;
  padding: 0;
}

.full-screen .footer .social{
	padding-bottom: 0;
}

.full-screen .header.profile {
  height: 100%;
  flex: 1;
 display: flex;
  flex-direction: column;
}

.full-screen .inbox-container.form-background {
  flex: 1;
  display: flex;
  margin: 0;
  padding: 5px;
}

.full-screen section.header .chat-header p{
	font-size: 12px;
}

.full-screen section.header .chat-header h1{
	font-size: 16px;
}

.full-screen .chat-window{
flex: 1;
  margin: 0;
}

.full-screen .chat-date-divider{
margin: 0;
  font-size: 8px;
}

.full-screen .user-options{
	gap: 10px;
	margin-top: 0;
}

.full-screen .site-button {
flex: 1 0 calc(100%/2 - 1rem);
  max-width: initial;
  border-radius: 4px;
  width: auto;
  padding: 8px 0;
}

.full-screen #wrapper .google-auto-placed{
	display: none !important;
}

.full-screen .locker-room-chat {
  padding: 5px;
  margin: 0;
}

.full-screen .locker-room-chat #back {
  padding: 0;
}

.full-screen .header.locker-room{
  margin: 0;
  padding: 0;
}

.full-screen .header.locker-room h1{
  text-align: center;
  width: 100%;
  padding: 0;
}

.full-screen .header.locker-room h2{
width: 100%;
  text-align: center;
  padding: 0;
  font-size: 14px;
}

.full-screen .header.locker-room h1 a{
	text-decoration: none;
}

.full-screen p#subscribe{
margin: 0;
text-align: center;
}

.full-screen p#subscribe span{
	font-size: 12px;
	text-decoration: underline;
}

.full-screen #locker-room-messages {
max-height: 450px;
  min-height: 300px;
  margin: 0;
  padding: 5px;
}




@media (hover:none),
(pointer:coarse) {
    .lb-nav a.lb-prev,
    .lb-nav a.lb-next {
        opacity: 1 !important;
        display: block !important
    }
}

@media (max-width:768px) {
    .lightboxOverlay,
    .lightbox {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important
    }
    .lightbox .lb-image {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        margin: auto
    }
    .lb-outerContainer {
        width: 100% !important;
        height: 100% !important
    }
    .lb-dataContainer {
        max-width: 100% !important
    }
    .lb-close {
        position: fixed !important;
        top: 10px !important;
        right: 10px !important;
        z-index: 10001 !important;
        opacity: 1 !important;
        display: block !important;
        font-size: 24px;
        background: rgb(0 0 0 / .5);
        color: white !important;
        padding: 6px 12px;
        border-radius: 4px;
        cursor: pointer
    }
}

@media (min-width:375px) {
    :root {
        --font-size-lockerroom-title: 17px
    }
    .header.locker-room h1 {
        text-align: center
    }
    .switch .sign-up {
        right: 15px
    }
    .welcome div .action-buttons {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap
    }
    .shortcuts .action-buttons .site-button {
        display: flex;
        justify-content: center;
        align-items: center;
        text-underline-offset: 3px
    }
    .header-main .logo img {
        height: 45px;
        max-width: 100%
    }
    .shortcuts.quick-links .action-buttons a {
        flex: 1 0 calc(100%)
    }
    .header.locker-room {
        align-items: center
    }
    section.header .profile-header h1 {
        margin: 0;
        padding-bottom: .2em;
        padding-top: .2em;
        text-align: left
    }
    section.sauna-index>section {
        max-width: 320px;
        min-width: 319px
    }
    .padlock {
        height: 28px;
        width: 28px;
        right: -4px;
        bottom: -10px
    }
}

@media (min-width:375px) and (max-width:410px) {
    section.sauna-index>section>section .google-auto-placed,
    section.sauna-index>section>section .google-auto-placed * {
        max-width: 286px !important;
        width: 286px !important
    }
}

@media (min-width:410px) {
    :root {
        --font-size-nav-button: 12px
    }
    .header-main .logo {
        max-width: 360px
    }
    .header-main .logo {
        padding-left: 0;
        align-self: center
    }
    .header-main .logo img {
        height: 50px;
        max-width: 100%
    }
    .venue-info-wrap {
        bottom: 0;
        width: 100%;
        padding: 3px
    }
    .top-ten .rating {
        justify-content: start;
        display: flex
    }
    .top-ten .stars {
        background-position: -5px center
    }
    .shortcuts.quick-links .action-buttons a {
        flex: 1 0 calc(50% - 1rem)
    }
    .home-reviews .site-button,
    .site-button {
        width: 50%;
        align-self: center
    }
    #locker-room-post-form {
        justify-content: end
    }
    #send-chat-btn {
        width: 200px;
        flex: 0 auto
    }
    .site-button {
        font-size: 14px;
        padding: 8px 10px
    }
    .home-preview .featured-venue {
        flex: 0 0 48%
    }
    .home-preview {
        flex-flow: row wrap;
        gap: 10px
    }
    .home-preview .title {
        font-size: 16px
    }
    .home-reviews .form-row h2 {
        width: 100%
    }
    .form-row.interact {
        flex-direction: row;
        max-width: 50%;
        align-self: center;
        margin-top: 20px
    }
    .form-row.interact a {
        flex: 1
    }
    #send-images-button,
    .upload-icon-wrap {
        min-width: auto;
        flex: 1;
        width: 100%
    }
    #user-gallery #chat-images-form {
        justify-content: space-between
    }
    #send-image {
        width: 100%
    }
    #page-message-box div div {
        flex-direction: row;
        flex-wrap: wrap
    }
    #page-message-box .btn {
        flex: 1 0 calc(50% - 1rem);
        font-size: 14px;
        padding: 8px 10px
    }
    section.sauna-index>section {
        max-width: initial;
        min-width: initial
    }
    #create-poll-form .form-actions.button-padding {
        justify-content: center
    }
    section.header.profile .profile-container #edit-images-form #main-avatar {
        height: 100px;
        width: 100px
    }
}

@media (min-width:433px) {
    :root {
        --font-size-nav-tagline: 17px;
        --font-size-nav-menu: 25px;
        --font-size-nav-bar: 20px;
        --font-size-lockerroom-title: 25px;
        --font-size-lockerroom-subtitle: 22px;
        --font-size-lockerroom-icon: 18px;
        --font-size-form-label-large: 14px;
        --font-size-form-label-small: 13px
    }
    .home-preview .image {
        width: 40%
    }
    .home-preview {
        row-gap: 20px;
        margin-top: 1rem
    }
    .top-ten .venue {
        flex: 0 0 32%
    }
    .top-ten .thumb {
        min-height: 175px
    }
    .top-ten .rating {
        flex-direction: column
    }
    .top-ten .stars {
        height: 25px;
        width: 120px
    }
    .top-ten .title>a {
        font-size: 18px
    }
    .home-preview .title {
        font-size: 18px;
        margin-top: 6px
    }
    .featured-venue .stars {
        height: 18px
    }
    .sort-filter.atoz {
        justify-content: space-between
    }
    .sort-filter .form-row.sauna-sort {
        max-width: 350px
    }
    .sauna-preview-box {
        flex: 0 0 calc((100% / 3) - 0.4rem)
    }
    .locker-room-pill {
        flex: 1 1 calc(50% - 1rem);
        width: calc(50% - 1rem)
    }
    .locker-room-pill a {
        gap: 5px;
        padding: 8px 10px;
        width: 100%
    }
    .locker-room-pill i.fa-door-open {
        align-self: start;
        margin-top: 5px;
        font-size: 20px
    }
    .locker-room-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 130px
    }
    .header.locker-room {
        align-items: center
    }
    .lockerroom-toggle.fa-bookmark {
        padding: .2em
    }
    .blocked-username {
        font-size: 15px
    }
}

@media (min-width:520px) {
    .locker-room-name {
        max-width: 168px
    }
    #user-gallery .profile-gallery-item {
        flex: 0 0 calc(33% - 0.5em)
    }
    .switch .sign-up {
        top: 60px
    }
    .header-main .logo img {
        height: 70px
    }
    .chat-message.me.chat-image img,
    .chat-message.image.me img {
        max-height: 145px;
        aspect-ratio: 1;
        width: auto
    }
    .profile-header {
        display: flex;
        align-items: start;
        gap: 10px;
        border-bottom: 1px solid var(--color-form-border);
        padding-bottom: 1rem;
        flex-wrap: wrap;
        position: relative
    }
    .profile-avatar img {
        background-color: var(--avatar-bg-color);
        height: 125px;
        width: 125px
    }
    .profile-header.view .profile-avatar {
        flex: 0 0 auto;
        width: auto
    }
    .profile-header.view div {
        gap: 2px;
        display: flex;
        flex-direction: column;
        width: auto
    }
    .main-gallery.view .profile-gallery-item div {
        width: 100%
    }
    .profile-header.view div.header-badge {
        flex-direction: row
    }
    .profile-header.view div h1 {
        padding-top: 0
    }
    .profile-header {
        flex-direction: row
    }
    .profile-header .profile-intro {
        width: auto;
        flex: 1;
        padding-left: 5px
    }
    .padlock {
        height: 35px;
        width: 35px;
        right: 0;
        bottom: -9px
    }
}

@media (min-width:560px) {
    .locker-room-name {
        max-width: unset
    }
    #page-message-box .btn {
        flex: 1 0 calc(33% - 1rem)
    }
    .chat-header a {
       /* flex: 0 0 85px;
        height: 85px*/
    }
    .chat-header div {
        flex: 1;
        align-content: center
    }
    section.header .chat-header h1 {
        font-size: 24px
    }
    section.header .chat-header div p {
        font-size: 18px
    }
    #over-18 .modern-login-form.form-background {
        padding: 10%
    }
    #over-18 .form-background {
        background-color: #202327d4
    }
    #cookie-alert div {
        justify-content: center
    }
    #cookie-alert a {
        width: fit-content;
        max-width: 140px
    }
    .main-gallery.view .profile-gallery-item {
        flex: 0 0 calc(32%)
    }
    .spotlight-card {
        flex: 1 0 calc(100%/2 - 1rem)
    }
    
	.user-options {
	  justify-content: space-between;
	  }
	  
	.full-screen .site-button {
	  flex: 0 calc(100%/2 - 1rem);
	  }
	  
    #locker-room-sub-title div {
        width: auto;
        flex: 1 auto;
        order: 3
    }
  
}

@media (min-width:600px) {
    #edit-images-form .profile-gallery-item {
        flex: 0 0 calc(32%)
    }
    .form-row.account.special-row div i {
        min-width: 50%
    }
}

@media (min-width:700px) {
    #profiles-container {
        flex-direction: row;
        flex-wrap: wrap
    }
    .profile-card {
        display: flex;
        flex-direction: row;
        gap: 8px;
        padding: .5em;
        background: linear-gradient(to top left, #43a3d21f, #0000);
        border-radius: 2px;
        box-shadow: 0 0 5px rgb(0 0 0 / 5%);
        border: 1px solid var(--color-form-border);
        min-height: 95px;
        flex: 1 0 calc(50% - 1em);
        max-width: 50%
    }
    .profile-card .avatar {
        display: flex;
        position: relative;
        border-radius: 2px;
        flex: 0 0 auto
    }
    .home-preview .image {
        width: 35%
    }
    .checkbox-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr)
    }
    #update-sauna .form-row.submit-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center
    }
    #update-sauna .form-row.submit-row * {
        flex: 1
    }
    #update-sauna .form-row.submit-row #load-sauna {
        align-self: end;
        width: max-content;
        flex: 0 0 auto
    }
}

@media (min-width:768px) {
    .profile-image.empty .slot-text::after {
        content: " tap to add image"
    }
    .center,
    section .center,
    .review-call p {
        text-align: center
    }
    .review-call p.center {
        margin-bottom: 1em
    }
    :root {
        --font-size-default-h1: 24px;
        --font-size-default-h2: 22px
    }
    .home-preview .featured-venue {
        flex: 0 0 32%
    }
    .home-preview .image {
        width: 45%
    }
    h1,
    h2,
    section.header h1 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: fit-content
    }
    .standard-section,
    section.header,
    #page-message-box h1 {
        display: flex;
        flex-direction: column
    }
    #page-message-box h1 {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: .5em
    }
    #page-message-box * {
        text-align: center
    }
    #page-message-box div {
        display: initial;
        flex-direction: unset;
        gap: 0;
        background: rgb(22 25 28 / .89);
        padding: 20px
    }
    #page-message-box div div {
        width: 100%;
        flex-direction: row;
        justify-content: start;
        margin-top: 1rem;
        display: flex;
        gap: 10px;
        background: unset
    }
    .home-preview .title {
        min-width: 60%;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        padding-left: 5px;
        padding-right: 5px
    }

    #locker-room-sub-title p {
        flex: 1 auto
    }
    #locker-room-sub-title p#subscribe {
        order: 1
    }
    #locker-room-sub-title #chat {
        order: 2
    }
    .action-buttons {
        flex-direction: row
    }
    #checkUsername {
        width: 30%
    }
    .sauna-preview-box {
        flex: 0 0 calc((100% / 4) - 0.4rem)
    }
    .sauna-preview-box .right {
        height: 100%;
        align-content: end;
        justify-content: flex-end
    }
    .sauna-preview-box .right .title {
        display: flex;
        font-size: 12px
    }
    #main .sauna-preview-box .right .title h2 {
        font-size: 18px
    }
    .lockerroom-list li {
        flex: 1 50%
    }
    .blocked-user-item {
        grid-template-columns: 50px auto 110px auto
    }
    .blocked-date {
        width: auto;
        right: unset;
        top: unset;
        position: relative
    }
    #cookie-alert div {
        font-size: 12px
    }
    #cookie-alert {
        justify-content: center;
        align-items: center;
        flex-direction: row
    }
    #cookie-alert a {
        flex: 1 0 auto
    }
    .spotlight p {
        text-align: center
    }
}

@media (min-width:850px) {
    .shortcuts.quick-links .action-buttons a {
        flex: 1 0 calc(33% - 1rem)
    }
    section.header .profile-header h1 {
        text-align: left;
        font-size: 20px
    }
    .spotlight-holder>:nth-last-child(-n+2) {
        display: flex
    }
    .spotlight-card {
        flex: 1 0 calc(100%/3 - 1rem)
    }
}

@media (min-width:900px) {
    .home-preview .image {
        width: 40%
    }
}

@media (min-width:1024px) {
    .badge .tooltip {
        display: block
    }
    .switch .sign-up {
        display: none
    }
    .nav ul.switch #menu-items .menu-wrap li.highlight.mobile-link a {
        margin: 0
    }
    .nav ul.switch #menu-items .menu-wrap li.highlight:not(.mobile-link) {
        font-size: 14px
    }
    :root {
        --font-size-form-hint: 12px;
        --font-size-default-h3: 18px;
        --font-size-nav-button: 14px
    }
    .nav-bar .center-div {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        display: block
    }
    .modern-login-form .form-row label.tag-pill span {
        font-size: 13px
    }
    .menu-toggle {
        display: none
    }
    .header-main .google-auto-placed {
        display: none !important
    }
    .nav-bar {
        padding-bottom: 10px
    }
    .nav .dropdown-menu {
        padding: 0;
        gap: 0;
        margin-top: 0;
        margin-bottom: 0;
        max-height: 0;
        overflow: clip;
        position: absolute;
        transition: all 0.5s;
        min-width: 100%;
        white-space: nowrap;
        right: 0;
        z-index: 2
    }
    .menu-wrap {
        flex-direction: row;
        gap: 20px;
        width: fit-content;
        right: unset;
        opacity: 1;
        background: unset;
        border-bottom: unset;
        padding: 25px 15px 0 0
    }
    #menu-items {
        width: auto;
        max-height: initial;
        overflow: initial;
        justify-content: end;
        display: flex;
        top: 0;
        position: relative
    }
    .nav li.dropdown {
        cursor: pointer
    }
    .nav li.dropdown:hover>ul {
        max-height: 400px;
        padding-top: 10px
    }
    .nav .dropdown-menu li {
        display: flex;
        padding: 4px 10px;
        width: 100%;
        min-width: unset;
        background: #16191cf0
    }
    .nav .dropdown-menu li:hover {
        background: #5bc7fda1
    }
    #menu-items :not(a) {
        font-size: 16px
    }
    .nav-padding .nav .dropdown {
        display: none
    }
    .nav-padding .nav #menu-items {
        flex: 1 1
    }
    .nav-padding .nav ul {
        flex-wrap: nowrap
    }
    .nav-padding .menu-wrap {
        flex-wrap: wrap;
        align-items: end;
        justify-content: end
    }
    .nav-padding .nav ul.switch #menu-items .menu-wrap li.highlight:not(.mobile-link) {
        font-size: 16px;
        min-width: 75%;
        justify-content: end;
        align-content: end;
        align-items: end;
        display: flex
    }
    .nav-padding #menu-items :not(a) {
        font-size: 15px;
        letter-spacing: -1px
    }
    .nav-padding .highlight.mobile-link,
    .nav-padding .menu-wrap>li:not(.dropdown):not(.highlight) {
        display: block
    }
    #emoji-btn {
        display: block
    }
    .home-preview .image {
        width: 124px
    }
    .top-ten .thumb {
        min-height: 220px
    }
    .top-ten .venue {
        flex: 0 0 calc(25% - 0.5rem)
    }
    .profile-container {
        padding: 0
    }
    #main {
        max-width: 900px;
        margin: auto
    }
    section {
        background: rgb(22 25 28 / .8);
        padding: 20px;
        border-radius: var(--button-border-radius)
    }
    section section {
        background-color: unset;
        border-radius: 0;
        background: unset;
        padding: 0
    }
    .form-background:not(.sauna-index):not(.keep):not(#review-select):not(#inbox-container):not(#splash-container):not(#register-form):not(#contact-form):not(#user-login-form):not(#update-sauna):not(#password-reset-form):not(#reset-form) {
        box-shadow: unset;
        background-color: unset;
        border-radius: 0;
        border: unset;
        position: relative;
        padding: 0;
        margin-top: 0
    }
    #user-gallery .profile-gallery-item {
        flex: 0 0 calc(25% - 0.5em)
    }
    .profile-container #user-options {
        top: -10px;
        right: -10px
    }
    .popup-content,
    #confirm-report .popup-content {
        max-width: 50%
    }
    #user-gallery {
        background: #0c0e0f
    }
    #user-gallery .modern-login-form {
        width: 60%;
        margin: auto
    }
    .teaser-box {
        background-color: unset;
        border: unset;
        box-shadow: unset
    }
    .content-border.register-holder {
        flex-direction: row
    }
    section.content-border {
        flex-direction: row;
        display: flex;
        padding: 0;
        gap: 20px
    }
    section.content-border section {
        flex: 1
    }
    .form-more-info {
        margin-top: 1em
    }
    .form-row.review-call p {
        text-align: center
    }
    #poll-button-wrap {
        flex-direction: row
    }
    .lockerroom-list li {
        flex: 1 33%
    }
    .main-gallery.view .profile-gallery-item {
        flex: 0 0 calc(24%)
    }
    
    .full-screen #main{
    	max-width: 100%;
    }
    
    .full-screen #main .header.profile .inbox-container.form-background{
    	padding: 20px !important;
    }
    
  .user-options {
    justify-content: end;
  }
  
  .full-screen #send-chat-btn, .full-screen .site-button {
	flex: 0 auto;
    	width: fit-content;
    	padding: 8px 18px;
    	height: 45px;
  }
  
    .locker-room-chat {
        max-width: initial
    }
    .header.locker-room {
        margin-bottom: 1rem
    }
    #locker-room-sub-title {
        justify-content: end;
        margin-bottom: .5em
    }
    #locker-room-sub-title div {
        flex: 0 0 auto;
        width: auto
    }
    #locker-room-sub-title p {
        flex: 0 0 auto;
        min-width: 200px
    }
    #locker-room-sub-title p#subscribe {
        flex: 0 0 auto;
        width: auto;
        margin-bottom: 0
    }
    #locker-room-sub-title #chat {
        flex: 0
    }
    
}

@media (min-width:1100px) {
    .nav-bar .center-div {
        width: 85%
    }
    .information {
        flex-flow: row nowrap
    }
}

@media (min-width:1120px) {
    #menu-items :not(a) {
        font-size: 18px
    }
}

@media (min-width:1280px) {
    .nav-bar .center-div {
        width: 80%;
        max-width: 80%
    }
}

@media (min-width:1366px) {
    :root {
        --font-size-default-h1: 26px;
        --font-size-default-h2: 24px;
        --font-size-default-p: 16px;
        --font-size-lockerroom-nav: 15px
    }
    #main,
    .nav-bar .center-div {
        max-width: 1200px;
        width: 90%
    }
    
    .full-screen #main{
        	max-width: 100%;
        	width: 100%;
    }
    
    .home-reviews .site-button,
    .form-row.review-call .site-button {
        width: 20%
    }
    .top-ten .venue {
        flex: 0 0 calc(20% - 0.5rem)
    }
    .nav-padding #menu-items :not(a) {
        font-size: 17px
    }
    .sauna-header .star-rating {
        align-content: center;
        text-align: left;
        gap: 20px
    }
    .star-rating div {
        text-align: right;
        flex: 0 0 calc(49% - 20px);
        align-content: center
    }
    .background-frame.no-frame p {
        text-align: center
    }
    .sauna-index .custom-select {
        width: 20%
    }
    .sauna-preview-box {
        flex: 0 0 calc((100% / 5) - 0.4rem)
    }
    .checkbox-grid {
        grid-template-columns: repeat(4, 1fr)
    }
    .form-section {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px
    }
    .modern-login-form .form-section .form-row {
        flex: 1 0 calc(50% - 20px)
    }
    .modern-login-form .form-section .form-row textarea {
        flex: 1 1 auto;
        overflow: initial
    }
    .g-recaptcha {
        align-self: center
    }
    .locker-rooms-tags {
        justify-content: space-between
    }
    .locker-room-pill {
        flex: 0 1 calc(33% - 10px)
    }

}

@media (min-width:1600px) {
    #main {
        max-width: 1242px
    }
    
        .full-screen #main{
        	max-width: 100%;
        	width: 100%;
    }
}