html,
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    color: var(--color-text-primary);
    font-size: 14px;
    min-height: 100vh;
}
body {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
@media (min-width: 768px) {
    body:not(.page-chat) {
        padding-bottom: 286px;
    }
    body:not(.page-chat).small-footer {
        padding-bottom: 240px;
    }
    footer {
        position: absolute;
        bottom: 0;
        left: 0;
    }
}

header {
    height: 80px;
    background: var(--color-primary);
}
/*header.header-small {
    height:60px;
}*/
header .header-flexbox {
    height: 70px;
    display: flex;
    align-items: center;
}
header .header-flexbox .logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 15px;
    font-weight: bold;
    margin-top: 75px;
    line-height: 34px;
    position: relative;
    z-index: 1500;
    text-shadow: 2px 2px var(--color-primary-darker);
    filter: drop-shadow(-4px 4px 0px #9566e2);
    border-radius: 6px;
}
header .header-flexbox .logo small {
    font-size: 16px;
    font-weight: bold;
}
header .header-flexbox .logo::after {
    display: block;
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary-dark);
    z-index: -1;
    border-radius: 5px;
}
header .header-flexbox .logo-holder {
    transform: rotate(-3.5deg);
    position: relative;
    z-index: 2001;
}
header .header-flexbox .logo-holder::after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 15px;
    bottom: -18px;
    border: 12px solid;
    border-color: var(--color-primary-dark) var(--color-primary-dark) transparent
    transparent;
    filter: drop-shadow(0px 6px 0px #9566e2);

    z-index: 2002;
}
header .header-flexbox .logo:hover {
    text-decoration: none;
}
header .header-flexbox .logo img {
    width: 35px;
    height: 34px;
    position: relative;
    top: -1px;
    margin-right: 5px;
}
header .header-flexbox .logo:hover img {
    transform: rotate(-10deg);
}

header.header-small .header-flexbox .logo {
    margin-top: 10px;
    padding: 3px 6px;
    font-size: 18px;
}
header.header-small .header-flexbox .logo img {
    width: 20px;
    height: 20px;
}
header.header-small .header-flexbox .logo::before {
    top: -8px;
    right: -5px;
}

@media (max-width: 767px) {
    header {
        height: 88px;
    }
    header .header-flexbox .logo {
        font-size: 14px;
        padding: 5px 8px 3px 8px;
        margin-top: 16px;
    }
    header .header-flexbox .logo::before {
        top: -8px;
        right: -6px;
    }
    header .header-flexbox .logo img {
        width: 20px;
        height: 19px;
    }
}
header .header-flexbox .menu {
    flex-grow: 1;
    align-items: center;
    text-align: right;
    padding-top: 15px;
}
/*header.header-small .header-flexbox .menu {
    padding-top:0;
}*/
header .header-flexbox .menu a {
    display: inline-block;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
    color: var(--color-text-purple);
    background: var(--color-bg-gray-light);
    border-radius: 4px;
}
header .header-flexbox .menu a.active,
header .header-flexbox .menu a:hover {
    background: var(--color-primary-dark);
    text-decoration: none;
    color: white;
}
body:not(.page-chat) header .header-flexbox .menu a:last-child {
    margin-right: 30px;
}
@media (max-width: 1199px) {
    body.page-chat header .container {
        max-width: 1100px;
    }
}
@media (min-width: 1137px) and (max-width: 1199px) {
    body.page-chat header .container {
        padding-left: 0;
        padding-right: 0;
    }
}
header .header-flexbox .menu .vinkjes {
    color: var(--color-text-blue);
    display: inline-block;
}
header .header-flexbox .menu .vinkjes span {
    display: inline-block;
    padding-left: 26px;
    background-image: url(/assets/images/checkmark_blue.png);
    background-size: 20px 15px;
    background-position: left center;
    background-repeat: no-repeat;
    margin-right: 30px;
}
header .header-flexbox .menu a.login-link {
    display: inline-block;
    padding-right: 23px;
    background-image: url(/assets/images/user-icon.png);
    background-size: 10px 12px;
    background-position: right 8px center;
    background-repeat: no-repeat;
    position: relative;
}
header .header-flexbox .menu a.login-link:hover,
header .header-flexbox .menu a.login-link.active {
    background-image: url(/assets/images/user-icon-hover.png);
}

.index-header {
    width: 100%;
    height: auto;
    min-height: 585px;
    background: linear-gradient(
            180deg,
            var(--color-primary),
            var(--color-primary-light)
    );
    position: relative;
    padding-bottom: 40px;
}
@media (max-width: 767px) {
    .index-header {
        background: var(--color-primary);
    }
}
.index-header::before {
    display: block;
    content: " ";
    background: var(--color-primary-lighter);
    width: 100%;
    height: 20px;
    transform: rotate(-0.2deg);
    position: absolute;
    bottom: -15px;
    left: 0;
    z-index: 1000;
}
@media (max-width: 767px) {
    .index-header {
        height: auto;
        padding-bottom: 30px;
    }
}

.index-header-block {
    width: 100%;
    background: white;
    margin-top: 60px;
    border-radius: 5px;
    -webkit-box-shadow: -8px 8px 0 0 rgba(0, 0, 0, 0.1);
    border: 3px solid var(--color-secondary);
    /*box-shadow: 5px 5px 6px -4px #000000;*/
}
@media (max-width: 767px) {
    .index-header-block {
        margin-top: 30px;
    }
}
.index-header-block .index-header-block-header {
    background: linear-gradient(
            90deg,
            var(--color-secondary-darker),
            var(--color-secondary),
            var(--color-secondary-dark)
    );
    width: calc(100% - 4px);
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    color: var(--color-text-dark);
    font-size: 20px;
    font-weight: bold;
    padding: 0 15px;
    margin: 2px;
    position: relative;
}
.index-header-block .index-header-block-header.index-header-block-header-menu {
    background: white;
    padding: 0;
}
.index-header-block
.index-header-block-header.index-header-block-header-menu
a {
    background: linear-gradient(
            90deg,
            var(--color-primary-purple),
            #81749c,
            var(--color-primary-purple)
    );
    width: 50%;
    display: inline-block;
    text-align: center;
    color: white;
    border-radius: 3px;
    position: relative;
}
.index-header-block
.index-header-block-header.index-header-block-header-menu
a.active {
    color: var(--color-text-dark);
    text-decoration: underline;
    background: white;
}
.index-header-block
.index-header-block-header.index-header-block-header-menu
a:not(.active):hover {
    text-decoration: none;
    background: linear-gradient(90deg, #6d569c, #7c6d9c, #6d569c);
}
.index-header-block
.index-header-block-header.index-header-block-header-menu
a:not(.active):hover::after {
    content: " ";
    background: white;
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    bottom: -13px;
    left: calc(50% - 8px);
    transform: rotate(45deg);
}
.index-header-block .index-header-block-header.with-chat-icon::before {
    content: " ";
    position: absolute;
    display: block;
    background-image: url(/assets/images/logo_sex_chat.png);
    background-size: cover;
    width: 34px;
    height: 33px;
    top: 9px;
    right: 15px;
    z-index: 100;
}
.index-header-block
.index-header-block-header.index-header-block-header-menu.with-chat-icon::before {
    border: 2px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-image: url(/assets/images/logo_sex_chat.png);
    background-color: var(--color-secondary-darker);
    background-position: center;
    background-size: 60% auto;
    background-repeat: no-repeat;
    top: -25px;
    left: calc(50% - 25px);
    right: auto;
}
.index-header-block .index-header-block-body {
    padding: 20px;
    text-align: center;
}
.index-header-block-body.with-skip-button {
    padding-bottom: 0;
}
.index-header-block-body.with-back-button {
    padding-top: 50px;
    position: relative;
}
.skip_btn {
    text-decoration: underline;
    color: var(--color-text-purple-darker);
}
.skip_btn:hover {
    color: var(--color-text-purple-darker);
    text-decoration: none;
}
.index-header-block .index-header-block-footer {
    position: relative;
    padding: 20px 20px;
    background: linear-gradient(white, rgba(241, 188, 84, 0.5));
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.index-header-block .index-header-block-footer::before {
    content: " ";
    display: block;
    height: 2px;
    position: absolute;
    top: 0;
    left: 10px;
    width: calc(100% - 20px);
    border-top: 2px dotted black;
}

.index-header-block .index-header-block-footer div {
    display: flex;
    flex-direction: row;
}
.index-header-block .index-header-block-footer div strong {
    height: 28px;
}

.index-header-block .index-header-block-footer p {
    padding-top: 0;
    padding-left: 15px;
    font-size: 13px;
}
@media (min-width: 768px) {
    .index-header-block {
        position: relative;
    }
    .index-header-block:not(.slide-in-from-side-on-load) {
        right: 50px;
    }
}
span.form-header {
    font-weight: bold;
    color: var(--color-text-tertiary);
    font-size: 22px;
    display: block;
    font-family: "Roboto Slab", serif;
}
small.form-header-sub {
    font-size: 13px;
    display: block;
    margin-top: 10px;
}
small.form-header-sub.form-header-sub-higher {
    margin-top: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
    span.form-header {
        font-size: 20px;
    }
}
@media (max-width: 400px) {
    span.form-header.form-header-large-text {
        font-size: 18px;
    }
}

.index-undertitle-bar {
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    background: white;
    border-bottom: 4px solid var(--color-secondary-light);
    color: var(--color-text-secondary);
    text-transform: uppercase;
}
@media (max-width: 575px) {
    .index-undertitle-bar {
        font-size: 22px;
    }
}
@media (max-width: 490px) {
    .index-undertitle-bar {
        font-size: 20px;
    }
}
@media (max-width: 440px) {
    .index-undertitle-bar {
        font-size: 18px;
    }
}
@media (max-width: 405px) {
    .index-undertitle-bar {
        font-size: 16px;
    }
}
@media (max-width: 355px) {
    .index-undertitle-bar {
        font-size: 14px;
    }
}

.special-highlight {
    background-color: var(--color-text-secondary);
    color: var(--color-secondary-lighter);
    display: inline-block;
    padding: 5px 10px;
    height: auto;
    width: auto;
    line-height: normal;
    border-radius: 1px;
    transform: rotate(-2deg);
    margin-left: 3px;
    margin-right: 3px;
}
.blue-accent {
    color: var(--color-text-blue);
}

.form-elements select {
    border: 1px solid black;
    color: var(--color-text-blue);
    font-weight: bold;
    text-align: center;
    padding: 10px 10px;
    border-radius: 3px;
    font-size: 16px;
    margin: 0 3px;
    font-family: "Roboto Slab", serif;
}
.form-elements select:first-child {
    margin-left: 0;
}
.form-elements select:last-child {
    margin-right: 0;
}
.form-elements input[type="text"],
.form-elements input[type="text"]:focus,
.form-elements input[type="password"],
.form-elements input[type="password"]:focus,
.form-elements input[type="number"],
.form-elements input[type="number"]:focus {
    border: 1px solid black;
    color: var(--color-text-blue);
    font-weight: bold;
    text-align: left;
    padding: 10px 10px;
    border-radius: 3px;
    font-size: 16px;
    margin: 0 3px;
    font-family: "Roboto Slab", serif;
    outline: 0;
    width: 100%;
}
.form-elements {
    display: block;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.form-elements label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-bottom: 0;
}
.form-elements input[type="number"] {
    max-width: 150px;
}
.form-elements input[type="text"]::placeholder,
.form-elements input[type="password"]::placeholder {
    font-weight: normal;
    font-style: italic;
    font-size: 13px;
    color: var(--color-form-placeholder);
}
.input-line-group {
    display: inline-block;
    position: relative;
}
.input-line-group input {
    padding-right: 50px !important;
}
.input-line-group span.input-line {
    position: absolute;
    right: 10px;
    top: 0;
    line-height: 46px;
}

@media (max-width: 355px) {
    .form-elements select {
        padding: 5px 0;
        margin: 0;
    }
}

.pink_btn {
    display: inline-block;
    color: white;
    font-size: 22px;
    background: var(--color-accent-green);
    border: 0;
    border-radius: 5px;
    padding: 6px 50px;
    font-weight: 700;
    font-family: "Roboto Slab", serif;
    cursor: pointer;
    line-height: 1.5 !important;
    text-shadow: none !important;
    text-transform: none !important;
}
.pink_btn:hover {
    background-color: var(--color-accent-green-dark);
    color: white !important;
    text-decoration: none;
}

.stepcount {
    float: right;
    text-align: center;
    padding-top: 22px;
}
.stepcount small {
    display: block;
    font-size: 12px;
    line-height: 14px;
}
.stepcount_bars {
    display: block;
    line-height: 2px;
}
.stepcount_bars .stepcount_bar {
    display: inline-block;
    width: 14px;
    height: 2px;
    background-color: white;
}
.stepcount_bars .stepcount_bar.stepcount_bar_filled {
    background-color: var(--color-secondary-lighter);
}
.pink-content-area {
    position: relative;
    background: var(--color-primary-dark);
    padding: 75px 0;
    color: white;
}
.pink-content-area.narrow-padding {
    padding: 40px 0;
}
.pink-content-area::before {
    content: " ";
    position: absolute;
    display: block;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 25px;
    background: var(--color-primary-lighter);
    border-bottom: 5px solid var(--color-accent-green-lime);
    z-index: 1000;
    transform: rotate(-0.5deg);
}
.pink-content-area.content-area-pinker {
    background: var(--color-primary-purple-darker);
}
.pink-content-area.content-area-pinkest {
    background: rgb(43, 33, 60);
}
.block-title {
    display: inline-block;
    transform: rotate(-3deg);
    font-size: 22px;
    font-weight: bold;
    font-family: "Roboto Slab", serif;
    padding: 6px 16px;
    border-radius: 2px;
    color: white;
}
h2.block-title {
    font-size: 22px;
}
.pink-content-area .block-title {
    background-color: var(--color-primary-purple-darker);
}
.white-content-area .block-title,
.content-page .block-title {
    background-color: var(--color-text-secondary);
}
.pink-content-area.content-area-pinker .block-title,
.single-content-page .block-title {
    background-color: var(--color-primary-purple-dark);
}
.pink-content-area.content-area-pinkest .block-title {
    background-color: var(--color-primary-purple-dark);
}

.dotted-line-left {
    position: relative;
}
@media (min-width: 768px) {
    .dotted-line-left {
        padding-left: 20px;
    }
}
.dotted-line-left::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: -30px;
    width: 2px;
    height: 100%;
    border-left: 2px dotted var(--color-primary-purple-darker);
}
footer .dotted-line-left::before {
    border-left-color: white;
}
.pink-content-area.content-area-pinker .dotted-line-left::before,
.pink-content-area.content-area-pinkest .dotted-line-left::before {
    border-left-color: white;
}
@media (max-width: 767px) {
    .dotted-line-left::before {
        display: none;
    }
}
.vinkjeslijst ol {
    counter-reset: myOrderedListItemsCounter;
    list-style-type: none;
}
.vinkjeslijst ul li,
.vinkjeslijst ol li {
    margin-top: 10px;
    font-size: 16px;
    position: relative;
    padding-left: 5px;
}
.vinkjeslijst ol li::before {
    counter-increment: myOrderedListItemsCounter;
    content: counter(myOrderedListItemsCounter) ".";
    background: var(--color-accent-green-forest);
    padding: 0 5px;
    position: absolute;
    top: 0;
    left: -27px;
}
.vinkjeslijst ul {
    list-style-type: none;
    padding-left: 0;
}
.vinkjeslijst ul li {
    background-image: url(/assets/images/checkmark_white.png);
    background-size: 20px 15px;
    background-position: 12px center;
    background-repeat: no-repeat;
    padding-left: 40px;
}
.vinkjeslijst.vinkjeslijst-blue ul li {
    background-image: url(/assets/images/checkmark_blue.png);
    font-size: 14px;
    color: var(--color-text-blue);
    margin-top: 5px;
}

.white-content-area {
    background: white;
    padding: 50px 0;
    color: var(--color-text-secondary);
    border-bottom: 4px solid var(--color-secondary-light);
}
img.example-report {
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--color-border-gray);
}

footer {
    width: 100%;
    padding: 40px 0;
    background: var(--color-footer);
    color: var(--color-primary-purple-darker);
}
body.page-chat footer {
    display: none;
}

.footer-logo {
    align-items: center;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 15px;
    font-weight: bold;
    line-height: 18px;
    position: relative;
    text-shadow: 2px 2px var(--color-primary-darker);
    filter: drop-shadow(-4px 4px 0px #9566e2);
}
.footer-logo::after {
    display: block;
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary-dark);
    z-index: -1;
    border-radius: 5px;
}
.footer-logo:hover {
    color: white;
    text-decoration: none;
}
.footer-logo small {
    font-weight: bold;
    font-size: 10px;
}
.footer-logo-holder {
    display: inline-block;
    transform: rotate(-3.5deg);
    position: relative;
    z-index: 1039;
    margin-bottom: 5px;
}
.footer-logo-holder::after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 15px;
    bottom: -18px;
    border: 12px solid;
    border-color: var(--color-primary-dark) var(--color-primary-dark) transparent
    transparent;
    filter: drop-shadow(0px 6px 0px #9566e2);
}
.footer-logo img {
    width: 18px;
    height: 17px;
    position: relative;
    top: -1px;
    margin-right: 5px;
}
.footer-extension {
    width: 130px;
    display: inline-block;
    font-weight: bold;
}
@media (max-width: 767px) {
    .footer-extension {
        width: calc(50% + 5px);
        text-align: right;
        padding-right: 10px;
    }
}
.pink-content-area a:not(.pink_btn),
footer a:not(.footer-logo) {
    color: var(--color-accent-yellow-bright);
    text-decoration: underline;
}
footer a:not(.footer-logo) {
    color: var(--color-primary-purple-darker);
}
.pink-content-area a:hover,
footer a:not(.footer-logo):hover {
    color: var(--color-accent-yellow-bright);
    text-decoration: none;
}
footer a:not(.footer-logo):hover {
    color: var(--color-primary-purple-darker);
}

footer .dotted-line-left::before {
    left: -15px;
    height: 130px;
}

.fade-in-on-load {
    opacity: 0;
    -webkit-animation: fadein 2s forwards;
    -moz-animation: fadein 2s forwards;
    -ms-animation: fadein 2s forwards;
    -o-animation: fadein 2s forwards;
    animation: fadein 2s forwards;
}
@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-from-side-on-load {
    right: -1000px;
    -webkit-animation: slidein 2s forwards;
    -moz-animation: slidein 2s forwards;
    -ms-animation: slidein 2s forwards;
    -o-animation: slidein 2s forwards;
    animation: slidein 2s forwards;
}
@keyframes slidein {
    from {
        right: -1000px;
    }
    to {
        right: 50px;
    }
}
@-moz-keyframes slidein {
    from {
        right: -1000px;
    }
    to {
        right: 50px;
    }
}
@-webkit-keyframes slidein {
    from {
        right: -1000px;
    }
    to {
        right: 50px;
    }
}
@-ms-keyframes slidein {
    from {
        right: -1000px;
    }
    to {
        right: 50px;
    }
}

.fade-in-on-load.animation-delayed,
.slide-in-from-side-on-load.animation-delayed {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

p {
    font-family: "Roboto Slab", serif;
}
.uitleg-margin {
    margin-top: 0;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .mobile-max-width-container {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

.input-line {
    font-size: 15px;
    display: inline-block;
    margin-left: 5px;
}

.back-btn {
    color: var(--color-text-blue);
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 12px;
}
.back-btn:hover {
    color: var(--color-text-blue);
}
.back-btn i {
    font-size: 30px;
    position: relative;
    top: 5px;
    margin-right: 6px;
}
.back-btn:hover i {
    text-decoration: none;
}

#cta_calculation {
    position: fixed;
    top: -80px;
    left: 0;
    width: 100%;
    height: 76px;
    background-color: white;
    border-bottom: 4px solid var(--color-secondary-light);
    z-index: 10;
}
#cta_calculation h2 {
    line-height: 76px;
}
#cta_calculation .pink_btn {
    margin-top: 14px;
    padding: 6px 30px;
}
@media (max-width: 767px) {
    #cta_calculation {
        height: 60px;
        top: -64px;
    }
    #cta_calculation h2 {
        font-size: 18px;
        line-height: 60px;
    }
    #cta_calculation .pink_btn {
        font-size: 18px;
        padding: 6px 20px;
        margin-top: 9px;
    }
}
@media (max-width: 465px) {
    #cta_calculation h2 {
        font-size: 16px;
        line-height: 60px;
    }
    #cta_calculation .pink_btn {
        font-size: 16px;
        padding: 6px 10px;
        margin-top: 9px;
    }
}
@media (max-width: 400px) {
    #cta_calculation h2 {
        font-size: 14px;
        line-height: 60px;
    }
    #cta_calculation .pink_btn {
        font-size: 16px;
        padding: 6px 10px;
        margin-top: 9px;
    }
}
.visible-real-small {
    display: none;
}
@media (max-width: 360px) {
    .hidden-real-small {
        display: none;
    }
    .visible-real-small {
        display: inline;
    }
}

.menu .fa {
    position: absolute;
    font-size: 30px;
    top: -6px;
    right: 5px;
}
.index-header.index-header-small {
    height: 30px;
    border-bottom: 4px solid var(--color-secondary-light);
    background-position: top center;
}
.content-page {
    padding: 50px 30px;
    -webkit-box-shadow: 0 0 20px var(--color-border-gray-dark);
    box-shadow: 0 0 20px var(--color-border-gray-dark);
    margin-bottom: 50px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
@media (max-width: 767px) {
    .content-page {
        -webkit-box-shadow: none;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

input[type="text"].custom-input,
input[type="text"].custom-input:focus,
input[type="number"].custom-input,
input[type="number"].custom-input:focus,
input[type="password"].custom-input,
input[type="password"].custom-input:focus,
input[type="email"].custom-input,
input[type="email"].custom-input:focus,
textarea.custom-input,
textarea.custom-input:focus {
    border: 1px solid black;
    color: var(--color-text-blue);
    font-weight: bold;
    text-align: left;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 16px;
    margin: 0 3px;
    font-family: "Roboto Slab", serif;
    outline: 0;
    width: 100%;
}
textarea.custom-input,
textarea.custom-input:focus {
    resize: vertical;
}
select.custom-input,
select.custom-input:focus {
    border: 1px solid black;
    color: var(--color-text-blue);
    font-weight: bold;
    text-align: left;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 16px;
    margin: 0 3px;
    font-family: "Roboto Slab", serif;
    width: 100%;
    outline: 0;
}
label.custom-label {
    line-height: 36px;
    font-weight: bold;
    font-size: 16px;
    font-family: "Roboto Slab", serif;
}
.content-page a:not(.pink_btn) {
    color: var(--color-text-primary);
    text-decoration: underline;
}
.content-page a:not(.pink_btn):hover {
    color: var(--color-text-primary);
    text-decoration: none;
}

hr {
    border: 0;
    border-top: 2px dotted #222222;
}

.mobile-menu-selector {
    display: none;
}
#mobile-menu {
    display: none;
}
@media (max-width: 767px) {
    .mobile-menu-selector {
        display: block;
        position: absolute;
        top: 19px;
        right: 23px;
        cursor: pointer;
        width: 60px;
        height: 20px;
    }

    .mobile-menu-selector .bar {
        display: block;
        position: absolute;
        width: 30px;
        height: 3px;
        background-color: white;
        border-radius: 5px;
        right: 5px;
    }

    .mobile-menu-selector .bar:nth-child(1) {
        top: 0;
    }

    .mobile-menu-selector .bar:nth-child(2) {
        top: 8px;
        right: -5px;
    }

    .mobile-menu-selector .bar:nth-child(3) {
        top: 16px;
    }
}
@media (max-width: 767px) {
    #mobile-menu {
        width: 100%;
        min-height: calc(100% - 52px);
        position: absolute;
        top: 82px;
        left: 100%;
        background: #9e80e2;
        z-index: 9001;
        padding-top: 25px;
    }
    body.page-chat #mobile-menu {
        top: 45px;
        min-height: calc(100% - 45px);
    }
    #mobile-menu h3 {
        color: white;
        text-align: center;
    }
    #mobile-menu ul {
        list-style-type: none;
        margin-top: 10px;
        padding: 0 10px;
    }
    #mobile-menu ul li {
        text-align: center;
    }
    #mobile-menu ul li a {
        border: 1px solid black;
        background: #543d8b;
        color: white;
        font-size: 24px;
    }
    #mobile-menu ul li a:hover,
    #mobile-menu ul li a:active,
    #mobile-menu ul li.active a {
        border: 1px solid black;
        color: var(--color-text-primary);
        background: #f3b842;
        text-decoration: none;
    }
    #mobile-menu ul li a {
        display: inline-block;
        font-size: 16px;
        padding: 5px 15px;
        margin: 10px 5px 10px 5px;
    }
    html {
        width: 100%;
        height: 100%;
    }
    body.mobile-menu-active {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    body.mobile-menu-active #header-top {
        position: absolute;
        top: 0;
        left: 0;
    }
    body.mobile-menu-active #header-area {
        height: 100%;
        width: 100%;
        overflow-y: auto;
        position: absolute;
        top: 0;
        left: 0;
    }
    body.mobile-menu-active header {
        z-index: 2001;
    }
    body.mobile-menu-active header .logo {
        z-index: 2002;
    }
}

.extra-checkbox {
    position: relative;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--color-border-light);
    color: var(--color-border-light);
    border-radius: 4px;
    line-height: 30px;
    text-align: left;
    padding: 0 15px;
    cursor: pointer;
}
.extra-checkbox input[type="checkbox"] {
    margin-right: 8px;
    position: relative;
    top: 1px;
    cursor: pointer;
}
.extra-checkbox label {
    margin: 0;
    cursor: pointer;
}
.extra-checkbox .extra-pricing {
    line-height: 14px;
    color: white;
    background: var(--color-accent-green);
    padding: 4px 6px;
    border-radius: 2px;
    position: absolute;
    top: 4px;
    right: 6px;
}

.index-header-pricing-balloon {
    position: absolute;
    right: -80px;
    top: 90px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--color-accent-green);
    line-height: 150px;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: white;
    border: 2px solid rgb(28, 143, 90);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}
.index-header-pricing-balloon span {
    color: white;
    position: absolute;
    top: -25px;
    left: 25px;
    font-size: 14px;
    font-weight: bold;
}
.index-header-pricing-balloon span strong {
    color: var(--color-secondary-lighter);
    text-decoration: line-through;
}
@media (max-width: 767px) {
    .index-header-pricing-balloon {
        right: 10px;
        top: 120px;
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 25px;
    }
    .index-header-pricing-balloon span {
        font-size: 12px;
        left: 20px;
        top: -20px;
    }
}
.min-width-235 {
    min-width: 235px;
}
.max-width-350 {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}
select.bankselect {
    position: relative;
    color: var(--color-border-light);
    border-color: var(--color-border-light);
}
select.bankselect:focus {
    outline: 0;
}
.select-holder {
    position: relative;
    display: inline-block;
    background: white;
}
.select-holder select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    padding-right: 30px;
}
.select-holder::before {
    content: "\f107";
    display: block;
    position: absolute;
    font-family: FontAwesome;
    font-size: 24px;
    top: 5px;
    right: 10px;
    color: var(--color-text-blue);
}
.select-holder.select-holder-pink::before {
    color: var(--color-border-light);
}
.select-holder.select-holder-max-width,
.select-holder.select-holder-max-width select {
    width: 100%;
}
.select-holder.select-holder-max-width::before {
    top: 0;
}
.merkmodel-select,
.merkmodel-select select {
    width: 100%;
    max-width: 250px;
}

.bpm-resultaat {
    position: relative;
    width: 100%;
    text-align: left;
    background: rgb(229, 229, 229);
    border: 1px solid var(--color-accent-green-forest);
    height: 52px;
    line-height: 50px;
    border-radius: 5px;
    color: var(--color-text-primary);
    padding-left: 150px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}
.bpm-resultaat.bpm-resultaat-best {
    background: #dafbeb;
    color: #1f8557;
}
.bpm-resultaat span {
    width: 130px;
    height: 50px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(145, 145, 145);
}
.bpm-resultaat span small {
    position: absolute;
    top: 4px;
    left: 0;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    font-weight: normal;
}
.bpm-resultaat.bpm-resultaat-best span {
    background: var(--color-accent-green-forest);
    line-height: 60px;
}
.bpm-resultaat.bpm-resultaat-best span small {
    color: var(--color-secondary-lighter);
}
.bpm-resultaat .checkbox {
    position: absolute;
    right: 0;
    top: 1px;
    padding-right: 15px;
    height: 100%;
    display: block;
}

.block-bpm-resultaat-header {
    background: var(--color-secondary-lighter);
    border: 1px solid #222222;
    border-radius: 4px;
    padding: 10px 15px;
}
.block-bpm-resultaat-header span {
    color: #1f8557;
    font-weight: bold;
}
.uitleg-margin a {
    color: var(--color-text-purple-darker);
    text-decoration: underline;
}
.uitleg-margin a:hover {
    color: var(--color-text-purple-darker);
    text-decoration: none;
}

.form-header-with-bpm-formulier {
    max-width: 280px;
    margin-left: 140px;
    margin-right: auto;
    text-align: left;
    padding-left: 10px;
}
.vinkjeslijst-with-bpm-formulier {
    max-width: 280px;
    margin-left: 140px;
    margin-right: auto;
}
@media (max-width: 991px) {
    .bpm-formulier-small {
        display: none;
    }
    .form-header-with-bpm-formulier {
        margin-left: auto;
    }
    .vinkjeslijst-with-bpm-formulier {
        margin-left: auto;
    }
}

@media (max-width: 991px) {
    .page-resultaat .index-header {
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-color: var(--color-accent-green);
        height: auto;
        padding-bottom: 30px;
    }
}
@media (min-width: 992px) {
    .page-resultaat .index-header-block {
        position: absolute;
    }
    .page-resultaat .index-undertitle-bar {
        text-align: left;
        font-size: 22px;
    }
    .page-resultaat .index-undertitle-bar div {
        max-width: 1140px;
        padding-left: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-resultaat .bpm-resultaten .bpm-resultaat:nth-child(n + 11) {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1100px) {
    .page-resultaat .index-undertitle-bar {
        font-size: 20px;
    }
}

.resultaten-loader {
    min-height: 200px;
    position: relative;
}
.resultaten-loader img {
    position: absolute;
    top: 48px;
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
}
.resultaten-loader strong {
    display: block;
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.resultaten-loader span {
    display: block;
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: 160px;
    left: 0;
    width: 100%;
    color: #2ea56f;
}

@media (max-width: 415px) {
    .bpm-resultaat span {
        width: 90px;
        font-size: 18px;
    }
    .bpm-resultaat {
        font-size: 14px;
        padding-left: 110px;
    }
}
@media (max-width: 335px) {
    .bpm-resultaat {
        padding-left: 100px;
    }
}

.mobile-menu-copyright {
    display: block;
    color: white;
    text-align: center;
    margin-top: 30px;
}

.header-bigtext {
    margin-top: 100px;
    color: white;
    font-size: 38px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 2px 2px var(--color-primary-purple);
    line-height: 55px;
}
.header-bigtext span.biggest {
    display: inline-block;
    transform: rotate(-3deg);
    background: var(--color-primary-purple);
    border-radius: 5px;
    padding: 0 15px;
    text-shadow: none;
}
.header-bigtext span.sexchat {
    font-size: 50px;
    padding-top: 5px;
    display: inline-block;
}
@media (max-width: 767px) {
    .header-bigtext span.biggest {
        transform: none;
    }
}
.header-bigtext small {
    display: block;
    font-size: 36px;
    font-weight: 300;
    line-height: 40px;
}
.header-bigtext small strong {
    color: var(--color-accent-yellow-light);
}
.header-bigtext small img {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: 10px;
}
.header-bigtext .online-count {
    display: inline-block;
    background: var(--color-primary-purple);
    width: auto;
    font-size: 20px;
    color: white;
    line-height: 20px;
    border-radius: 5px;
    padding: 8px 15px 8px 40px;
    position: relative;
    text-transform: none;
    font-weight: normal;
    cursor: pointer;
    border: 2px solid var(--color-primary-purple);
}
.header-bigtext .online-count:hover {
    border: 2px solid #f1ca77;
}
.header-bigtext .online-count::before {
    content: " ";
    display: block;
    position: absolute;
    top: 10px;
    left: 15px;
    width: 15px;
    height: 15px;
    border: 1px solid white;
    background: var(--color-accent-green);
    border-radius: 50%;
}
.header-bigtext .online-count span {
    color: var(--color-accent-yellow-light);
    font-weight: bold;
}
#form_register .online-count {
    margin: 40px 0;
    display: inline-block;
    background: white;
    width: auto;
    font-size: 20px;
    font-weight: bold;
    color: #222;
    line-height: 20px;
    border-radius: 5px;
    padding: 10px 15px 10px 40px;
    position: relative;
    text-transform: none;
    border: 1px solid var(--color-border-gray-dark);
    cursor: pointer;
}
#form_register .online-count::before {
    content: " ";
    display: block;
    position: absolute;
    top: 12px;
    left: 15px;
    width: 15px;
    height: 15px;
    background: var(--color-accent-green);
    border-radius: 50%;
}
.header-bigtext ul {
    font-size: 16px;
    text-transform: none;
    line-height: 18px;
    list-style-type: none;
    padding-left: 0;
    text-shadow: none;
    margin-top: 30px;
}
.header-bigtext ul li {
    margin-top: 10px;
    padding-left: 35px;
    position: relative;
}
.header-bigtext ul li::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    width: 22px;
    height: 16px;
    background-image: url(/assets/images/checkmark_white.png);
}
.header-bigtext ul li.icon-privacy::before {
    width: 14px;
    background-image: url(/assets/images/secure_privacy_icon.png);
    left: 4px;
}

.members-online {
    width: calc(100% - 30px);
    border: 1px solid var(--color-primary-lighter);
    margin-top: 20px;
    border-radius: 5px;
    padding: 2px;
    cursor: pointer;
}

.members-online .title {
    background: var(--color-primary-purple);
    width: 100%;
    font-size: 20px;
    color: white;
    line-height: 20px;
    padding: 8px 15px 8px 40px;
    position: relative;
    text-transform: none;
    font-weight: normal;
    display: block;
    border-radius: 2px;
}
.members-online .title::before {
    content: " ";
    display: block;
    position: absolute;
    top: 10px;
    left: 15px;
    width: 15px;
    height: 15px;
    border: 1px solid white;
    background: var(--color-accent-green);
    border-radius: 50%;
}
.members-online .title strong {
    color: var(--color-accent-yellow-light);
    font-weight: bold;
}
.members-online .memberlist {
    text-align: center;
    margin-top: 20px;
    padding: 0 19px;
}
.page-chat .chatbox-holder,
.chatbox-holder.chatbox-other-page {
    padding-top: 50px;
}
.members-online .memberlist a {
    color: black !important;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin: 2px 3px;
    background: #e3d9f8;
    /*color:#2d2e61;*/
    line-height: 14px;
    font-size: 14px;
    padding: 3px 6px;
    border-radius: 3px;
    border: 2px solid #e3d9f8;
}
body:not(.logged-in) .members-online .memberlist a {
    text-shadow: 0 0 7px black;
    color: transparent !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.members-online .memberlist a:hover {
    border-color: var(--color-pink);
}
.members-online .memberlist a.gold {
    background: var(--color-primary-purple);
    color: var(--color-accent-yellow-gold);
}
a.no-default-decoration {
    text-decoration: none !important;
}
a.no-default-decoration:hover {
    text-decoration: underline !important;
}

@media (max-width: 767px) {
    .header-bigtext {
        text-align: center;
        margin-top: 60px;
    }
    .header-bigtext ul {
        text-align: left;
        width: auto;
        display: inline-block;
    }
    .members-online {
        width: 100%;
    }
}

.precache {
    display: none;
}

.chatbox-holder {
    background: linear-gradient(
            180deg,
            var(--color-primary),
            var(--color-primary-light)
    );
    height: calc(100vh - 372px);
    min-height: 650px;
    display: flex;
    align-items: stretch;
    padding: 0 25px 50px 25px;
}
body.small-footer .chatbox-holder {
    height: calc(100vh - 80px);
}
@media (max-width: 767px) {
    .chatbox-holder,
    body.small-footer .chatbox-holder {
        height: calc(100vh - 52px);
    }
}
.chatbox {
    width: 100%;
    max-width: 1100px;
    max-height: 600px;
    margin-left: auto;
    margin-right: auto;
    background: var(--color-primary-purple-darker);
    position: relative;
    border-radius: 0 3px 3px 3px;
}
.chatbox .logo-holder {
    display: block;
    position: absolute;
    top: -10px;
    left: -10px;
    transform: rotate(-3.5deg);
    z-index: 1039;
}
.chatbox .logo-holder a {
    align-items: center;
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 15px;
    font-weight: bold;
    line-height: 34px;
    position: relative;
    z-index: 1500;
    text-shadow: 2px 2px var(--color-primary-darker);
}
.chatbox .logo-holder a small {
    font-size: 16px;
    font-weight: bold;
}
.chatbox .logo-holder a::after {
    display: block;
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary-purple-dark);
    z-index: -1;
    border-radius: 3px;
}
.chatbox .logo-holder a:hover {
    text-decoration: none;
}
.chatbox .logo-holder a img {
    width: 35px;
    height: 34px;
    position: relative;
    top: -1px;
    margin-right: 5px;
}
.chatbox .logo-holder a:hover img {
    transform: rotate(-10deg);
}

.chatbox .menubar {
    width: 100%;
    height: 85px;
    background: var(--color-primary-purple-darker);
    text-align: right;
    padding-right: 10px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    position: relative;
}
.chatbox .menubar a {
    display: inline-block;
    background: var(--color-accent-orange);
    padding: 2px 13px;
    border-radius: 3px;
    color: var(--color-text-purple-dark);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    margin-right: 10px;
    margin-top: 31px;
}
.chatbox .menubar a:hover {
    text-decoration: none;
    background: var(--color-accent-orange-dark);
}
body.webcam-enabled .chatbox .menubar .webcam-enabled-visible a {
    margin-top: 12px;
    display: block;
    text-align: center;
}
body .chatbox .menubar .chat-button-holders div {
    display: inline-block;
    max-width: 200px;
}
body.chatroom-active .hidden-chatroom {
    display: none !important;
}
#btn_start_webcam_private_header,
#btn_start_webcam_private_header_mobile {
    display: block;
    font-size: 18px;
    padding-top: 11px;
    text-align: left;
    width: 100%;
    height: 59px;
    top: -9px;
    position: relative;
    padding-left: 45px;
    background-image: url(/assets/images/webcam_icon_start_cam.png);
    background-position: 15px center;
    background-size: 24px;
    background-repeat: no-repeat;
}
body.chatroom-active #btn_start_webcam_private_header {
    padding-right: 0;
    background-position: 10px center;
    padding-left: 40px;
}
#btn_start_webcam_private_header_mobile {
    position: absolute;
    top: 4px;
    right: 7px;
    background-color: var(--color-accent-orange);
    display: block;
    color: var(--color-text-purple-dark);
    height: 40px;
    width: auto;
    padding: 3px 10px 3px 35px;
    font-weight: bold;
    font-size: 15px;
    background-size: 20px;
    background-position: 10px center;
    border-radius: 3px;
}
#btn_start_webcam_private_header_mobile:hover {
    text-decoration: none;
}
body:not(.webcam-enabled) #btn_start_webcam_private_header,
body:not(.webcam-enabled) #btn_start_webcam_private_header_mobile {
    display: none;
}
#btn_start_webcam_private_header span,
#btn_start_webcam_private_header_mobile span {
    line-height: 0;
    display: block;
    font-size: 12px;
}
#btn_start_webcam_private_header i,
#btn_start_webcam_private_header_mobile i {
    font-style: normal;
}
body.webcam-streaming:not(.webcam-streaming-private-other)
#btn_start_webcam_private_header
i.webcam_start,
body.webcam-streaming.webcam-broadcasting.chatroom-active
#btn_start_webcam_private_header
i.webcam_start,
body.webcam-streaming:not(.webcam-streaming-private-other)
#btn_start_webcam_private_header_mobile
i.webcam_start {
    display: none;
}
#btn_start_webcam_private_header i.webcam_stop,
#btn_start_webcam_private_header_mobile i.webcam_stop {
    display: none;
}
body.webcam-streaming:not(.webcam-streaming-private-other)
#btn_start_webcam_private_header
i.webcam_stop,
body.webcam-streaming.webcam-broadcasting.chatroom-active
#btn_start_webcam_private_header
i.webcam_stop,
body.webcam-streaming:not(.webcam-streaming-private-other)
#btn_start_webcam_private_header_mobile
i.webcam_stop {
    display: inline;
}
body.webcam-streaming:not(.webcam-streaming-private-other)
#btn_start_webcam_private_header,
body.webcam-streaming.webcam-broadcasting.chatroom-active
#btn_start_webcam_private_header,
body.webcam-streaming:not(.webcam-streaming-private-other)
#btn_start_webcam_private_header_mobile {
    color: white;
    background-color: var(--color-bg-dark);
    background-image: url(/assets/images/webcam_icon_stop_cam.png);
}

.chatbox .menubar .user-profile {
    display: flex;
    position: absolute;
    height: 50px;
    line-height: 12px;
    width: auto;
    top: 0;
    left: 250px;
    flex-direction: row;
    padding: 0 15px;
    text-align: left;
}
.chatbox .menubar .user-profile a {
    padding: 0;
    margin: 0;
    background: none;
    color: white;
    font-size: 11px;
    text-transform: none;
    text-decoration: underline;
    font-weight: normal;
}
.chatbox .menubar .user-profile a:hover {
    text-decoration: none;
}
.chatbox .menubar .user-profile .profile-info {
    padding-left: 12px;
    padding-top: 24px;
}
body.webcam-enabled .chatbox .menubar .user-profile .profile-info {
    padding-top: 13px;
}
.chatbox .menubar .user-profile .profile-info strong {
    color: white;
    display: block;
}
.chatbox .menubar .user-profile .profile-info .profile-distance {
    display: block;
    color: white;
    font-size: 11px;
    margin-top: 5px;
}
.chatbox .menubar .user-profile .profile-image {
    cursor: pointer;
}

.chatbox .division {
    width: 100%;
    height: calc(100% - 85px);
    position: relative;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
.chatbox .division .left-column {
    width: 250px;
    height: 100%;
    background: var(--color-primary-purple-darker);
    display: block;
    position: relative;
    box-sizing: border-box;
    border-bottom-left-radius: 3px;
}

.chatbox .division .left-column .user-profile {
    height: 100px;
    width: 100%;
    background: var(--color-primary-purple-darker);
}
.chatbox .division .left-column .user-profile .own-profile .profile-image {
    cursor: pointer;
}
.chatbox
.division
.left-column
.user-profile
.own-profile
.profile-image:hover
.actual-image {
    border-color: #f3b842;
}
.chatbox .division .left-column .chatlist {
    /*height:calc(100% - 100px);*/
    height: 100%;
    max-height: 750px;
    width: 100%;
    background: var(--color-primary-purple-darker);
    box-sizing: border-box;
    position: absolute;
    /*top:100px;*/
    top: 0;
    left: 0;
    padding-right: 5px;
    border-bottom-left-radius: 3px;
}
.chatbox .division .left-column .chatlist .chatselectors,
.chatbox .division .left-column .chatlist .offline-chatselectors {
    position: absolute;
    top: -85px;
    left: 0;
    width: 100%;
    height: calc(100% + 85px);
    overflow-x: hidden;
    overflow-y: auto;
    border-bottom-left-radius: 3px;
    background: var(--color-primary-purple-darker);
}
@media (max-width: 767px) {
    .chatbox .division .left-column .chatlist .chatselectors,
    .chatbox .division .left-column .chatlist .offline-chatselectors {
        top: 0;
        height: 100%;
        background: var(--color-primary-purple-light);
    }
}
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row,
.chatbox .division .right-column .offline-chatselectors .chatselector-row {
    width: 100%;
    height: 100px;
    cursor: pointer;
}
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row:nth-child(odd),
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row:nth-child(odd) {
    background: var(--color-primary-purple-light);
}
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row:nth-child(even),
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row:nth-child(even) {
    background: var(--color-primary-purple-lighter);
}
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row,
.chatbox .division .right-column .offline-chatselectors .chatselector-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row
.chatselector-col,
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row
.chatselector-col {
    flex-grow: 1;
    height: 75px;
    text-align: center;
    max-width: 25%;
    position: relative;
}
@media (max-width: 767px) {
    .chatbox
    .division
    .left-column
    .chatlist
    .offline-chatselectors
    .chatselector-row
    .chatselector-col,
    .chatbox
    .division
    .right-column
    .offline-chatselectors
    .chatselector-row
    .chatselector-col {
        max-width: 33%;
    }
}
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector,
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector {
    width: 60px;
    height: 60px;
    display: inline-block;
    background: white;
    border-radius: 50%;
}
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
.profile-image,
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
.profile-image {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
.profile-image
.actual-image,
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
.profile-image
.actual-image {
    width: 60px;
    height: 60px;
    border: 1px solid white;
    background: black;
    border-radius: 50%;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
.profile-image
.actual-image,
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
.profile-image
.actual-image {
    border-radius: 15px;
}

.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
div.uname-holder,
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
div.uname-holder {
    left: 0;
    bottom: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
div.uname-holder
span,
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
div.uname-holder
span {
    background: white;
    border-radius: 2px;
    font-size: 12px;
    line-height: 12px;
    position: relative;
    padding: 0 5px 0 16px;
}

.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
div.uname-holder
span::before,
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector
div.uname-holder
span::before {
    content: " ";
    display: block;
    position: absolute;
    left: 4px;
    top: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-status-offline);
}
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector.online-last-week
div.uname-holder
span::before,
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector.online-last-week
div.uname-holder
span::before {
    background: var(--color-status-away);
}
.chatbox
.division
.left-column
.chatlist
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector.online-still
div.uname-holder
span::before,
.chatbox
.division
.right-column
.offline-chatselectors
.chatselector-row
.chatselector-col
.offline-chatselector.online-still
div.uname-holder
span::before {
    background: var(--color-accent-green-bright);
}

.chatbox .division .left-column .chatlist .chatselector {
    width: 100%;
    height: 50px;
    cursor: pointer;
}
.chatbox .division .left-column .chatlist .chatselector.active {
    cursor: default;
}
.chatbox .division .left-column .chatlist .chatselector:nth-child(odd) {
    background: var(--color-primary-purple-light);
}
.chatbox .division .left-column .chatlist .chatselector:nth-child(even) {
    background: var(--color-primary-purple-lighter);
}
.chatbox .division .left-column .chatlist .chatselector.has_webcam {
    background: var(--color-accent-orange);
}
.chatbox
.division
.left-column
.chatlist
.chatselector.has_webcam
.profile-info
strong {
    color: var(--color-text-purple-dark);
}
.chatbox
.division
.left-column
.chatlist
.chatselector.has_webcam
.profile-info
span {
    color: var(--color-text-purple-dark);
    padding-left: 14px;
    background-image: url(/assets/images/webcam_icon_start_cam.png);
    background-size: 10px;
    background-position: left center;
    background-repeat: no-repeat;
}

.chatbox
.division
.left-column
.chatlist
.chatselector:not(.not_clickable):hover,
.chatbox .division .left-column .chatlist .chatselector.active {
    background: var(--color-accent-green-light);
    border-radius: 3px;
}
.chatbox
.division
.left-column
.chatlist
.chatselector.has_webcam:not(.not_clickable):hover,
.chatbox .division .left-column .chatlist .chatselector.has_webcam.active {
    background: var(--color-accent-orange-dark);
}
.chatbox .division .right-column {
    display: inline-block;
    width: calc(100% - 250px);
    height: 100%;
    background: var(--color-primary-purple-dark);
    position: absolute;
    top: 0;
    left: 250px;
    border-bottom-right-radius: 3px;
}

.profile {
    display: flex;
    flex-direction: row;
    padding: 0 15px;
}
.profile .profile-image,
.user-profile .profile-image {
    flex-grow: 1;
    max-width: 40px;
    padding-top: 6px;
}
.user-profile .profile-image {
    max-width: 58px;
}
.user-profile .profile-image {
    padding-top: 8px;
}
.profile .profile-image .actual-image,
.user-profile .profile-image .actual-image {
    width: 38px;
    height: 38px;
    border: 1px solid white;
    background: black;
    border-radius: 50%;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.user-profile .profile-image .actual-image {
    width: 60px;
    height: 60px;
}
.profile .profile-image .actual-image {
    position: relative;
}
.profile .profile-image .actual-image::before {
    content: " ";
    display: block;
    position: absolute;
    left: -1px;
    top: -1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.profile.is_online .profile-image .actual-image::before {
    background: var(--color-accent-green-bright);
}
.profile.is_offline .profile-image .actual-image::before {
    background: var(--color-status-offline);
}
.profile.is_offline.online_last_week .profile-image .actual-image::before {
    background: var(--color-status-away);
}
.profile .profile-info {
    padding-top: 9px;
    padding-left: 15px;
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
}
.profile .profile-info strong {
    color: white;
    display: block;
}
.profile .profile-info span {
    display: block;
    color: var(--color-accent-green-bright);
}
.profile.is_gold .profile-info strong {
    color: var(--color-accent-yellow-gold);
}
.chatbox
.division
.left-column
.chatlist
.chatselector:not(.has_webcam):hover
.profile:not(.is_gold)
.profile-info
strong,
.chatbox
.division
.left-column
.chatlist
.chatselector:not(.has_webcam).active
.profile:not(.is_gold)
.profile-info
strong {
    color: white;
}
.chatbox
.division
.left-column
.chatlist
.chatselector:not(.has_webcam):hover
.profile
.profile-info
span,
.chatbox
.division
.left-column
.chatlist
.chatselector:not(.has_webcam).active
.profile
.profile-info
span {
    color: white;
}
.chatbox
.division
.left-column
.chatlist
.chatselectors
.chatselector:first-child {
    border-top-right-radius: 3px;
}
.chatbox
.division
.left-column
.chatlist
.chatselectors
.chatselector:last-child {
    border-bottom-right-radius: 3px;
}

.own-profile {
    display: flex;
    flex-direction: row;
    padding: 5px 15px;
}
.own-profile .profile-image {
    flex-grow: 1;
    max-width: 50px;
    padding-top: 6px;
}
.own-profile .profile-image .actual-image {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    background: black;
    border-radius: 50%;
    background-size: auto 100%;
    background-position: center;
}
.own-profile.is_online .profile-image .actual-image {
    position: relative;
}
.own-profile.is_online .profile-image .actual-image::before {
    content: " ";
    display: block;
    position: absolute;
    left: -1px;
    top: -1px;
    width: 10px;
    height: 10px;
    background: var(--color-accent-green-bright);
    border-radius: 50%;
}
.own-profile .profile-info {
    padding-top: 9px;
    padding-left: 15px;
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
}
.own-profile .profile-info strong {
    color: white;
    display: block;
}
.own-profile .profile-info strong small {
    font-size: 13px;
}
.own-profile.is_gold .profile-info strong {
    color: var(--color-accent-yellow-gold);
}
.own-profile.is_gold .profile-info strong small {
    color: white;
}
.own-profile .profile-info a {
    color: var(--color-accent-yellow-cream);
    font-size: 11px;
    display: inline-block;
    margin-top: 2px;
    text-decoration: none;
}
.own-profile .profile-info a:hover {
    color: var(--color-accent-yellow-cream);
    text-decoration: none;
}
.own-profile .profile-info a u {
    text-decoration: underline;
}
.own-profile .profile-info a:hover u {
    text-decoration: none;
}
.own-profile .profile-info a img {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 3px;
}
.chatlist-header {
    display: block;
    position: absolute;
    top: -123px;
    left: 0;
    width: 500px;
}
.chatlist-header .tab {
    display: inline-block;
    color: white;
    background: rgb(33, 24, 54);
    font-size: 10px;
    height: 32px;
    line-height: 32px;
    padding: 0 0;
    position: relative;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    cursor: pointer;
    width: 125px;
    text-align: center;
    top: 1px;
}
.chatlist-header .tab.active {
    line-height: 35px;
    height: 41px;
    top: -3px;
    padding-top: 3px;
    background: var(--color-primary-purple-light);
    font-size: 12px;
    white-space: nowrap;
}
.chatlist-header .tab[data-tab-id="share"].active {
    background: var(--color-primary-purple-darkest);
}
.chatlist-header .tab:not(.active):hover {
    background: #453c5c;
}
.chatlist-header .tab.active[data-tab-id="offline"] {
    background: var(--color-primary-purple-darkest);
}
.chatlist-header .tab.active[data-tab-id="online"] {
    background: #504667;
}
.chatlist-header .tab strong {
    display: inline-block;
    color: white;
    text-transform: uppercase;
    padding-left: 15px;
    position: relative;
}
.chatlist-header .tab[data-tab-id="online"] strong {
    color: var(--color-accent-green-bright);
}
.chatlist-header .tab strong::before {
    content: " ";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 13px;
    border-radius: 5px;
    background: white;
}
.chatlist-header .tab.active strong::before {
    top: 13px;
}
.chatlist-header .tab[data-tab-id="online"] strong::before {
    background: var(--color-accent-green-bright);
}
.chatlist-header .tab[data-tab-id="contacts"] strong::before {
    border-radius: 0;
    background-color: transparent;
    background-image: url(/assets/images/chat_icon.png);
    background-position: center;
    background-size: cover;
    width: 15px;
    height: 11px;
    left: -5px;
    top: 11px;
}
.chatlist-header .tab[data-tab-id="offline"] strong::before {
    /*background:var(--color-status-offline);*/
    background: var(--color-accent-green-bright);
}
.chatlist-header .tab[data-tab-id="share"] strong::before {
    border-radius: 0;
    background-color: transparent;
    background-image: url(/assets/images/new_icon.png);
    background-position: center;
    background-size: cover;
    width: 15px;
    height: 11px;
    left: -5px;
    top: 11px;
}
.chatlist-header .tab span {
    font-size: 11px;
    display: inline-block;
    margin-left: 5px;
}

.chatbox .division .right-column .chat-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    overflow-y: auto;
    padding: 15px 30px 30px 30px;
}
body:not(.chatroom-active)
.chatbox
.division
.right-column
.chat-content.no-credits {
    padding-bottom: 90px;
}
.chatbox .division .right-column .chat-input {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--color-primary-purple-darker);
    border-bottom-right-radius: 3px;
}
.chat-message {
    position: relative;
    margin-top: 15px;
}
.chat-message.from_me {
    text-align: right;
}
.chat-message.webcam-request {
    text-align: center;
}
.chat-message .profile-image {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid white;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    top: -4px;
}
.chat-message.from_other .profile-image {
    left: 0;
}
.chat-message.from_me .profile-image {
    right: 0;
}
.chat-message span,
.chat-message .chat-message-span {
    display: inline-block;
    font-size: 13px;
    line-height: 13px;
    padding: 8px 15px 8px 15px;
    border-radius: 3px;
    cursor: pointer;
}
.chat-message.from_other span,
.chat-message.from-other .chat-message-span {
    background: var(--color-primary-purple-darker);
    color: white;
    margin-left: 20px;
    padding-left: 33px;
    border: 2px solid var(--color-primary-purple-darker);
}
.chat-message.webcam-request span {
    background: var(--color-primary-purple-darker);
    color: white;
    border: 2px solid var(--color-primary-purple-darker);
}
.chat-message.webcam-request span a:first-child {
    color: #f5b64c !important;
}
.chat-message.webcam-request span a:last-child {
    color: red !important;
}
.chat-message.webcam-request span a {
    text-decoration: underline;
}
.chat-message.webcam-request span a:hover {
    text-decoration: none;
}
.chat-message.from_me span,
.chat-message.from-me .chat-message-span {
    background: var(--color-accent-green-light);
    color: var(--color-text-purple-dark);
    margin-right: 20px;
    padding-right: 35px;
    border: 2px solid var(--color-accent-green-light);
}

.chat-message span:hover,
.chat-message .profile-image:hover + span,
.chat-message .chat-message-span:hover,
.chat-message .profile-image:hover + .chat-message-span {
    border: 2px solid var(--color-text-lighter) !important;
}

.chat-message span.chat-message-image img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 3px;
}
.chat-message span.chat-message-image.chat-message-image-small img {
    max-height: 60px;
}
.chat-message.chat-message-loading span.chat-message-image img {
    height: 200px;
}
.chat-message.blurred span {
    text-shadow: 0 0 7px white;
    color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.chat-message.chat-message-type-sticker.blurred i.sticker-holder {
    display:inline-block;
    overflow:hidden;
}
.chat-message.chat-message-type-sticker.blurred img {
    filter: blur(10px);
}
.chat-input {
    padding: 1px 0;
    position: relative;
}
body:not(.messaging-active) .chat-input {
    display: none;
}
.chat-input .input-holder {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(100% - 102px);
    background: white;
}
.chat-input .input-holder input {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 100%;
    border: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 0 160px 0 15px;
    outline: none !important;
}
@media (max-width: 767px) {
    .chat-input .input-holder input {
        padding-right: 125px;
    }
}
.chat-input #btn_send_message {
    display: block;
    position: absolute;
    top: 4px;
    right: 4px;
    width: 100px;
    height: calc(100% - 8px);
    line-height: 46px;
    color: white;
    background: var(--color-accent-green-darker);
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    border-radius: 3px;
    z-index: 30;
}
.chat-input #btn_send_message:hover {
    background: var(--color-accent-green-darkest);
    text-decoration: none;
}
.chat-input .input-holder a img {
    height: 25px;
}
.chat-input .input-holder #btn_send_sticker {
    position: absolute;
    width: 75px;
    height: 30px;
    top: 7px;
    right: 12px;
    z-index: 30;
    opacity: 0.5;
}
/*body.chatroom-active .chat-input .input-holder #btn_send_sticker,
body.chatroom-active .chat-input .input-holder #btn_send_image {
    display:none !important;
}*/
.chat-input .input-holder #btn_send_sticker img {
    width: 100%;
    height: 100%;
    display: block;
}
.chat-input .input-holder #btn_send_sticker:hover {
    opacity: 1;
}
.chat-input .input-holder #btn_send_image {
    position: absolute;
    top: 10px;
    right: 90px;
    z-index: 30;
    opacity: 0.5;
}
/*body.chatroom-active .chat-input .input-holder #btn_send_image {
    right:50px;
}
@media (max-width:767px) {
    body.chatroom-active .chat-input .input-holder #btn_send_image {
        right:15px;
    }
}*/
.chat-input .input-holder #btn_send_image:hover {
    opacity: 1;
}
.chat-input .input-holder .emoji-picker-icon {
    position: absolute;
    top: 8px;
    right: 130px;
    cursor: pointer;
    opacity: 0.25;
}
.chat-input .input-holder .emoji-picker-icon:hover {
    opacity: 0.6;
}
@media (max-width: 767px) {
    .chat-input .input-holder .emoji-picker-icon {
        display: none;
    }
}
/*body.chatroom-active .chat-input .input-holder .emoji-picker-icon {
    right:15px;
}*/
.emoji-wysiwyg-editor {
    height: 42px;
}
.emoji-menu {
    background: white;
}
.fa-2 {
    font-size: 28px !important;
}

.logged-in-box {
    text-align: center;
}
.logged-in-box strong {
    font-size: 18px;
    display: block;
}
.logged-in-box span.username {
    color: var(--color-accent-green);
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid var(--color-accent-green);
    border-radius: 3px;
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}
.logged-in-box span.username .username-picture {
    width: 90px;
    height: 90px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 10px 10px 5px 10px;
    position: relative;
}
.logged-in-box span.username .username-picture::after {
    content: "";
    display: block;
    position: absolute;
    right: 7px;
    top: 7px;
    width: 12px;
    height: 12px;
    background: var(--color-accent-green-bright);
    border-radius: 50%;
}

.form-elements {
    position: relative;
}
.data-check-availability-marker {
    display: none;
    position: absolute;
    top: 35px;
    right: 10px;
}
.data-check-availability-marker.data-check-availability-marker-no-label {
    top: 13px;
}
input[data-check-availability].is-available,
input[data-check-availability].is-unavailable {
    position: relative;
}
input[data-check-availability].is-available + .data-check-availability-marker,
input[data-check-availability].is-unavailable + .data-check-availability-marker,
input[type="password"].is-available + .data-check-availability-marker,
input[type="password"].is-unavailable + .data-check-availability-marker {
    display: block;
}
input[data-check-availability].is-available + .data-check-availability-marker,
input[type="password"].is-available + .data-check-availability-marker {
    color: var(--color-accent-green-success);
}
input[data-check-availability].is-unavailable + .data-check-availability-marker,
input[type="password"].is-unavailable + .data-check-availability-marker {
    color: red;
}

.col-form-label {
    font-weight: normal;
    padding-bottom: 0;
}
.col-form-label.col-form-label-bold {
    font-weight: bold;
}
.form-control {
    border-radius: 0;
}

.btn.btn-green {
    background-color: var(--color-accent-green-light);
    color: white;
    font-weight: bold;
    padding-left: 25px;
    padding-right: 25px;
}
.btn.btn-green:hover {
    background-color: var(--color-accent-green-lighter);
    color: white;
    text-decoration: none;
}
.btn.btn-red {
    background-color: var(--color-accent-orange);
    color: white;
    font-weight: bold;
    padding-left: 25px;
    padding-right: 25px;
}
.btn.btn-red:hover {
    background-color: var(--color-accent-orange-dark);
    color: white;
    text-decoration: none;
}
.btn.btn-full-width {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
.btn.btn-narrow {
    padding-bottom: 2px;
    padding-top: 2px;
}

.modal-title {
    transform: rotate(-4deg);
    color: white;
    background: var(--color-primary-purple-dark);
    padding: 5px 15px;
    font-size: 18px;
}
@media (max-width: 500px) {
    .modal-title {
        margin-top: 20px;
    }
}
.modal-header {
    border-bottom: 0;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    font-weight: bold;
}
.nav-tabs .nav-item.nav-link {
    color: var(--color-tab-link);
}

.chat-message-pending .profile-image {
    z-index: 100;
}
.chat-message-pending .chat-message-image {
    position: relative;
}
.chat-message-pending .chat-message-image::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 50px);
    height: calc(100% - 20px);
    /*background-color:rgba(0,0,0,0.4);*/
    background-image: url(/assets/images/chat-loader.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100px 100px;
    border-radius: 3px;
}
.chat-message-pending.from_me .chat-message-image::after {
    margin: 10px 35px 10px 15px;
}
.chat-message-pending.from_other .chat-message-image::after {
    margin: 10px 15px 10px 35px;
}
.chat-message-pending .chat-message-image img {
    opacity: 0;
}
.mobile-menu-header {
    display: none;
}
.modal .modal-dialog {
    margin-top: 5%;
}
.modal .modal-content {
    border: 4px solid var(--color-secondary);
    border-radius: 3px;
}
.modal .modal-header::before {
    content: " ";
    position: absolute;
    display: block;
    border: 4px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-image: url(/assets/images/logo_sex_chat.png);
    background-color: var(--color-secondary-darker);
    background-position: center;
    background-size: 60% auto;
    background-repeat: no-repeat;
    top: -25px;
    left: calc(50% - 25px);
    right: auto;
}
.modal .modal-header.icon-profile-image::before {
    background-size: cover;
    top: -40px;
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
    background-image: var(--package-modal-image);
}
#modal_package.modal .modal-header.icon-profile-image::before {
    cursor: pointer;
}
.modal .close {
    font-size: 34px;
    line-height: 20px;
}
.nav.nav-tabs a {
    margin-left: 15px;
}
.nav.nav-tabs a:first-child {
    margin-left: 0;
}

@media (max-width: 767px) {
    body.page-chat .header-small {
        position: relative;
    }
    body.page-chat .mobile-menu-header {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    body.page-chat:not(.mobile-menu-active) .mobile-menu-header {
        border-bottom: 3px solid var(--color-primary-purple-light);
    }
    body.page-chat .mobile-menu-header .mobile-logo {
        font-size: 20px;
        color: #3d2257;
        font-weight: bold;
        text-align: center;
        line-height: 52px;
    }
    body.page-chat .mobile-menu-header .mobile-logo small {
        font-weight: bold;
        font-size: 14px;
    }
    body.page-chat #mobile-buttons {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 50%;
        padding-top: 11px;
        padding-left: 5px;
        overflow: hidden;
    }
    body.page-chat.mobile-menu-active #mobile-buttons {
        display: none;
    }
    body.page-chat #mobile-buttons a {
        display: inline-block;
        width: 35px;
        height: 30px;
        padding: 2px 0;
        box-sizing: border-box;
        border: 1px solid #9980db;
        background: var(--color-primary-purple-light);
        text-align: center;
        margin: 0 3px;
    }
    body.page-chat #mobile-buttons img {
        width: 19px;
        height: 19px;
    }
    body.page-chat.messaging-active:not(.chatroom-active):not(.share-active)
    #mobile-buttons
    a[data-tab-id] {
        display: none;
    }
    body.page-chat #mobile-buttons #mobile_button_back {
        display: none;
    }
    body.page-chat.messaging-active:not(.chatroom-active):not(.share-active)
    #mobile-buttons
    #mobile_button_back {
        display: inline-block;
    }
    .modal .modal-dialog {
        margin-top: 50px;
    }
    body.page-chat header .container {
        display: none;
    }
    .page-chat .chatbox-holder,
    .chatbox-holder.chatbox-other-page {
        padding-top: 0;
    }

    body.page-chat .mobile-menu-header .mobile-logo {
        text-align: center;
        padding-left: 5px;
        line-height: 20px;
        font-size: 20px;
        padding-top: 17px;
    }
    /*body.page-chat.mobile-menu-active .mobile-menu-header .mobile-logo {
        padding-top:17px;
    }*/
    body.page-chat #mobile-buttons a[data-tab-id] {
        background: rgb(33, 24, 54);
        display: inline-block;
        width: auto;
        font-size: 12px;
        color: white;
        text-transform: uppercase;
        padding: 0 15px;
        margin: 0;
        border: 0;
        height: 42px;
        line-height: 40px;
        box-sizing: border-box;
        position: relative;
        bottom: -6px;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }
    body.page-chat #mobile-buttons a[data-tab-id]:focus {
        background: rgb(33, 24, 54);
        text-decoration: none;
    }
    body.page-chat #mobile-buttons a[data-tab-id]:hover,
    body.page-chat #mobile-buttons a[data-tab-id].active {
        text-decoration: none;
        background: var(--color-primary-purple-light);
        bottom: 0;
    }
    body.page-chat #mobile-buttons .tab-selector-holders {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    body.page-chat #mobile-buttons .tab-selector-holders a {
        margin-left: 3px;
    }
    body.page-chat #mobile-buttons a[data-tab-id="online"] span,
    body.page-chat #mobile-buttons a[data-tab-id="offline"] span {
        display: inline-block;
        position: relative;
    }

    body.page-chat #mobile-buttons #mobile_button_back {
        background: rgb(33, 24, 54);
        display: none;
        width: auto;
        font-size: 12px;
        color: white;
        text-transform: uppercase;
        padding: 0 15px;
        margin: 0;
        border: 0;
        height: 40px;
        line-height: 40px;
        box-sizing: border-box;
        position: relative;
        bottom: 0;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }
    body.page-chat #mobile-buttons #mobile_button_back:focus {
        background: rgb(33, 24, 54);
        text-decoration: none;
    }
}

#profile_picture_preview {
    max-height: 200px;
    max-width: 100%;
    margin-bottom: 15px;
    display: inline-block;
    border-radius: 3px;
    cursor: pointer;
}

.content-page-holder {
    background: linear-gradient(
            180deg,
            var(--color-primary),
            var(--color-primary-light)
    );
    min-height: calc(100vh - 330px);
    padding: 50px 25px 50px 25px;
}
body.page-contact .content-page-holder {
    background: linear-gradient(
            180deg,
            var(--color-primary),
            var(--color-primary-light)
    );
    min-height: calc(100vh - 372px);
    padding: 50px 25px 50px 25px;
}

.single-content-page {
    position: relative;
    width: 100%;
    max-width: 900px;
    min-height: 150px;
    margin: 0 auto;
    border-radius: 5px;
    border: 3px solid var(--color-secondary);
    padding: 15px 20px;
    background-color: white;
    background-image: linear-gradient(white, rgba(241, 188, 84, 0.5));
    background-position: left bottom;
    background-size: 100% 100px;
    background-repeat: no-repeat;
}
.single-content-page:not(.no-before)::before {
    content: " ";
    position: absolute;
    display: block;
    border: 4px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-image: url(/assets/images/logo_sex_chat.png);
    background-color: var(--color-secondary-darker);
    background-position: center;
    background-size: 60% auto;
    background-repeat: no-repeat;
    top: -30px;
    left: calc(50% - 30px);
    right: auto;
}
.single-content-page .single-content-page-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    text-decoration: underline;
}
.single-content-page.white-bar {
    background: white;
    min-height: 0;
}
.single-content-page.icon-users-group::before {
    background-image: url(/assets/images/users_icon_adultchat.png);
}
.single-content-page.icon-profile-image::before {
    background-size: cover;
    top: -55px;
    left: calc(50% - 60px);
    width: 120px;
    height: 120px;
    background-image: var(--background);
    border-color: var(--color-primary);
}
.single-content-page.icon-profile-image .single-content-page-swipebox-link {
    display: block;
    position: absolute;
    width: 112px;
    height: 112px;
    top: -51px;
    left: calc(50% - 56px);
    border-radius: 50%;
}

.chat-message .profile-image {
    cursor: pointer;
}

#modal_profile img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 3px;
}
@media (max-width: 767px) {
    #modal_profile img {
        max-height: 132px;
    }
}

#modal_profile ul,
.page-profile ul {
    margin-top: 20px;
    padding-left: 0;
    list-style-type: none;
}
#modal_profile p {
    margin-top: 20px;
}
.modal-backdrop {
    z-index: 9002;
}
.modal {
    z-index: 9003;
}

.profile-album strong {
    color: black;
    font-size: 14px;
}
.profile-album div.row div {
    margin-bottom: 15px;
    text-align: center;
}
#modal_profile .profile-album div.row div img,
body.page-profiles .profile-album div.row div img {
    max-width: 100%;
    max-height: 100px;
}
@media (max-width: 767px) {
    #modal_profile .profile-album div.row div img,
    body.page-profiles .profile-album div.row div img {
        max-height: 70px;
    }
}
.album-image-holder {
    position: relative;
    width: 100%;
}
.album-image-holder.album-image-editable {
    margin-bottom: 15px;
}
.album-image-holder.album-image-empty {
    border: 1px solid rgb(118, 111, 138);
    text-align: center;
    cursor: pointer;
}
.album-image-holder.album-image-empty .album-text-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.album-image-holder.album-image-empty .album-text-content span {
    display: block;
    margin-top: 5px;
    color: var(--color-accent-green-bright);
}
.album-image-holder::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.album-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 3px;
}
.album-image-holder.album-image-editable a {
    color: black;
    display: block;
    cursor: pointer;
    height: 12px;
    line-height: 12px;
    position: absolute;
    width: 100%;
    bottom: -15px;
    left: 0;
    text-align: center;
}

@media (max-width: 767px) {
    .g-recaptcha {
        transform-origin: 0 0;
    }
}
@media (max-width: 500px) {
    .g-recaptcha {
        transform: scale(0.9);
    }
}
@media (max-width: 450px) {
    .g-recaptcha {
        transform: scale(0.75);
    }
}
@media (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.7);
    }
}
@media (max-width: 350px) {
    .g-recaptcha {
        transform: scale(0.5);
    }
}
@media (max-width: 767px) {
    .hidden-mobile {
        display: none !important;
    }
}

body.age-notification {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}
body.age-notification footer {
    display: none;
}
.overlay18 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2002;
}

.overlay18 .modal18 {
    position: relative;
    width: 90%;
    max-width: 700px;
    margin-top: 200px;
    margin-left: auto;
    margin-right: auto;
    background-color: black;
    border-color: var(--color-primary-dark);
    border-width: 2px;
    border-style: solid;
    text-align: center;
    padding-top: 40px;
    color: var(--color-white);
    font-size: 16px;
    font-family: "Montserrat-Light", sans-serif;
}

@media (max-width: 767px) {
    .overlay18 .modal18 {
        margin-top: 30px;
    }
}

.overlay18 .modal18 img,
.overlay18 .modal18 strong {
    display: block;
    margin: auto;
    margin-bottom: 30px;
}

.overlay18 .modal18 img {
    margin-bottom: 30px;
    max-width: 80%;
}

.modal18 .modalbtn {
    display: inline-block;
    padding: 10px 14px;
    color: var(--color-form-placeholder);
}

.modal18 .modalbtn:hover {
    text-decoration: none;
}

.modal18 .modalbtn:last-child {
    margin-left: 5px;
}

.modal18 .greenbtn {
    background-color: var(--color-accent-green);
    color: white;
}
.modal18 .greenbtn:hover {
    background-color: var(--color-accent-green-dark);
}

.modal18 .graybtn {
    background-color: var(--color-age-button-gray);
    padding-left: 20px;
    padding-right: 20px;
}
.modal18 .graybtn:hover {
    background-color: var(--color-age-button-gray-hover);
}

.modal18 .txtarea {
    width: 80%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    font-size: 11px;
    text-align: left;
}

.modal18 .closelink {
    display: block;
    text-decoration: underline;
    font-size: 11px;
    color: var(--color-form-placeholder);
    margin-top: 40px;
    margin-bottom: 10px;
}
.modal18 .closelink:hover {
    text-decoration: none;
}

.modal18 .closebtn {
    display: block;
    position: absolute;
    right: 7px;
    top: 5px;
    color: var(--color-form-placeholder);
}

.header-block-title {
    display: inline-block;
    background-color: var(--color-header-block-title);
    color: white;
    padding: 3px 6px;
    font-weight: bold;
    margin-bottom: 5px;
}

.mobile-chat-header {
    display: none;
}

.credits-packages,
#credits-payment-methods {
    padding-left: 15px;
    padding-right: 15px;
}
.credits-packages .col-12,
#credits-payment-methods .col-12 {
    padding-left: 4px;
    padding-right: 4px;
}
.credit-package {
    background: var(--color-bg-light);
    border: 1px solid var(--color-bg-gray-dark);
    padding: 35px 10px 15px 10px;
    cursor: pointer;
    text-align: center;
    position: relative;
}
.credit-package:hover,
.credit-package.best-deal {
    border-color: var(--color-accent-green-light);
}
#credits-packages-method-phone .credit-package {
    cursor: default;
}
#credits-packages-method-phone .credit-package:hover {
    border-color: var(--color-bg-gray-dark);
}
.credit-package span.amount {
    display: block;
    font-size: 34px;
    font-weight: bold;
    color: var(--color-accent-green-light);
    line-height: 34px;
}
.credit-package span.amount-subtext {
    font-weight: bold;
    font-size: 18px;
    color: rgb(134, 134, 134);
}
.credit-package ul {
    list-style-type: none;
    padding-left: 0;
    width: 110px;
    min-height: 84px;
    text-align: left;
    margin: 15px auto 25px auto;
    color: var(--color-credit-subtext);
}
@media (max-width: 767px) {
    .credit-package ul {
        min-height: auto;
    }
}
.credit-package button {
    cursor: pointer;
    display: inline-block;
    min-width: 90px;
    background: var(--color-credit-button);
    color: white;
    font-weight: bold;
    border: 0;
    border-radius: 4px;
    font-size: 20px;
}
.credit-package.credit-package-method {
    padding-top: 15px;
}
.credit-package.credit-package-method::before {
    content: "";
    display: block;
    background-image: url(/assets/images/icon_lock.png);
    width: 10px;
    height: 14px;
    background-size: cover;
    position: absolute;
    top: 5px;
    left: 5px;
}
.credit-package.credit-package-method img {
    display: block;
    margin: 20px auto 30px auto;
    width: 120px;
}
.credit-package.credit-package-method button {
    background: var(--color-accent-green-bright);
}
.credit-package a {
    display: block;
    color: var(--color-accent-green-light);
    margin-top: 10px;
    text-decoration: none;
}
.credit-package:hover a,
.credit-package a:hover {
    color: var(--color-accent-green-light);
    text-decoration: underline;
}

.credit-package .best-deal-banner {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 100px;
    height: 100px;
}
.credit-package .best-deal-banner span {
    color: white;
    font-weight: bold;
    font-size: 16px;
    background: var(--color-accent-yellow);
    transform: rotate(45deg);
    text-align: center;
    width: 200px;
    height: 80px;
    line-height: 130px;
    top: -25px;
    right: -85px;
    position: absolute;
}

.next-free-credits {
    display: inline-block;
    text-align: center;
    color: rgb(134, 134, 134);
    background-image: url(../images/icon_timer.png);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 30px;
    font-weight: bold;
    line-height: 20px;
}
.next-free-credits span {
    text-decoration: underline;
    color: var(--color-accent-green-light);
}
.sticker-preview {
    margin-top: 10px;
    max-width: 100%;
    cursor: pointer;
}
#alert_credits,
.alert_verification {
    color: var(--color-primary-purple-dark);
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 30px;
    background-image: url(/assets/images/icon_alert_credits.png);
    background-size: 20px 20px;
    background-position: 10px center;
    background-repeat: no-repeat;
    background-color: var(--color-accent-yellow);
    padding: 5px 10px 5px 37px;
    border-radius: 4px;
}

@media (min-width: 768px) {
    #modal_stickers .col-12.col-md-4 {
        padding-left: 5px;
        padding-right: 5px;
    }
    #modal_stickers .col-12.col-md-4:first-child {
        padding-left: 15px;
    }
    #modal_stickers .col-12.col-md-4:last-child {
        padding-right: 15px;
    }
}
@media (max-width: 767px) {
    #modal_credits .col-6.col-md-12 {
        padding-left: 5px;
        padding-right: 5px;
    }
    #modal_stickers .col-6.col-md-12:first-child {
        padding-left: 15px;
    }
    #modal_stickers .col-6.col-md-12:last-child {
        padding-right: 15px;
    }
}

.chat-no-credits {
    display: block;
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 45px;
    text-align: center;
    cursor: pointer;
}
.chat-no-credits span.minutes_counter {
    font-weight: bold;
}
.chat-no-credits span:not(.minutes_counter) {
    color: var(--color-primary-purple-dark);
    font-weight: normal;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 5px;
    background-image: url(/assets/images/icon_alert_credits.png);
    background-size: 20px 20px;
    background-position: 10px center;
    background-repeat: no-repeat;
    background-color: var(--color-accent-yellow);
    padding: 5px 10px 5px 37px;
    border-radius: 4px;
}
.chat-no-credits span:not(.minutes_counter) a {
    color: var(--color-primary-purple-dark);
    text-decoration: underline;
}
.chat-no-credits span:not(.minutes_counter) a:hover {
    color: var(--color-primary-purple-dark);
    text-decoration: none;
}
@media (max-width: 767px) {
    .chat-no-credits {
        padding: 0 15px;
        height: auto;
    }
    .footer-links a {
        display: inline-block;
        margin: 5px 0;
    }
}
body[data-active-tab="offline"] .chat-no-credits,
body[data-active-tab="share"] .chat-no-credits {
    display: none !important;
}
body.chatroom-active .chat-no-credits {
    display: none !important;
}

.payment-back-btn {
    color: var(--color-text-light);
    margin-bottom: 10px;
    display: inline-block;
}
.payment-back-btn:hover {
    color: var(--color-text-light);
}

#credits-packages-method-phone .credit-package {
    padding: 20px 20px 15px 20px;
}
.phone-step {
    text-align: left;
    margin-bottom: 20px;
}
.phone-step strong {
    display: block;
}
.phone-step .highlight-color {
    color: var(--color-accent-yellow-highlight);
    font-weight: bold;
    font-size: 16px;
}
.phone-step small {
    font-style: italic;
    margin-left: 10px;
}
.phone-anonymous {
    font-style: italic;
    margin-top: 15px;
}
.phone-anonymous img {
    width: 14px;
    height: 14px;
}

.jq-toast-wrap.top-right {
    top: 90px !important;
    right: 10px !important;
    text-align: right !important;
}
@media (min-width: 768px) {
    .jq-toast-wrap.top-right {
        top: 25px !important;
        right: 25px !important;
    }
}
.jq-toast-single {
    width: auto !important;
    display: inline-block;
    text-align: left;
    /*background:var(--color-accent-orange) !important;*/
    background: var(--color-primary-purple-darker) !important;
    padding: 0 !important;
    border: 1px solid white;
    cursor: pointer;
}
.jq-toast-single:hover {
    border-color: var(--color-accent-orange);
}
@media (min-width: 768px) {
    .jq-toast-single {
        padding: 5px 50px 5px 10px !important;
        border: 2px solid white;
    }
}
.close-jq-toast-single {
    top: 7px;
    font-size: 32px !important;
    z-index: 10000;
}
.jq-toast-single .toast-content {
    padding: 10px;
    min-width: 150px;
    display: flex;
    flex-direction: row;
}
@media (max-width: 767px) {
    .jq-toast-single .toast-content {
        width: auto;
    }
}
.jq-toast-single .toast-image-content {
    max-width: 45px;
}
.jq-toast-single .toast-image-content .round-image {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    border: 1px solid white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.jq-toast-single .toast-text-content {
    flex-grow: 1;
}
.jq-toast-single strong.toast-username {
    display: block;
    position: relative;
    padding-left: 24px;
}
.jq-toast-single strong.toast-username::before {
    content: "";
    display: block;
    position: absolute;
    left: 10px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent-green);
}
.jq-toast-single .toast-content a.notification-button {
    display: inline-block;
    text-decoration: none;
    border-bottom: 0;
    background: var(--color-accent-green-darker);
    color: white;
    padding: 2px 5px;
    border-radius: 2px;
    margin: 7px 0 0 0;
}
.jq-toast-single .toast-content a.notification-button:hover {
    background: var(--color-accent-green-darker);
}
.jq-toast-single .toast-content a.view-profile-button {
    color: white;
    font-size: 11px;
    border: 0;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
    font-weight: normal;
}
.jq-toast-single .toast-content a.view-profile-button:hover {
    color: white;
    text-decoration: none;
}
.jq-toast-single .toast-image-content {
    max-width: 75px;
}
.jq-toast-single .toast-image-content .round-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.jq-toast-wrap {
    width: auto !important;
}

.online-filter {
    padding: 10px;
}
.online-filter .filters {
    width: 100%;
    padding: 5px 10px 15px 10px;
    border: 1px solid white;
    border-radius: 3px;
    color: white;
}
.custom-toggle {
    width: 100%;
    line-height: 40px;
}
.custom-toggle .custom-toggle-options {
    background: white;
    border-radius: 3px;
}
.custom-toggle .custom-toggle-option {
    width: 50%;
    display: inline-block;
    color: black;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}
.custom-toggle .custom-toggle-option.custom-toggle-option-active,
.custom-toggle .custom-toggle-option:hover {
    background: var(--color-accent-green-bright);
    color: white;
}
.custom-toggle .custom-toggle-options .custom-toggle-option:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.custom-toggle .custom-toggle-options .custom-toggle-option:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
@media (max-width: 767px) {
    .right-column .offline-chatselectors {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .left-column .offline-chatselectors .chatselector-rows {
        display: none !important;
    }
    body[data-active-tab="offline"] .right-column .offline-chatselectors {
        display: block;
    }
    .offline-chatselectors {
        overflow-x: hidden;
        overflow-y: scroll;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .online-filter .filters {
        padding: 0;
        border: 0;
        margin-top: 50px;
    }
    .custom-toggle {
        line-height: 1.5;
    }
    .custom-toggle .custom-toggle-option {
        line-height: 40px;
    }
}
.pagination-area {
    width: 100%;
    padding: 35px 0;
    text-align: center;
}
.pagination-area ul.pagination {
    display: inline-block;
    margin: 0;
}
.pagination-area ul.pagination li {
    display: inline-block;
    margin: 0 8px;
    padding: 2px 7px;
    border: 1px solid white;
    color: white;
    cursor: pointer;
}
.pagination-area ul.pagination li.active,
.pagination-area ul.pagination li:hover {
    color: black;
    background: var(--color-accent-orange);
}
@media (max-width: 767px) {
    .pagination-area ul.pagination li {
        margin: 0 4px;
    }
}

a.blacklink {
    color: black;
    text-decoration: underline;
}
a.blacklink:hover {
    text-decoration: none;
}
div.wholebox {
    display: inline-block;
    padding: 5px;
    border: 2px solid white;
    line-height: 14px;
    border-radius: 2px;
}
div.wholebox.unchecked {
    border-color: red;
}
div.wholebox label {
    margin: 0;
}
a.profile-report-link {
    color: black;
    text-decoration: underline;
}
a.profile-report-link:hover {
    color: black;
    text-decoration: none;
}
.report-box p,
.report-box a,
.report-box strong {
    font-size: 10px;
}

#inp_email_cta {
    border-radius: 3px;
}

.tab[data-tab-id="contacts"] span,
.tab[data-tab-id="online"] span.new-count,
.tab[data-tab-id="share"] span {
    background: var(--color-accent-green-bright);
    color: white;
    border-radius: 50%;
    top: 5px;
    right: 15px;
    position: absolute;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 9px;
}
.tab[data-tab-id="online"].has-new-messages strong {
    color: white !important;
}
.tab[data-tab-id="online"] span.new-count {
    right: 7px;
}
.tab.active[data-tab-id="online"] span.new-count {
    display: none !important;
}
@keyframes flickering_background {
    0% {
        background: var(--color-accent-green-bright);
    }
    49% {
        background: var(--color-accent-green-bright);
    }
    50% {
        background: rgb(33, 24, 54);
    }
    99% {
        background: rgb(33, 24, 54);
    }
}
@keyframes flickering_background_m {
    0% {
        background: var(--color-accent-green-bright);
    }
    49% {
        background: var(--color-accent-green-bright);
    }
    50% {
        background: rgb(33, 24, 54);
    }
    99% {
        background: rgb(33, 24, 54);
    }
}
@keyframes flickering_background_bolletje {
    0% {
        background: #31701e;
    }
    49% {
        background: #31701e;
    }
    50% {
        background: var(--color-accent-green-bright);
    }
    99% {
        background: var(--color-accent-green-bright);
    }
}
.chatlist-header .tab[data-tab-id="contacts"].has-new-messages,
body:not([data-active-tab="online"])
.chatlist-header
.tab[data-tab-id="online"].has-new-messages {
    animation: flickering_background 1.5s infinite;
}
.chatlist-header
.tab[data-tab-id="online"].has-new-messages
span:not(.new-count) {
    display: none;
}
.chatlist-header .tab[data-tab-id="contacts"].has-new-messages span,
.chatlist-header .tab[data-tab-id="online"].has-new-messages span.new-count {
    animation: flickering_background_bolletje 1.5s infinite;
}

a[data-tab-id]:not(.active).has-new-messages {
    animation: flickering_background_m 1.5s infinite;
}
body.page-chat #mobile-buttons a[data-tab-id="contacts"].has-new-messages span,
body.page-chat #mobile-buttons a[data-tab-id="chatroom"].has-new-messages span {
    margin-right: 10px;
}
body.page-chat
#mobile-buttons
a[data-tab-id="contacts"].has-new-messages
span
span,
body.page-chat
#mobile-buttons
a[data-tab-id="chatroom"].has-new-messages
span
span {
    background: var(--color-accent-green-bright);
    color: white;
    border-radius: 50%;
    top: 5px;
    right: -5px;
    position: absolute;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 9px;
    animation: flickering_background_bolletje 1.5s infinite;
}

.status-round {
    position: relative;
    padding-left: 15px;
}
.status-round::before {
    content: "";
    display: block;
    border-radius: 50%;
    top: 4px;
    left: 2px;
    position: absolute;
    width: 10px;
    height: 10px;
}
.status-round.status-online::before {
    background: var(--color-accent-green-bright);
}
.status-round.status-offline::before {
    background: var(--color-status-offline);
}
.status-round.status-offline.status-online-last-week::before {
    background: var(--color-status-away);
}

body.messaging-active:not(.chatroom-active) .emoji-wysiwyg-editor:empty:before {
    content: "Type private message...";
}

.tutorial_notice {
    position: relative;
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 20px;
    background: rgb(157, 127, 225);
    height: 44px;
    line-height: 44px;
    border-radius: 3px;
    text-align: center;
}
.tutorial_notice .main_message span {
    background: var(--color-accent-green-bright);
    color: white;
    display: inline-block;
    padding: 3px 5px;
    margin-right: 5px;
    border-radius: 2px;
    line-height: 1em;
}
.tutorial_notice a {
    font-family: FontAwesome;
    content: "\f00d";
    position: absolute;
    top: 3px;
    right: 3px;
    font-weight: bold;
    color: black !important;
    line-height: 1em;
    display: block;
    width: 15px;
    height: 15px;
}
.tutorial_notice a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: "\f00d";
    font-size: 18px;
}

input[name="email"] + span.input-verified {
    display: none;
}
input[name="email"][readonly] + span.input-verified,
input[name="email"][disabled] + span.input-verified {
    position: absolute;
    display: inline-block;
    top: 2px;
    right: 24px;
    color: var(--color-accent-green-light);
    font-size: 20px;
}

span.error {
    padding-top: 5px;
    color: red !important;
    border: none !important;
}

.chat-message ul {
    margin-top: 15px;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 3px;
}
.chat-message ul li {
    margin-top: 10px;
    padding-left: 25px;
    position: relative;
}
.chat-message ul li::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    width: 16px;
    height: 12px;
    background-image: url(/assets/images/checkmark_white.png);
}

.chatroom-latest-pictures {
    display: none;
}
@media (min-width: 768px) {
    body.chatroom-active .chatroom-latest-pictures {
        text-align: left;
        display: block;
        position: absolute;
        left: 250px;
        top: 0;
        padding-left: 15px;
        padding-top: 5px;
        color: #b2b2b2;
        width: calc(100% - 500px);
    }
    body.chatroom-active .chatroom-latest-pictures .chatroom_image_preview {
        border: 1px solid var(--color-border-gray-dark);
        width: 60px;
        height: 40px;
        border-radius: 3px;
        cursor: pointer;
        background-repeat: no-repeat;
        background-size: cover;
        display: inline-block;
        margin-right: 5px;
        background-position: center;
    }
    body.chatroom-active
    .chatroom-latest-pictures
    .chatroom_image_preview.chatroom_view_all {
        color: white;
        font-size: 10px;
        text-align: center;
        line-height: 38px;
        position: relative;
        top: -16px;
    }
    body.chatroom-active .chatroom-latest-pictures .chatroom_image_preview:hover {
        border-color: var(--color-accent-orange);
    }
}

.chatroom_image_big {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 3px;
    border: 2px solid var(--color-primary-purple-dark);
}
.chatroom_image_big div.uname-holder {
    display: block;
    position: absolute;
    text-align: center;
    width: 100%;
    top: -16px;
    left: 0;
}
.chatroom_image_big div.uname-holder span {
    cursor: pointer;
    border-radius: 8px;
    background: white;
    color: var(--color-primary-purple-dark);
    text-align: center;
    display: inline-block;
    padding: 3px 8px;
    border: 2px solid var(--color-primary-purple-dark);
}
.chatroom_image_big div.uname-holder span:hover {
    border-color: var(--color-accent-orange);
}
.prev_next_button {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.prev_next_button a img {
    max-width: 100%;
}

.chatroom_latest_pictures_mobile {
    display: none;
}
body.chatroom-active .chatroom_latest_pictures_mobile {
    text-align: left;
    display: block;
    color: #b2b2b2;
    width: 100%;
    overflow-x: auto;
    padding-top: 5px;
}
body.chatroom-active .chatroom_latest_pictures_mobile .sidescroller {
    white-space: nowrap;
}
body.chatroom-active .chatroom_latest_pictures_mobile .chatroom_image_preview {
    border: 1px solid var(--color-border-gray-dark);
    width: 60px;
    height: 50px;
    border-radius: 3px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    margin-right: 5px;
    background-position: center;
}
body.chatroom-active
.chatroom_latest_pictures_mobile
.chatroom_image_preview.chatroom_view_all {
    color: white;
    font-size: 10px;
    text-align: center;
    line-height: 47px;
    position: relative;
    top: -22px;
}
body.chatroom-active
.chatroom_latest_pictures_mobile
.chatroom_image_preview:hover {
    border-color: var(--color-accent-orange);
}

.report_link {
    color: red;
    font-size: 11px;
    text-decoration: underline;
}
.report_link:hover {
    color: red;
    text-decoration: none;
}

@media (max-width: 1150px) {
    body.chatroom-active #chatroom_last_pictures div:nth-child(8) {
        display: none;
    }
}
@media (max-width: 1085px) {
    body.chatroom-active #chatroom_last_pictures div:nth-child(7) {
        display: none;
    }
}
@media (max-width: 1020px) {
    body.chatroom-active #chatroom_last_pictures div:nth-child(6) {
        display: none;
    }
}
@media (max-width: 955px) {
    body.chatroom-active #chatroom_last_pictures div:nth-child(5) {
        display: none;
    }
}
@media (max-width: 890px) {
    body.chatroom-active #chatroom_last_pictures div:nth-child(4) {
        display: none;
    }
}
@media (max-width: 825px) {
    body.chatroom-active #chatroom_last_pictures div:nth-child(3) {
        display: none;
    }
}

.btn-like-picture img {
    max-width: 100%;
    width: 90px;
}
@media (max-width: 767px) {
    .btn-like-picture {
        margin-top: 15px;
        display: inline-block;
    }
    .btn-like-picture img {
        width: 45px;
    }
}
.profile-image-modal {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--color-primary-purple-dark);
}

@media (min-width: 768px) {
    body.messaging-active:not(.chatroom-active):not(.share-active)
    .menubar::after {
        content: "private message";
        display: block;
        width: 120px;
        height: 25px;
        line-height: 25px;
        text-align: center;
        position: absolute;
        left: 50%;
        top: 30px;
        color: #c9b4f7;
        border: 1px solid #c9b4f7;
        border-radius: 5px;
    }
}

.yellow_tabs_selectors {
    padding: 15px 0;
}
.yellow_tabs_selectors a {
    display: inline-block;
    background: var(--color-secondary);
    color: black;
    padding: 3px 13px;
    margin-left: 15px;
    border-radius: 4px;
}
.yellow_tabs_selectors a:hover {
    text-decoration: none;
    background: #d49334;
}
.yellow_tabs_selectors a.active {
    background: #4b4066;
    color: white;
}
.yellow_tabs_selectors a:first-child {
    margin-left: 0;
}
.yellow_tabs:not(.active) {
    display: none;
}

.shared_image_preview {
    width: 100%;
    position: relative;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
    border-radius: 3px;
    text-align: center;
}
.shared_image_preview a {
    position: relative;
    top: 20px;
    color: red;
    text-decoration: underline;
    font-size: 12px;
}
.shared_image_preview a:hover {
    color: red;
    text-decoration: none;
}

.profile-favourites {
    border-top: 2px solid #dedede;
}
.profile-favourites .favourite-profile {
    display: inline-block;
    width: 85px;
    height: 85px;
    border-radius: 50px;
    margin: 15px 5px 0 5px;
    border: 1px solid var(--color-primary-purple-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.profile-favourites strong {
    display: block;
    margin-top: 5px;
}
.profile-favourites strong small {
    font-weight: normal;
    font-size: 14px;
}

#top-bar {
    width: 100%;
    height: 120px;
    position: fixed;
    top: -120px;
    left: 0;
    background: var(--color-primary-purple-darkest);
    z-index: 2100;
    border-bottom: 3px solid var(--color-primary);
    overflow: hidden;
    box-sizing: border-box;
}
#top-bar .advert-board {
    position: relative;
    z-index: 2101;
}
#top-bar .advert-board::before,
#top-bar .advert-board::after {
    content: "";
    width: 1px;
    height: 30px;
    background: rgb(254, 181, 14);
    position: absolute;
    top: 0;
}
#top-bar .advert-board::before {
    left: 30px;
}
#top-bar .advert-board::after {
    left: 140px;
}
#top-bar .advert-board span {
    display: inline-block;
    background: rgb(254, 181, 14);
    transform: rotate(-3deg);
    margin-top: 25px;
    font-size: 20px;
    color: black;
    font-weight: bold;
    padding: 5px 15px 5px 55px;
    border-radius: 3px;
    background-image: url(/assets/images/logo_sex_chat_black.png);
    background-repeat: no-repeat !important;
    background-size: 34px 33px;
    background-position: 12px 5px;
    z-index: 2102;
    position: relative;
    width: 210px;
}
#top-bar .advert-board small {
    display: none;
}
#top-bar .advert-board.with-users-online span {
    line-height: 20px;
    padding-bottom: 18px;
}
#top-bar .advert-board.with-users-online small {
    display: block;
    position: absolute;
    width: 210px;
    text-align: center;
    transform: rotate(-3deg);
    padding-right: 15px;
    padding-left: 55px;
    left: 0;
    bottom: 1px;
    z-index: 2103;
    font-weight: bold;
}
#top-bar a.account-already {
    font-size: 11px;
    text-decoration: underline;
    color: white;
    display: inline-block;
    margin-top: 10px;
}
#top-bar a.account-already:hover {
    text-decoration: none;
    color: white;
}
#top-bar .form-row {
    margin-top: 10px;
}
#top-bar form .form-row:first-child {
    margin-top: 20px;
}
#top-bar .form-row label {
    color: white;
    font-weight: bold;
    width: 125px;
    line-height: 30px;
    margin-bottom: 0;
}
#top-bar .form-row input,
#top-bar .form-row select {
    width: 150px;
    height: 30px;
    outline: none;
}
#top-bar .form-row select {
    color: var(--color-accent-green);
    font-weight: bold;
    text-align: center;
}
#top-bar .data-check-availability-marker {
    display: none;
}

@media (max-width: 991px) {
    #top-bar .form-row label {
        width: 75px;
    }
    #top-bar .form-row input,
    #top-bar .form-row select {
        width: calc(100% - 75px);
    }
}

@media (max-width: 767px) {
    #top-bar {
        height: unset;
        top: -165px;
        padding-bottom: 16px;
    }
    #top-bar .advert-board span {
        margin-top: 8px;
        transform: rotate(-1deg);
    }
    #top-bar .advert-board.with-users-online small {
        transform: rotate(-1deg);
    }
    #top-bar .pink_btn {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    #top-bar .form-row {
        display: flex;
        flex-direction: column;
    }

    #top-bar .form-row label {
        line-height: 18px;
    }

    #top-bar .pink_btn {
        margin-top: 18px;
    }

    #top-bar .form-row input, #top-bar .form-row select {
        min-width: 160px;
    }
}

body:not(.developer) .developer-visible {
    display: none;
}
body.developer .developer-hidden {
    display: none;
}
body:not(.webcam-enabled) .webcam-enabled-visible {
    display: none;
}
body.webcam-enabled .webcam-enabled-hidden {
    display: none;
}

.typeahead-popup {
    position: fixed;
    z-index: 9500;
    min-width: 200px;
    height: auto;
    border: 1px solid var(--color-border-gray-light);
    border-radius: 3px;
    background: white;
}
.typeahead-popup ul {
    cursor: pointer;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.typeahead-popup ul li {
    border-top: 1px solid var(--color-border-gray-light);
    padding: 8px 15px;
}
.typeahead-popup ul li:hover {
    background: var(--color-border-gray-light);
}
.typeahead-popup ul li:first-child {
    border-top: 0;
}

body.page-index .chatroom-latest-pictures,
body.page-profiles .chatroom-latest-pictures {
    display: block;
    margin-top: 15px;
}
body.page-index .chatroom-latest-pictures .chatroom_image_preview,
body.page-profiles .chatroom-latest-pictures .chatroom_image_preview {
    border: 1px solid var(--color-border-gray-dark);
    width: 80px;
    height: 60px;
    border-radius: 3px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    margin-right: 5px;
    background-position: center;
}
body.page-index
.chatroom-latest-pictures
.chatroom_image_preview.chatroom_view_all,
body.page-profiles
.chatroom-latest-pictures
.chatroom_image_preview.chatroom_view_all {
    color: white;
    font-size: 10px;
    text-align: center;
    line-height: 58px;
    position: relative;
    top: -26px;
}
body.page-profiles .chatroom-latest-pictures .chatroom_image_preview {
    background-color: var(--color-primary-purple-darker);
}
body.page-index .chatroom-latest-pictures .chatroom_image_preview:hover,
body.page-profiles .chatroom-latest-pictures .chatroom_image_preview:hover {
    border-color: var(--color-accent-orange);
}

@media (max-width: 1199px) {
    body.page-index #chatroom_last_pictures div:nth-child(11) {
        display: none;
    }
    body.page-index #chatroom_last_pictures div:nth-child(10) {
        display: none;
    }
}
@media (max-width: 991px) {
    body.page-index #chatroom_last_pictures div:nth-child(9) {
        display: none;
    }
    body.page-index #chatroom_last_pictures div:nth-child(8) {
        display: none;
    }
    body.page-index #chatroom_last_pictures div:nth-child(7) {
        display: none;
    }
}
@media (max-width: 767px) {
    body.page-index #chatroom_last_pictures div:nth-child(7) {
        display: inline-block;
    }
}

/*@media (max-width:890px) {
    body.page-profiles #chatroom_last_pictures div:nth-child(8) {
        display:none;
    }
}
@media (max-width:802px) {
    body.page-profiles #chatroom_last_pictures div:nth-child(7) {
        display:none;
    }
}
@media (max-width:713px) {
    body.page-profiles #chatroom_last_pictures div:nth-child(6) {
        display:none;
    }
}
@media (max-width:625px) {
    body.page-profiles #chatroom_last_pictures div:nth-child(5) {
        display:none;
    }
}
@media (max-width:536px) {
    body.page-profiles #chatroom_last_pictures div:nth-child(4) {
        display:none;
    }
}
@media (max-width:448px) {
    body.page-profiles #chatroom_last_pictures div:nth-child(3) {
        display:none;
    }
}
@media (max-width:359px) {
    body.page-profiles #chatroom_last_pictures div:nth-child(2) {
        display:none;
    }
}*/
@media (max-width: 357px) {
    body.page-profiles
    .chatroom-latest-pictures
    .chatroom_image_preview:nth-child(8) {
        display: none;
    }
}
@media (min-width: 358px) and (max-width: 446px) {
    body.page-profiles
    .chatroom-latest-pictures
    .chatroom_image_preview:nth-child(6),
    body.page-profiles
    .chatroom-latest-pictures
    .chatroom_image_preview:nth-child(7),
    body.page-profiles
    .chatroom-latest-pictures
    .chatroom_image_preview:nth-child(8) {
        display: none;
    }
}
@media (min-width: 447px) and (max-width: 534px) {
    body.page-profiles
    .chatroom-latest-pictures
    .chatroom_image_preview:nth-child(8) {
        display: none;
    }
}
@media (min-width: 535px) and (max-width: 800px) {
    body.page-profiles .chatroom-latest-pictures {
        margin-left: auto;
        margin-right: auto;
        max-width: 438px;
    }
    body.page-profiles
    .chatroom-latest-pictures
    .chatroom_image_preview:nth-child(8) {
        display: none;
    }
}
@media (min-width: 801px) and (max-width: 950px) {
    body.page-profiles
    .chatroom-latest-pictures
    .chatroom_image_preview:nth-child(8) {
        display: none;
    }
}

.chatroom_image_preview[data-mouseover-tag] {
    position: relative;
}
.chatroom_image_preview[data-mouseover-tag]:hover::before {
    content: "user:";
    display: block;
    position: absolute;
    bottom: -24px;
    width: 120%;
    left: -10%;
    color: white;
    text-align: center;
    z-index: 1000;
}
.chatroom_image_preview[data-mouseover-tag]:hover::after {
    padding: 20px 5px 1px 5px;
    content: attr(data-mouseover-tag);
    display: block;
    position: absolute;
    bottom: -44px;
    left: 50%;
    width: auto;
    transform: translateX(-50%);
    background: var(--color-accent-orange);
    color: white;
    text-align: center;
    border-radius: 3px;
    font-weight: bold;
    z-index: 999;
    text-wrap: nowrap;
    white-space: nowrap;
}

body.page-chat .chatroom_image_preview[data-mouseover-tag]:hover::before {
    bottom: -19px;
    font-size: 11px;
}
body.page-chat .chatroom_image_preview[data-mouseover-tag]:hover::after {
    bottom: -34px;
    font-size: 11px;
    padding-top: 13px;
}

.favourite-profile[data-mouseover-tag] {
    position: relative;
}
.favourite-profile[data-mouseover-tag]:hover::before {
    content: "user:";
    display: block;
    position: absolute;
    bottom: -10px;
    width: 120%;
    left: -10%;
    color: white;
    text-align: center;
    z-index: 1000;
}
.favourite-profile[data-mouseover-tag]:hover::after {
    padding: 20px 5px 1px 5px;
    content: attr(data-mouseover-tag);
    display: block;
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: auto;
    transform: translateX(-50%);
    background: var(--color-accent-orange);
    color: white;
    text-align: center;
    border-radius: 3px;
    font-weight: bold;
    z-index: 999;
    text-wrap: nowrap;
    white-space: nowrap;
}

.webcam-start-box,
.webcam-streaming-box,
.webcam-chat-content {
    display: none;
}
@media (min-width: 767px) {
    body.webcam-enabled.chatroom-active:not(.webcam-streaming)
    .chatbox
    .division
    .left-column
    .chatlist
    .chatselectors {
        top: -30px;
        height: calc(100% + 30px);
    }
    body.webcam-enabled.chatroom-active.webcam-streaming
    .chatbox
    .division
    .left-column
    .chatlist
    .chatselectors {
        top: 65px;
        height: calc(100% - 65px);
    }

    .webcam-start-box {
        display: block;
        position: absolute;
        top: -85px;
        left: 0;
        width: 100%;
        height: 55px;
        line-height: 55px;
        background: var(--color-primary-purple-lighter);
        text-align: center;
    }
    body.webcam-streaming .webcam-start-box,
    body[data-active-tab="share"] .webcam-start-box {
        display: none;
    }
    body[data-active-tab="share"] .chat-button-holders {
        display: none;
    }

    .webcam-start-box a {
        padding: 6px 13px 6px 33px;
        border-radius: 3px;
        color: var(--color-text-purple-dark);
        font-size: 17px;
        background-color: var(--color-accent-orange);
        background-image: url(/assets/images/webcam_icon_start_cam.png);
        background-size: 15px 19px;
        background-repeat: no-repeat;
        background-position: 13px center;
    }

    .webcam-start-box a:hover {
        text-decoration: none;
        background-color: var(--color-accent-orange-dark);
    }

    body.webcam-streaming:not([data-active-tab='share']) .webcam-streaming-box {
        display: block;
        position: absolute;
        top: -85px;
        left: 0;
        width: 100%;
        height: 150px;
        background: var(--color-primary-purple-lighter);
        text-align: center;
    }
    .webcam-streaming-box .webcam-streaming-box-holder {
        position: relative;
        display: inline-block;
        border: 2px solid black;
        width: auto;
        height: 130px;
        margin-top: 10px;
    }
    .webcam-streaming-box .webcam-streaming-box-holder video {
        height: 126px;
        width: 168px;
        background: black;
    }
    .webcam-streaming-box .webcam-streaming-box-holder a {
        position: absolute;
        color: red;
        top: 0;
        right: 6px;
        font-size: 18px;
    }
    .webcam-streaming-box .webcam-streaming-box-holder::after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.4);
        width: 100%;
        height: 15px;
        text-align: center;
        line-height: 15px;
        font-size: 12px;
    }
    .webcam-streaming-box .webcam-streaming-box-holder.streaming-private::after {
        content: "private";
    }
    .webcam-streaming-box .webcam-streaming-box-holder.streaming-public::after {
        content: "public";
    }

    body.webcam-enabled.webcam-streaming.messaging-active:not(
      .chatroom-active
    ):not(.webcam-streaming-private-other)
    .chatbox
    .division
    .right-column
    .chat-content,
    body.webcam-enabled.webcam-private-active.messaging-active:not(
      .chatroom-active
    )
    .chatbox
    .division
    .right-column
    .chat-content {
        top: 200px;
        height: calc(100% - 250px);
    }
    body.webcam-enabled.webcam-streaming.messaging-active:not(
      .chatroom-active
    ):not([data-active-tab='share']):not(.webcam-streaming-private-other)
    .chatbox
    .division
    .right-column
    .webcam-chat-content,
    body.webcam-enabled.webcam-private-active.messaging-active:not([data-active-tab='share']):not(
      .chatroom-active
    )
    .chatbox
    .division
    .right-column
    .webcam-chat-content {
        top: 0;
        left: 0;
        display: block;
        position: absolute;
        width: 100%;
        height: 200px;
        padding: 10px 0;
        text-align: center;
        background: var(--color-primary-purple-darker);
    }
}

.webcam-chat-content .webcam-box {
    position: relative;
    display: inline-block;
    width: 240px;
    height: 180px;
    margin-right: 30px;
    border-radius: 3px;
    border: 1px solid #c5b5f2;
}
.webcam-chat-content .webcam-box:last-child {
    margin-right: 0;
}
.webcam-chat-content .webcam-box.your-cam video {
    display: none;
}
body.webcam-streaming:not(.webcam-streaming-private-other)
.webcam-chat-content
.webcam-box.your-cam
video {
    display: block;
}
.webcam-chat-content .webcam-box video,
.webcam-chat-content .webcam-box img {
    width: 100%;
    height: 100%;
    background: black;
    border-radius: 3px;
}
body.webcam-streaming:not(.webcam-streaming-private-other)
.webcam-chat-content
.webcam-box.your-cam,
body.webcam-private-active .webcam-chat-content .webcam-box.other-party {
    border: 0;
}
body:not(.webcam-private-active) .webcam-chat-content .webcam-box.other-party {
    cursor: pointer;
}

.webcam-chat-content .webcam-box.other-party img {
    display: none;
}
body.webcam-private-active .webcam-chat-content .webcam-box.other-party img {
    display: block;
}

.webcam-chat-content .webcam-box span {
    position: absolute;
    top: calc(50% - 12px);
    line-height: 28px;
    font-size: 20px;
    color: #c5b5f2;
    text-align: center;
    display: block;
    width: 100%;
}
body.webcam-streaming:not(.webcam-streaming-private-other)
.webcam-chat-content
.webcam-box.your-cam
span,
body.webcam-private-active .webcam-chat-content .webcam-box.other-party span {
    display: none;
}
.webcam-chat-content .webcam-box span strong {
    font-weight: normal;
    padding-left: 25px;
    display: inline-block;
    background-image: url(/assets/images/webcam_private_chat.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 18px;
}
.webcam-chat-content .webcam-box span strong u {
    text-decoration: none;
    font-weight: bold;
}
body:not(.webcam-streaming) .webcam-chat-content .webcam-box.your-cam {
    cursor: pointer;
}
.webcam-chat-content .webcam-box a {
    position: absolute;
    color: red;
    top: 0;
    right: 6px;
    font-size: 18px;
}
body:not(.webcam-streaming) .webcam-chat-content .webcam-box.your-cam a,
body.webcam-streaming.webcam-streaming-private-other
.webcam-chat-content
.webcam-box.your-cam
a {
    display: none;
}

.webcam-chat-content .name-box {
    display: none;
}

@media (max-width: 767px) {
    body.webcam-private-active .webcam-chat-content,
    body.webcam-streaming:not(.webcam-streaming-private-other):not(
      .chatroom-active
    )
    .webcam-chat-content {
        display: block;
        background: var(--color-primary-purple-darker);
        text-align: center;
        height: 190px;
    }

    body.webcam-private-active .webcam-chat-content .webcam-box.your-cam,
    body.webcam-streaming:not(.webcam-streaming-private-other):not(
      .chatroom-active
    )
    .webcam-chat-content
    .webcam-box.your-cam {
        position: absolute;
        width: 80px;
        height: 60px;
        top: 60px;
        left: calc(50% + 100px);
        border-radius: 0;
    }
    body.webcam-private-active:not(.webcam-streaming)
    .webcam-chat-content
    .webcam-box.your-cam {
        display: none;
    }
    body.webcam-private-active .webcam-chat-content .webcam-box.your-cam a,
    body.webcam-streaming:not(.webcam-streaming-private-other):not(
      .chatroom-active
    )
    .webcam-chat-content
    .webcam-box.your-cam
    a {
        font-size: 12px;
    }
    body.webcam-private-active .webcam-chat-content .webcam-box.your-cam video,
    body.webcam-streaming:not(.webcam-streaming-private-other):not(
      .chatroom-active
    )
    .webcam-chat-content
    .webcam-box.your-cam
    video {
        border: 1px solid var(--color-accent-green-darker);
        border-radius: 0;
    }
    body.webcam-private-active .webcam-chat-content .webcam-box.other-party,
    body.webcam-streaming:not(.webcam-streaming-private-other):not(
      .chatroom-active
    )
    .webcam-chat-content
    .webcam-box.other-party {
        margin: 4px auto 0 auto;
    }

    /*body.webcam-private-active .webcam-chat-content .name-box,
    body.webcam-streaming:not(.webcam-streaming-private-other) .webcam-chat-content .name-box {
        position:absolute;
        top:-13px;
        left:20%;
        display:block;
        width:60%;
        height:26px;
        z-index:3000;
    }
    body.webcam-private-active .webcam-chat-content .name-box span,
    body.webcam-streaming:not(.webcam-streaming-private-other) .webcam-chat-content .name-box span {
        display:inline-block;
        color:var(--color-white);
        border:1px solid var(--color-bg-dark);
        border-radius:3px;
        background:var(--color-primary-purple-dark);
        height:26px;
        line-height:26px;
        padding:0 20px;
    }*/

    body.webcam-private-active .chatbox .division .right-column .chat-content,
    body.webcam-streaming:not(.webcam-streaming-private-other):not(
      .chatroom-active
    )
    .chatbox
    .division
    .right-column
    .chat-content {
        top: 240px;
        height: calc(100% - 290px);
    }
}

a.btn_start_webcam {
    display: inline-block;
    text-align: left;
    height: 50px;
    position: relative;
    background-image: url(/assets/images/webcam_icon_start_cam.png);
    background-repeat: no-repeat;
    background-color: var(--color-accent-orange);
    color: var(--color-text-purple-dark);
    padding: 10px 10px 3px 35px;
    font-weight: bold;
    font-size: 15px;
    background-size: 20px;
    background-position: 10px center;
    border-radius: 3px;
    top: -13px;
    margin-right: 5px;
}
a.btn_start_webcam:hover {
    text-decoration: none;
    background-color: var(--color-accent-orange-dark);
}
a.btn_start_webcam span {
    line-height: 0;
    display: block;
    font-size: 12px;
}

.own_cam_holder {
    position: relative;
}
.own_cam_holder::after {
    content: "\f00d";
    font-family: "FontAwesome";
    display: block;
    position: absolute;
    top: -2px;
    right: 3px;
    color: red;
    font-size: 12px;
}
.own_cam_holder,
.other_cam_holder {
    display: inline-block;
    margin-right: 5px;
    width: 67px;
    height: 50px;
    box-sizing: border-box;
    border: 1px solid var(--color-accent-orange);
    border-radius: 2px;
    position: relative;
    top: 0;
}
.other_cam_holder {
    top: -21px;
}
.own_cam_holder video {
    width: 100%;
    height: 100%;
}
.other_cam_holder img {
    width: 100%;
    height: 100%;
}

.splitter {
    width: 2px;
    border-left: 1px solid var(--color-bg-dark);
    background: var(--color-border-gray-dark);
    height: 45px;
    margin: 0 10px 0 5px;
    display: inline-block;
    position: relative;
    top: -2px;
}

#alert_change_gender_once {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

@media (max-width: 420px) {
    .yellow_tabs_selectors a {
        margin-left: 2px;
        padding: 3px 8px;
    }
}
strong.breadcrumbs {
    font-size: 18px;
}
strong.breadcrumbs a {
    color: black;
    text-decoration: none;
}
strong.breadcrumbs a:hover {
    color: black;
    text-decoration: underline;
}
@media (max-width: 767px) {
    strong.breadcrumbs {
        display: block;
        font-size: 16px;
        margin-top: 20px;
    }
}

.location-users-block {
    margin-top: 30px;
}
.location-users-block a.main-link {
    color: white;
    font-size: 18px;
    border-bottom: 1px solid var(--color-accent-green-lime);
    display: block;
    padding-bottom: 1px;
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: none;
}
.location-users-block a.main-link:hover {
    text-decoration: underline;
}
.location-users-block ul {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
}
.location-users-block ul li:nth-child(even) a {
    background: transparent;
}
.location-users-block ul li:nth-child(odd) a {
    background: var(--color-primary-purple-dark);
}
.location-users-block ul li a {
    text-decoration: none !important;
    color: white !important;
    display: block;
    padding: 2px 10px;
}
.location-users-block ul li a:hover {
    color: var(--color-primary-purple-darker) !important;
    background: var(--color-accent-green-lime);
}
.location-users-block a.all-members {
    display: inline-block;
    background: var(--color-accent-green-lime);
    font-size: 11px;
    color: var(--color-primary-purple-darker);
    padding: 2px 6px;
    border-radius: 3px;
    text-decoration: none;
}
.location-users-block a.all-members span {
    display: inline;
    font-size: 11px;
    font-weight: bold;
}
.location-users-block a.all-members:hover {
    background: var(--color-accent-green-mint);
}

.user-block {
    display: block;
    background: var(--color-bg-gray);
    margin-top: 25px;
    height: 48px;
    line-height: 48px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    white-space: nowrap;
    text-wrap: nowrap;
    padding: 0 15px;
    position: relative;
    margin-left: 30px;
    border: 1px solid var(--color-bg-gray);
    color: black !important;
    text-decoration: none !important;
}
.user-block strong {
    padding-left: 30px;
}
.user-block:hover {
    border-color: var(--color-secondary);
    text-decoration: none !important;
}
.user-block::before {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    content: "";
    position: absolute;
    display: block;
    top: -7px;
    left: -30px;
    border: 1px solid var(--color-primary-purple-dark);

    background-image: var(--background);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pagination .page-item .page-link {
    background: transparent;
    border-color: black;
    color: black;
    margin: 0 5px;
    border-radius: 0 !important;
    padding: 10px 13px;
    border-width: 2px;
}
.pagination .page-item.active .page-link,
.pagination .page-item:not(.disabled):hover .page-link {
    border-color: var(--color-secondary);
}
a.text-link {
    color: black;
    text-decoration: underline;
}
a.text-link:hover {
    color: black;
    text-decoration: none;
}

.leaflet-control-attribution.leaflet-control {
    display: none !important;
}
.map-icon {
    width: 16px !important;
    height: 16px !important;
    margin-left: -8px !important;
    margin-top: -8px !important;
    border-radius: 50%;
    border: 2px solid white;
    box-sizing: border-box;
    background: var(--color-accent-green-mint);
}
#map[data-zoom="7"] .map-icon {
    width: 18px !important;
    height: 18px !important;
    margin-left: -9px !important;
    margin-top: -9px !important;
}
#map[data-zoom="8"] .map-icon {
    width: 20px !important;
    height: 20px !important;
    margin-left: -10px !important;
    margin-top: -10px !important;
}
#map[data-zoom="9"] .map-icon {
    width: 24px !important;
    height: 24px !important;
    margin-left: -12px !important;
    margin-top: -12px !important;
}
#map[data-zoom="10"] .map-icon {
    width: 28px !important;
    height: 28px !important;
    margin-left: -14px !important;
    margin-top: -14px !important;
}
.map-icon.visited {
    background: var(--color-footer);
}
.map-icon.visited.popup-active {
    background: var(--color-primary-purple-darkest);
}

.map-popup-purple .leaflet-popup-content-wrapper {
    background: var(--color-primary-purple-darkest);
    color: white;
    border-radius: 8px;
}
.map-popup-purple .leaflet-popup-tip {
    background: var(--color-primary-purple-darkest);
}
.leaflet-container .map-popup-purple a.leaflet-popup-close-button {
    color: white;
}
.leaflet-container .map-popup-purple a.leaflet-popup-close-button:focus,
.leaflet-container .map-popup-purple a.leaflet-popup-close-button:hover {
    color: #dedede;
}
.map-popup-purple .leaflet-popup-content {
    margin: 13px !important;
    text-align: center;
}
.map-popup-purple h2.block-title {
    font-size: 18px;
    margin-left: 15px;
    margin-right: 15px;
}
.map-popup-purple a.yellow-btn {
    padding: 6px 13px;
    border-radius: 2px;
    color: var(--color-text-purple-dark);
    font-size: 15px;
    background-color: var(--color-accent-orange);
    background-size: 15px 19px;
    background-repeat: no-repeat;
    background-position: 13px center;
}
.map-popup-purple a.yellow-btn:hover {
    text-decoration: none;
    background-color: var(--color-accent-orange-dark);
}
.map-popup-purple .image-holder {
    margin: 10px auto 20px auto;
    position: relative;
    height: 40px;
    width: 130px;
    cursor: pointer;
}
.map-popup-purple .image-holder div {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid white;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.map-popup-purple .image-holder div:nth-child(2) {
    left: 30px;
}
.map-popup-purple .image-holder div:nth-child(3) {
    left: 60px;
}
.map-popup-purple .image-holder div:nth-child(4) {
    left: 90px;
}

.map-popup-purple {
    bottom: -2px !important;
}
#map[data-zoom="7"] .map-popup-purple {
    bottom: -1px !important;
}
#map[data-zoom="8"] .map-popup-purple {
    bottom: 1px !important;
}
#map[data-zoom="8"] .map-popup-purple {
    bottom: 3px !important;
}
#map[data-zoom="9"] .map-popup-purple {
    bottom: 4px !important;
}
#map[data-zoom="10"] .map-popup-purple {
    bottom: 6px !important;
}

.city-map {
    width: 100%;
    padding-bottom: 60%;
    border-radius: 3px;
    background-size: cover;
    position: relative;
}
.city-map-link {
    color: black;
    text-decoration: underline;
}
.city-map-link:hover {
    text-decoration: none;
}
.city-map .marker {
    position: absolute;
    bottom: 25px;
    left: calc(50% - 8px);
    width: 16px !important;
    height: 16px !important;
    border-radius: 50%;
    border: 2px solid white;
    box-sizing: border-box;
    background: var(--color-primary-purple-darkest);
}
.city-map .popup {
    box-sizing: border-box;
    width: 200px;
    background: var(--color-primary-purple-darkest);
    padding: 10px;
    position: absolute;
    bottom: 50px;
    left: calc(50% - 100px);
    border-radius: 5px;
}
.city-map .popup::before {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background: var(--color-primary-purple-darkest);
    bottom: -5px;
    left: calc(50% - 5px);
    content: "";
    display: block;
    position: absolute;
}
.city-map .popup .leaflet-popup-content {
    margin: 13px !important;
    text-align: center;
}
.city-map .popup h2.block-title {
    font-size: 18px;
    margin-left: 15px;
    margin-right: 15px;
}
.city-map .popup a.yellow-btn {
    padding: 6px 13px;
    border-radius: 2px;
    color: var(--color-text-purple-dark);
    font-size: 15px;
    background-color: var(--color-accent-orange);
    background-size: 15px 19px;
    background-repeat: no-repeat;
    background-position: 13px center;
}
.city-map .popup a.yellow-btn:hover {
    text-decoration: none;
    background-color: var(--color-accent-orange-dark);
}
.city-map .popup .image-holder {
    margin: 10px auto 20px auto;
    position: relative;
    height: 40px;
    width: 130px;
    cursor: pointer;
}
.city-map .popup .image-holder div {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid white;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.city-map .popup .image-holder div:nth-child(2) {
    left: 30px;
}
.city-map .popup .image-holder div:nth-child(3) {
    left: 60px;
}
.city-map .popup .image-holder div:nth-child(4) {
    left: 90px;
}

.city-map .popup .image-holder div::before {
    content: "";
    display: block;
    background: var(--color-accent-green-bright);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    right: 4px;
}

.chat-button-holders-share,
.share-sidebar {
    display: none;
}
@media (min-width: 768px) {
    body[data-active-tab="share"] .chat-button-holders-share,
    body[data-active-tab="share"] .share-sidebar {
        display: block;
    }
}
.chat-button-holders-share a {
    font-size: 18px;
    padding-top: 11px;
    width: 100%;
    height: 45px;
    top: -12px;
    position: relative;
    background-position: 15px center;
    background-size: 24px;
    line-height: 45px;
    text-align: center;
}
body .chatbox .menubar .chat-button-holders-share div {
    display: inline-block;
    max-width: 200px;
}
.share-sidebar {
    color: white;
    position: absolute;
    top: -85px;
    left: 0;
    height: calc(100% + 85px);
    width: 100%;
    overflow-y: auto;
    padding: 56px 0 15px;
}
.share-sidebar span.title {
    display: block;
    text-align: center;
    color: white;
    font-size: 13px;
    font-weight: bold;
}
.share-sidebar span.header {
    display: block;
    text-align: left;
    color: white;
    font-size: 12px;
    border-bottom: 1px solid var(--color-primary-purple-dark);
    margin-bottom: 5px;
    padding-left: 2px;
}

.modal .share_new_content span.header {
    position: relative;
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: transparent;
    border-bottom: 1px solid black;
    width: 100%;
    font-size: 13px;
}
.modal .share_new_content span.header::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: attr(data-content);
    background: transparent;
    height: 20px;
    line-height: 20px;
    color: black;
    padding: 0;
}
.modal .share_new_content fieldset:valid ~ fieldset:invalid span.header {
    border-bottom-color: var(--color-accent-orange);
}
.modal
.share_new_content
fieldset:valid
~ fieldset:invalid
span.header::before {
    background: var(--color-accent-orange);
    padding: 0 5px;
}
.modal .share_new_content fieldset:invalid ~ fieldset:invalid span.header {
    border-bottom-color: black !important;
}
.modal
.share_new_content
fieldset:invalid
~ fieldset:invalid
span.header::before {
    background: transparent !important;
    padding: 0 !important;
}
.modal .share_new_content select[name="type"]:invalid {
    border-color: var(--color-accent-orange);
}
.modal
.share_new_content
fieldset:invalid
~ fieldset:invalid
input:not([type="submit"]):not([type="file"]),
.modal .share_new_content fieldset:invalid ~ fieldset:invalid select,
.modal .share_new_content fieldset:invalid ~ fieldset:invalid textarea {
    border-color: #999;
}
.modal .share_new_content fieldset:valid span.header {
    border-bottom-color: var(--color-accent-green-light) !important;
}
.modal .share_new_content fieldset:valid span.header::before {
    background: var(--color-accent-green-light) !important;
    color: white;
    padding: 0 5px !important;
}

form.share_new_content {
    padding: 0 15px;
}
.share_new_content select {
    outline: none;
    width: 100%;
    text-align: center;
    height: 40px;
    border: 2px solid white;
    border-radius: 2px;
    font-size: 13px;
    font-weight: bold;
}
.modal .share_new_content select {
    border-color: #999999;
}
.share_new_content select.smaller {
    border: 0;
    height: 30px;
}
.share_new_content textarea {
    width: 100%;
    height: 70px;
    border-radius: 2px;
    border: 1px solid white;
    outline: none;
}
.modal .share_new_content textarea {
    border-color: #999999;
}
.share_new_content input[type="text"] {
    outline: none;
    width: 100%;
    text-align: left;
    height: 40px;
    border: 2px solid white;
    border-radius: 2px;
    font-size: 13px;
    font-weight: bold;
}
.modal .share_new_content input[type="text"] {
    border-color: #999999;
}
*[data-field-visible^="social-"],
*[data-field-visible="phone"] {
    position: relative;
}
.share_new_content input[type="text"] + span.vertical-line {
    position: absolute;
    left: 34px;
    bottom: 9px;
    width: 2px;
    height: 22px;
    background: #c2c0c7;
}
.share_new_content input[type="text"]:focus::placeholder {
    color: transparent;
}
.share_new_content input[type="text"]::placeholder {
    font-weight: normal;
    color: #c2c0c7;
    font-style: italic;
}
.share_new_content input:not([type="submit"]):not([type="file"]):invalid,
.share_new_content select:invalid,
.share_new_content textarea:invalid {
    border-color: var(--color-accent-orange);
}
.modal .share_new_content input:not([type="submit"]):not([type="file"]):valid,
.share_new_content select:valid,
.share_new_content textarea:valid {
    border-color: var(--color-accent-green-light);
}
.share_new_content input[type="text"].social-platform-logo,
.share_new_content input[type="text"].phone-logo {
    padding-left: 40px;
    background-size: 20px 20px;
    background-position: 5px center;
    background-repeat: no-repeat;
}
input[type="text"].social-platform-logo[name="social_tiktok"] {
    background-image: url(/assets/images/platforms/tiktok.png);
}
input[type="text"].social-platform-logo[name="social_instagram"] {
    background-image: url(/assets/images/platforms/instagram.png);
}
input[type="text"].social-platform-logo[name="social_facebook"] {
    background-image: url(/assets/images/platforms/facebook.png);
}
input[type="text"].social-platform-logo[name="social_snapchat"] {
    background-image: url(/assets/images/platforms/snapchat.png);
}
input[type="text"].social-platform-logo[name="social_kik"] {
    background-image: url(/assets/images/platforms/kik.png);
}
input[type="text"].social-platform-logo[name="social_onlyfans"] {
    background-image: url(/assets/images/platforms/onlyfans.png);
}
input[type="text"].social-platform-logo[name="social_telegram"] {
    background-image: url(/assets/images/platforms/telegram.png);
}
input[type="text"].social-platform-logo[name="social_whatsapp"] {
    background-image: url(/assets/images/platforms/whatsapp.png);
}
input[type="text"].social-platform-logo[name="social_other"] {
    padding-left: 5px;
}
input[type="text"].phone-logo {
    background-image: url(/assets/images/uk_icon.png);
    background-size: 20px 13px !important;
}
.share_new_content .add-image-holder {
    width: 100%;
}
.share_new_content .add-image-holder .main-block {
    padding: 5px;
    background: white;
    border-radius: 2px;
}
.share_new_content .add-image-holder .main-block input[type="file"] {
    color: black;
    max-width: 100%;
}
.share_new_content .add-image-holder .image-previews {
    width: 100%;
    margin-top: 5px;
    position: relative;
}
.share_new_content .add-image-holder .image-previews .preview-image {
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 22%;
    padding-bottom: 16.5%;
    margin: 0 2% 0 2%;
    border: 2px solid white;
    box-sizing: border-box;
    cursor: pointer;
}
.share_new_content .add-image-holder .image-previews .preview-image.add-image {
    background: var(--color-accent-orange);
    position: relative;
}
.share_new_content
.add-image-holder
.image-previews
.preview-image.add-image::before {
    content: "+";
    display: block;
    width: 100%;
    height: 28px;
    line-height: 28px;
    font-size: 28px;
    top: calc(50% - 14px);
    position: absolute;
    left: 0;
    text-align: center;
    color: var(--color-text-purple-dark);
}
.share_new_content .add-image-holder .image-previews .preview-image:hover {
    border-color: var(--color-accent-orange);
}
.share_new_content
.add-image-holder
.image-previews
.preview-image:nth-child(4n) {
    margin-right: 0;
}
.share_new_content .add-image-holder .image-previews .preview-image:first-child,
.share_new_content
.add-image-holder
.image-previews
.preview-image:nth-child(5),
.share_new_content
.add-image-holder
.image-previews
.preview-image:nth-child(9) {
    margin-left: 0;
}
.share_new_content input[type="submit"] {
    background: var(--color-accent-orange);
    padding: 2px 13px;
    border-radius: 3px;
    color: var(--color-text-purple-dark);
    font-size: 13px;
    border: 0;
    display: block;
    width: 100%;
    font-weight: bold;
    height: 50px;
    line-height: 48px;
    cursor: pointer;
}
.share_new_content input[type="submit"]:hover {
    background: var(--color-accent-orange-dark);
}

.modal .share_new_content input[type="submit"] {
    background: var(--color-accent-green-light);
    color: white;
}
.modal .share_new_content input[type="submit"]:hover {
    background: var(--color-accent-green-lighter);
    color: white;
}
.modal .share_new_content fieldset:invalid ~ div input[type="submit"] {
    background: var(--color-accent-orange);
    color: var(--color-text-purple-dark);
}
.modal .share_new_content fieldset:invalid ~ div input[type="submit"]:hover {
    background: var(--color-accent-orange-dark);
    color: var(--color-text-purple-dark);
}

.share-tab {
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.share-tab .share-highlight-block {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid var(--color-primary-purple-darker);
    border-radius: 2px;
    background: var(--color-primary-purple-darker);
    cursor: pointer;
}
.share-tab .share-highlight-block:hover {
    border-color: var(--color-accent-orange);
}
.share-highlight-block span.title {
    font-size: 12px;
    font-weight: bold;
    color: var(--color-accent-orange);
    margin-bottom: 4px;
    display: inline-block;
}
.share-highlight-image-block {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border: 1px solid var(--color-border-gray-darker);
    background-color: var(--color-primary-purple-dark);
    background-position: center;
    background-size: cover;
    border-radius: 2px;
    cursor: pointer;
}
.share-highlight-image-block:hover {
    border-color: var(--color-accent-orange);
}
.share-highlight-image-block.share-highlight-image-block-view-all {
    background: var(--color-accent-orange);
    position: relative;
}
@media (max-width: 767px) {
    div[data-target-view-all="social"]
    .share-highlight-image-block.share-highlight-image-block-view-all,
    div[data-target-view-all="popular"]
    .share-highlight-image-block.share-highlight-image-block-view-all,
    div[data-target-view-all="new_users"]
    .share-highlight-image-block.share-highlight-image-block-view-all {
        top: -15px;
    }
}
.share-highlight-image-block.share-highlight-image-block-view-all span {
    position: absolute;
    left: calc(50% - 50px);
    width: 100px;
    text-align: center;
}
.share-highlight-image-block.share-highlight-image-block-view-all
span:first-child {
    top: 15px;
    left: calc(50% - 37px);
    font-weight: bold;
    color: white;
    background: var(--color-primary-purple-dark);
    width: 74px;
    height: 20px;
    line-height: 20px;
    transform: rotate(-5deg);
}
.share-highlight-image-block.share-highlight-image-block-view-all
span:nth-child(2) {
    /*height:20px;*/
    width: 70px;
    left: calc(50% - 35px);
    top: calc(50% - 5px);
    background: #f4cf95;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 10px;
}
.share-highlight-image-block.share-highlight-image-block-view-all
span:nth-child(3) {
    bottom: 5px;
    color: var(--color-primary-purple-dark);
    font-size: 28px;
    font-family: Arial, serif;
}
@media (min-width: 768px) and (max-width: 1100px) {
    .share-highlight-image-block.share-highlight-image-block-view-all
    span:nth-child(3) {
        display: none;
    }
    .share-highlight-image-block.share-highlight-image-block-view-all
    span:nth-child(2) {
        top: auto;
        bottom: 10px;
    }
}
@media (min-width: 768px) and (max-width: 930px) {
    .share-highlight-image-block.share-highlight-image-block-view-all
    span:first-child {
        top: 10px;
        font-size: 12px;
        width: 60px;
        left: calc(50% - 30px);
    }
    .share-highlight-image-block.share-highlight-image-block-view-all
    span:nth-child(2) {
        font-size: 8px;
        width: 60px;
        left: calc(50% - 30px);
    }
}
@media (min-width: 768px) and (max-width: 860px) {
    .share-highlight-image-block.share-highlight-image-block-view-all
    span:first-child {
        top: 5px;
        font-size: 10px;
        width: 46px;
        left: calc(50% - 23px);
    }
    .share-highlight-image-block.share-highlight-image-block-view-all
    span:nth-child(2) {
        font-size: 8px;
        width: 60px;
        left: calc(50% - 30px);
        bottom: 5px;
    }
}

.share-highlight-image-block.share-highlight-image-social:not(
    .share-highlight-no-uname
  ),
.share-highlight-image-block.share-highlight-users-block {
    margin-bottom: 15px;
}
@media (max-width: 767px) {
    .share-highlight-image-block.share-highlight-like-block {
        margin-bottom: 15px;
    }
}
.share-highlight-image-block.share-highlight-image-social span.uname,
.share-highlight-image-block.share-highlight-users-block span.uname {
    position: absolute;
    display: block;
    width: 100%;
    height: 15px;
    line-height: 15px;
    bottom: -18px;
    left: 0;
    color: white;
    font-size: 12px;
}
.share-highlight-image-block.share-highlight-like-block span.likes {
    position: absolute;
    display: block;
    width: 100%;
    height: 15px;
    line-height: 15px;
    bottom: -18px;
    left: 0;
    color: white;
    font-size: 12px;
    padding-left: 18px;
    background-image: url(/assets/images/likes_icon_small.png);
    background-size: 14px 14px;
    background-position: left center;
    background-repeat: no-repeat;
}
.share-highlight-image-block.share-highlight-image-social:not(
    .share-highlight-platform-other
  )::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: white;
    background-size: 15px 15px;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--color-accent-orange);
}
.share-highlight-image-block.share-highlight-image-social.share-highlight-platform-tiktok::after {
    background-image: url(/assets/images/platforms/tiktok.png);
}
.share-highlight-image-block.share-highlight-image-social.share-highlight-platform-instagram::after {
    background-image: url(/assets/images/platforms/instagram.png);
}
.share-highlight-image-block.share-highlight-image-social.share-highlight-platform-facebook::after {
    background-image: url(/assets/images/platforms/facebook.png);
}
.share-highlight-image-block.share-highlight-image-social.share-highlight-platform-snapchat::after {
    background-image: url(/assets/images/platforms/snapchat.png);
}
.share-highlight-image-block.share-highlight-image-social.share-highlight-platform-kik::after {
    background-image: url(/assets/images/platforms/kik.png);
}
.share-highlight-image-block.share-highlight-image-social.share-highlight-platform-onlyfans::after {
    background-image: url(/assets/images/platforms/onlyfans.png);
}
.share-highlight-image-block.share-highlight-image-social.share-highlight-platform-telegram::after {
    background-image: url(/assets/images/platforms/telegram.png);
}
.share-highlight-image-block.share-highlight-image-social.share-highlight-platform-whatsapp::after {
    background-image: url(/assets/images/platforms/whatsapp.png);
}

.share-highlight-image-block.share-highlight-image-photos::before {
    display: block;
    position: absolute;
    bottom: 6px;
    right: 11px;
    width: 20px;
    height: 20px;
    background-size: 100%;
    background-image: url(/assets/images/pictures_icon.png);
    color: white;
    line-height: 17px;
    box-sizing: border-box;
    padding-left: 5px;
    font-size: 10px;
}
.share-highlight-image-block.share-highlight-image-photos.image-block-plus::before {
    right: 6px;
}
.share-highlight-image-block.share-highlight-image-photos.amount-1::before {
    content: "1";
}
.share-highlight-image-block.share-highlight-image-photos.amount-2::before {
    content: "2";
}
.share-highlight-image-block.share-highlight-image-photos.amount-3::before {
    content: "3";
}
.share-highlight-image-block.share-highlight-image-photos.amount-4::before {
    content: "4";
}
.share-highlight-image-block.share-highlight-image-photos.amount-5::before {
    content: "5";
}
.share-highlight-image-block.share-highlight-image-photos.amount-6::before {
    content: "6";
}
.share-highlight-image-block.share-highlight-image-photos.amount-7::before {
    content: "7";
}
.share-highlight-image-block.share-highlight-image-photos.amount-8::before {
    content: "8";
}
.share-highlight-image-block.share-highlight-image-photos.amount-9::before {
    content: "9";
}
.share-highlight-image-block.share-highlight-image-photos.amount-10::before {
    content: "10";
    padding-left: 2px;
}
.share-highlight-image-block.share-highlight-image-photos.amount-11::before {
    content: "11";
    padding-left: 2px;
}
.share-highlight-image-block.share-highlight-image-photos.amount-12::before {
    content: "12";
    padding-left: 2px;
}
.share-highlight-image-block.share-highlight-image-photos.amount-13::before {
    content: "13";
    padding-left: 2px;
}
.share-highlight-image-block.share-highlight-image-photos.amount-14::before {
    content: "14";
    padding-left: 2px;
}
.share-highlight-image-block.share-highlight-image-photos.amount-15::before {
    content: "15";
    padding-left: 2px;
}
.share-highlight-image-block.share-highlight-image-photos.amount-16::before {
    content: "16";
    padding-left: 2px;
}
.share-highlight-image-block.share-highlight-image-photos.amount-17::before {
    content: "17";
    padding-left: 2px;
}
.share-highlight-image-block.share-highlight-image-photos.amount-18::before {
    content: "18";
    padding-left: 2px;
}
.share-highlight-image-block.share-highlight-image-photos.amount-19::before {
    content: "19";
    padding-left: 2px;
}
.share-highlight-image-block.share-highlight-image-photos.amount-20::before {
    content: "20";
    padding-left: 2px;
}

.share-highlight-image-block.image-block-plus {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 100%;
    margin-top: 15px;
}
.share-highlight-image-block.image-block-plus:hover {
    border-color: var(--color-accent-orange);
}
.share-highlight-image-block.image-block-plus span.likes {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 17px;
    font-size: 11px;
    text-align: right;
    background-color: var(--color-primary-purple-darker);
    padding: 0 21px 1px 3px;
    background-image: url(/assets/images/likes_icon_small.png);
    background-size: 14px 14px;
    background-position: right 3px center;
    background-repeat: no-repeat;
}
.share-highlight-image-block.image-block-plus.share-highlight-ranked
span.likes {
    background-size: 20px 20px;
    height: 23px;
    line-height: 23px;
    padding-right: 28px;
    font-size: 14px;
}
.share-highlight-image-block.image-block-plus span.name {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    text-align: left;
    font-size: 12px;
    padding-left: 2px;
}
.share-highlight-image-block.image-block-plus.image-block-social::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 17px;
    font-size: 11px;
    text-align: left;
    background-color: var(--color-primary-purple-darker);
    padding: 0 21px 1px 3px;
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-instagram::before {
    content: "Instagram";
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-facebook::before {
    content: "Facebook";
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-kik::before {
    content: "KIK";
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-telegram::before {
    content: "Telegram";
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-onlyfans::before {
    content: "OnlyFans";
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-whatsapp::before {
    content: "WhatsApp";
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-tiktok::before {
    content: "TikTok";
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-other::before {
    content: "Other";
}

.share-highlight-image-block.image-block-plus.image-block-social:not(
    .image-block-platform-other
  )::after {
    content: "";
    display: block;
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 25px;
    height: 25px;
    background-size: 15px 15px;
    border: 1px solid var(--color-accent-orange);
    background-color: white;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-instagram::after {
    background-image: url(/assets/images/platforms/instagram.png);
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-facebook::after {
    background-image: url(/assets/images/platforms/facebook.png);
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-snapchat::after {
    background-image: url(/assets/images/platforms/snapchat.png);
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-kik::after {
    background-image: url(/assets/images/platforms/kik.png);
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-telegram::after {
    background-image: url(/assets/images/platforms/telegram.png);
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-onlyfans::after {
    background-image: url(/assets/images/platforms/onlyfans.png);
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-whatsapp::after {
    background-image: url(/assets/images/platforms/whatsapp.png);
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-tiktok::after {
    background-image: url(/assets/images/platforms/tiktok.png);
}

.share-highlight-block .row,
.row.row-low-padding {
    margin-left: -5px;
    margin-right: -5px;
}
.share-highlight-block .row .col-2,
.row.row-low-padding .col-2,
.row.row-low-padding .col-6 {
    padding-right: 5px;
    padding-left: 5px;
}
.share-highlight-block div.text-right {
    margin-top: 4px;
}
.share-highlight-block a {
    color: white;
    font-size: 11px;
}
.white-back-link {
    font-size: 13px;
    display: inline-block;
    background: var(--color-accent-orange);
    color: var(--color-text-purple-dark);
    border-radius: 2px;
    padding: 3px 10px;
}
.white-back-link:hover {
    background: var(--color-accent-orange-dark);
    text-decoration: none;
    color: var(--color-text-purple-dark);
}
@media (min-width: 768px) {
    .white-back-link {
        margin-top: 5px;
    }
}
.share_new_content {
    position: relative;
}
.modal .share_new_content {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.holder_share_submit_loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(53, 42, 75, 0.9);
}
.holder_share_submit_loader .loader-block {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 20px 10px;
    height: auto;
    border: 1px solid var(--color-accent-orange);
    color: var(--color-accent-orange);
    border-radius: 2px;
}
.holder_share_submit_loader .loader-block span {
    display: block;
    margin-top: 10px;
}
.inner-tabs {
    width: 100%;
    min-height: 200px;
    background: var(--color-primary-purple-darker);
    margin-top: 40px;
    position: relative;
}
.inner-tabs .tab-headers {
    position: absolute;
    top: -40px;
    left: 0;
    height: 40px;
    width: 100%;
    text-align: center;
}
.inner-tabs .tab-headers .select-tab-header {
    background: var(--color-primary-purple-darker);
    display: inline-block;
    padding: 10px 10px;
    margin-left: -10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.inner-tabs .tab-headers .select-tab-header select {
    background: white;
    color: black;
    border-radius: 0;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid var(--color-primary-purple-darker);
    outline: none;
    text-align: center;
}
.inner-tabs .tab-headers a {
    padding: 0 25px;
    font-size: 11px;
    color: white;
    background: var(--color-bg-dark);
    display: inline-block;
    height: 26px;
    line-height: 26px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: relative;
    top: 3px;
}
.inner-tabs .tab-headers a.active {
    background: var(--color-primary-purple-darker);
    height: 31px;
    line-height: 31px;
    top: 0;
    color: var(--color-accent-orange);
    font-weight: bold;
    cursor: default;
}
.inner-tabs .tab-headers a:not(.active):hover {
    background: #453c5c;
}
.inner-tabs .tab-headers a:hover {
    text-decoration: none;
}
.inner-tabs .inner-tab {
    display: none;
    color: white;
    padding: 10px;
}
.inner-tabs .inner-tab.active {
    display: block;
}
body.share-active .mobile-chat-header {
    display: none !important;
}
body.share-active .mobile-chat-header .profile-image {
    display: none !important;
}
body.share-active .mobile-chat-header .chat-uname {
    display: none !important;
}
body.share-active .mobile-chat-header .profile-distance {
    display: none !important;
}
body.share-active .chat-content {
    display: none !important;
}
body.share-active .chat-input {
    display: none !important;
}
body.share-active #btn_start_webcam_private_header_mobile {
    display: none !important;
}
#btn_share_mobile {
    display: none;
}
@media (max-width: 767px) {
    body.share-active .share-tab {
        height: 100%;
    }
    body.share-active .mobile-chat-header {
        background-color: var(--color-primary-purple-dark);
    }
    body.share-active #holder_share_overview {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    body.share-active .share-highlight-block {
        margin-top: 20px;
        border: 0;
        padding-right: 0;
        position: relative;
        padding-top: 15px;
    }
    body.share-active .share-highlight-block .row {
        display: block;
        max-width: none;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    body.share-active .share-highlight-block .row .col-2 {
        max-width: 150px;
        display: inline-block;
    }
    body.share-active .share-highlight-block a {
        margin-right: 15px;
        display: inline-block;
        background: var(--color-accent-orange);
        border-radius: 2px;
        padding: 6px 18px;
        color: var(--color-text-purple-dark);
        margin-bottom: 5px;
        font-weight: bold;
    }
    body.share-active .share-highlight-block a:hover {
        text-decoration: none;
        background: var(--color-accent-orange-dark);
    }
    body.share-active .share-highlight-block span.title {
        color: white;
        font-size: 11px;
        position: absolute;
        top: -20px;
        left: 10px;
        background: var(--color-primary-purple-darker);
        padding: 0 10px;
        height: 20px;
        line-height: 20px;
        border-top-left-radius: 2px;
        border-top-right-radius: 2px;
    }
    body.share-active #btn_share_mobile {
        position: absolute;
        top: 5px;
        right: 7px;
        background-color: var(--color-accent-orange);
        display: block;
        color: var(--color-text-purple-dark);
        width: auto;
        height: 50px;
        line-height: 50px;
        padding: 0 15px 0 15px;
        font-weight: bold;
        background-size: 20px;
        background-position: 10px center;
        border-radius: 3px;
        text-transform: uppercase;
        font-size: 12px;
    }
    body.share-active #btn_share_mobile:hover {
        background: var(--color-accent-orange-dark);
        text-decoration: none;
    }
}

.reset_link {
    color: var(--color-accent-orange) !important;
    font-size: 11px;
}

.share-mobile-menu {
    display: none;
    height: 40px;
}
@media (max-width: 767px) {
    .share-mobile-menu {
        display: block;
    }
}

.share-mobile-menu .white-back-link {
    margin-left: 10px;
    margin-top: 15px;
    display: inline-block;
    background: var(--color-accent-orange);
    color: var(--color-text-purple-dark);
    border-radius: 2px;
    padding: 3px 10px;
}
.share-mobile-menu .white-back-link:hover {
    background: var(--color-accent-orange-dark);
    text-decoration: none;
}

.btn.btn-yellow {
    display: block;
    width: 100%;
    padding: 10px 0;
    background: var(--color-accent-orange);
    text-decoration: none !important;
    color: var(--color-text-purple-dark);
    border-radius: 3px;
    font-weight: bold;
}
.btn.btn-yellow:hover {
    background: var(--color-accent-orange-dark);
}

.package-info-box {
    background: #d9e9e2;
    padding: 5px 10px;
    max-width: 300px;
    margin: auto;
}
.package-info-box.package-info-social {
    padding-top: 20px;
    position: relative;
    margin-top: 15px;
}
.package-info-box.package-info-social::before {
    content: "";
    display: block;
    position: absolute;
    top: -20px;
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d9e9e2;
    background-size: 25px 25px;
    background-position: center;
    background-repeat: no-repeat;
}
.package-info-box.package-info-social.package-platform-tiktok::before {
    background-image: url(/assets/images/platforms/tiktok.png);
}
.package-info-box.package-info-social.package-platform-instagram::before {
    background-image: url(/assets/images/platforms/instagram.png);
}
.package-info-box.package-info-social.package-platform-facebook::before {
    background-image: url(/assets/images/platforms/facebook.png);
}
.package-info-box.package-info-social.package-platform-snapchat::before {
    background-image: url(/assets/images/platforms/snapchat.png);
}
.package-info-box.package-info-social.package-platform-kik::before {
    background-image: url(/assets/images/platforms/kik.png);
}
.package-info-box.package-info-social.package-platform-onlyfans::before {
    background-image: url(/assets/images/platforms/onlyfans.png);
}
.package-info-box.package-info-social.package-platform-telegram::before {
    background-image: url(/assets/images/platforms/telegram.png);
}
.package-info-box.package-info-social.package-platform-whatsapp::before {
    background-image: url(/assets/images/platforms/whatsapp.png);
}

.other-images-holder {
    max-width: 300px;
    margin: 10px auto 0;
    text-align: center;
}
.small_image_preview {
    display: inline-block;
    width: 80px;
    height: 60px;
    border: 2px solid #d9e9e2;
    border-radius: 2px;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.small_image_preview:hover,
.small_image_preview.active {
    border-color: var(--color-primary-purple-dark);
}

#btn_share_new {
    height: 59px;
    line-height: 59px;
    margin-top: 24px;
    padding: 0 39px;
}

.profile-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 1px;
}
.profile-image-overlay div {
    position: absolute;
    width: 66%;
    padding-bottom: 62.67%;
    left: 17%;
    top: 6%;
    border-radius: 50%;
    border: 2px solid var(--color-primary-purple-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.profile-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 1px;
}
.share-highlight-image-block.image-block-plus .profile-image-overlay {
    top: 17px;
    height: calc(100% - 17px);
}
.share-highlight-image-block.image-block-plus .profile-image-overlay div {
    top: 12%;
}

#holder_share_overview_popular
div:nth-child(1)
.share-highlight-image-block::before,
#holder_share_overview_popular
div:nth-child(2)
.share-highlight-image-block::before,
#holder_share_overview_popular
div:nth-child(3)
.share-highlight-image-block::before,
#holder_share_popular
.row.row-low-padding
div:nth-child(1)
.share-highlight-ranked::before,
#holder_share_popular
.row.row-low-padding
div:nth-child(2)
.share-highlight-ranked::before,
#holder_share_popular
.row.row-low-padding
div:nth-child(3)
.share-highlight-ranked::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 34px;
    background-image: url(/assets/images/ranking1_icon.png);
    background-position: center;
    background-size: cover;
    bottom: -20px;
    left: calc(50% - 13px);
}
#holder_share_popular
.row.row-low-padding
div:nth-child(1)
.share-highlight-ranked::before,
#holder_share_popular
.row.row-low-padding
div:nth-child(2)
.share-highlight-ranked::before,
#holder_share_popular
.row.row-low-padding
div:nth-child(3)
.share-highlight-ranked::before {
    width: 40px;
    height: 52px;
}
#holder_share_overview_popular
div:nth-child(2)
.share-highlight-image-block::before,
#holder_share_popular
.row.row-low-padding
div:nth-child(2)
.share-highlight-ranked::before {
    background-image: url(/assets/images/ranking2_icon.png);
}
#holder_share_overview_popular
div:nth-child(3)
.share-highlight-image-block::before,
#holder_share_popular
.row.row-low-padding
div:nth-child(3)
.share-highlight-ranked::before {
    background-image: url(/assets/images/ranking3_icon.png);
}
@media (max-width: 767px) {
    #holder_share_popular .row.row-low-padding .share-highlight-ranked::before {
        left: 8px !important;
        bottom: 3px !important;
        width: 26px !important;
        height: 34px !important;
    }
}

.like-amount-holder {
    display: inline-block;
    position: relative;
}
.like-amount-holder span {
    color: white;
    display: block;
    position: absolute;
    text-align: center;
    left: 0;
    top: 11px;
    width: 100%;
    font-size: 12px;
    font-weight: bold;
}

select[name="offline_filter_city"] {
    width: 100%;
    height: 40px;
    background: white;
    text-align: center;
    line-height: 40px;
    border: 0;
    color: black;
    border-radius: 0;
    font-weight: bold;
}

input.verification_code_part {
    display: inline-block;
    border: 1px solid var(--color-secondary);
    border-radius: 3px;
    width: 30px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    outline: none;
}
input.verification_code_part:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--color-secondary);
}
input.verification_code_part:valid {
    border-color: var(--color-accent-green-darker);
    font-weight: bold;
}
#modal_verification_phone .alert {
    color: black;
}

input.verification_code_part::-webkit-outer-spin-button,
input.verification_code_part::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input.verification_code_part[type="number"] {
    -moz-appearance: textfield;
}

.holder-emoji-picker {
    z-index: 5001;
    display: block;
    position: absolute;
    width: 226px;
    height: 226px;
    background: white;
    border-radius: 3px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    border: 1px var(--color-emoji-border) solid;
}
.holder-emoji-picker::after {
    z-index: 5000;
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    bottom: -10px;
    left: calc(50% - 10px);
    border: 1px var(--color-emoji-border) solid;
    border-top: 0;
    border-left: 0;
}
.holder-emoji-picker .header {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid var(--color-emoji-border);
    box-sizing: border-box;
    text-align: center;
}
.holder-emoji-picker .header .header-item {
    width: 40px;
    height: 40px;
    font-size: 25px;
    text-align: center;
    opacity: 0.4;
    display: inline-block;
    cursor: pointer;
}
.holder-emoji-picker .header .header-item.active,
.holder-emoji-picker .header .header-item:hover {
    opacity: 1;
}
.holder-emoji-picker .emoji-list {
    z-index: 5002;
    position: absolute;
    width: 100%;
    height: calc(100% - 40px);
    top: 40px;
    left: 0;
    border-radius: 3px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: center;
    padding: 5px 0;
    display: none;
}
.holder-emoji-picker .emoji-list.active {
    display: block;
}
.holder-emoji-picker .emoji-list .emoji-list-item {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    opacity: 1;
    border: 1px solid white;
}
.holder-emoji-picker .emoji-list .emoji-list-item:hover {
    border-color: var(--color-emoji-border);
}

i.in-text-emoji {
    display: inline;
    font-style: normal;
    font-size: 1.6em;
    line-height: 1em;
}
@media (max-width: 767px) {
    .holder-emoji-picker {
        display: none !important;
    }
}

#cookie-bar-button-no {
    background: transparent !important;
}

/*body:not(.paid-user)[data-chat-gender='F'] .webcam-box.other-party {
    overflow:hidden;
}
body:not(.paid-user)[data-chat-gender='F'] .webcam-box.other-party img {
    filter:blur(16px);
}
.chat-webcam-paid-only {
    display:none;
    position:absolute;
    bottom:50px;
    left:0;
    width:100%;
    height:45px;
    text-align:center;
    cursor:pointer;
}
.chat-webcam-paid-only span {
    color:var(--color-primary-purple-dark);
    font-weight:normal;
    font-size:14px;
    display:inline-block;
    margin-bottom:5px;
    background-image:url(/assets/images/icon_alert_credits.png);
    background-size:20px 20px;
    background-position:10px center;
    background-repeat:no-repeat;
    background-color:var(--color-accent-yellow);
    padding:5px 10px 5px 37px;
    border-radius:4px;
}
.chat-webcam-paid-only span a {
    color:var(--color-primary-purple-dark);
    text-decoration:underline;
}
.chat-webcam-paid-only span a:hover {
    color:var(--color-primary-purple-dark);
    text-decoration:none;
}
@media (max-width:767px) {
    .chat-webcam-paid-only {
        padding:0 15px;
        height:auto;
    }
}
body[data-active-tab='offline'] .chat-webcam-paid-only,
body[data-active-tab='share'] .chat-webcam-paid-only {
    display:none !important;
}
body.chatroom-active .chat-webcam-paid-only {
    display:none !important;
}
body:not(.paid-user)[data-chat-gender='F'].webcam-private-active .chat-no-credits {
    display:none !important;
}
body:not(.paid-user)[data-chat-gender='F'].webcam-private-active .chat-webcam-paid-only {
    display:block;
} XX ML: blurred webcams for free users */

.credits-v2 .credit-package {
    text-align: left;
    padding: 15px 25px;
    background: var(--color-bg-lighter);
    border-color: var(--color-bg-gray-darker);
    border-radius: 4px;
    border-width: 2px;
    position: relative;
}
.credits-v2 .credit-package.best-deal {
    border-color: var(--color-credit-best-deal);
    background-color: var(--color-credit-best-deal-bg);
}
.credits-v2 .credit-package:hover {
    border-color: var(--color-border-yellow);
}
.credits-v2 .credit-package ul {
    width: auto;
    margin: 0;
    color: black;
    font-size: 13px;
    min-height: auto;
}
.credits-v2 .credit-package ul li {
    padding-left: 25px;
    background-image: url(/assets/images/checkmark_small.png);
    background-size: 15px 15px;
    line-height: 15px;
    background-position: left center;
    background-repeat: no-repeat;
    margin-bottom: 5px;
}
.credits-v2 .credit-package:not(.credit-package-method) ul li:last-child {
    background-image: url(/assets/images/verified_small.png);
}
.credits-v2 .credit-package span.amount {
    color: var(--color-primary-purple-dark);
    font-size: 20px;
}
.credits-v2 .credit-package span.pricing {
    color: white;
    background: rgb(0, 141, 99);
    width: 80px;
    height: 55px;
    font-size: 18px;
    display: block;
    position: absolute;
    right: 25px;
    top: 15px;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    line-height: 35px;
}
.credits-v2 .credit-package span.pricing span {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    font-weight: normal;
    background: rgb(0, 113, 75);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.credits-v2 .credit-package span.discount {
    color: var(--color-primary-purple-dark);
    background: var(--color-accent-yellow);
    display: block;
    position: absolute;
    top: 75px;
    right: 25px;
    border-radius: 4px;
    width: 80px;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    height: 20px;
    line-height: 20px;
}
.credits-v2 ul.small-text {
    display: none;
}
@media (max-width: 450px) {
    .credits-v2 .credit-package {
        padding-left: 15px;
        padding-right: 15px;
    }
    .credits-v2 .credit-package span.discount {
        right: 15px;
    }
    .credits-v2 .credit-package span.pricing {
        right: 15px;
    }
    .credits-v2 ul.big-text {
        display: none;
    }
    .credits-v2 ul.small-text {
        display: block;
    }
    .credits-v2 .hidden-small {
        display: none;
    }
}
.credits-v2 .credit-package.credit-package-method::before {
    display: none;
}
.credits-v2 .credit-package.credit-package-method .amount-subtext {
    color: var(--color-primary-purple-dark);
}
.credits-v2 .credit-package.credit-package-method img {
    width: auto;
    height: 70px;
    margin: 0 20px 0 0;
}
.credits-v2 .credit-package.credit-package-method .p-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.credits-v2 .credit-package.credit-package-method .p-row .p-col:nth-child(2),
#modal_verification.credits-v2
.credit-package.credit-package-method
.p-row
.p-col:nth-child(1) {
    flex-grow: 1;
}
#modal_verification.credits-v2
.credit-package.credit-package-method
.p-row
.p-col:nth-child(2) {
    flex-grow: unset;
}
.credits-v2 .credit-package.credit-package-method ul li:last-child {
    margin-bottom: 0;
}
.credits-v2 .credit-package.credit-package-method button {
    background: rgb(0, 141, 99);
    color: white;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    text-transform: lowercase;
    width: 100px;
    height: 70px;
    padding: 0;
}
.credits-v2 .credit-package.credit-package-method:hover button {
    background: rgb(0, 113, 75);
}
@media (max-width: 480px) {
    .credits-v2 .credit-package.credit-package-method .p-row .p-col:nth-child(3) {
        display: none;
    }
}
@media (max-width: 347px) {
    .credits-v2 .credit-package.credit-package-method img {
        margin-right: 15px;
    }
}
.credits-v2 #credits-packages,
.credits-v2 #credits-payment-methods {
    margin-bottom: 20px;
}
.payment-back-btn {
    background: var(--color-accent-yellow);
    color: var(--color-primary-purple-dark);
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 20px;
}
.payment-back-btn:hover {
    background: var(--color-accent-orange);
    text-decoration: none;
}
body.hide-credits-alerts .credits-v2 #alert_credits {
    display: none !important;
}

.custom-green-alert {
    background: rgb(213, 236, 218);
    padding: 10px 15px;
    border-radius: 3px;
}

.verify-grey-icon,
.verify-red-icon,
.verify-green-icon {
    display: inline-block;
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 15px;
}

.credits-v2 ul li.verify-grey-icon,
.verify-grey-icon {
    background-image: url(/assets/images/verified_silver_icon_small.png);
    background-size: 15px auto;
}
.credits-v2 ul li.verify-green-icon,
.verify-green-icon {
    background-image: url(/assets/images/verified_small.png);
}
.verify-red-icon {
    background-image: url(/assets/images/verified_not_small.png);
}

#holder_verify_number,
#holder_verify_done,
#holder_verify_document,
#holder_verify_code {
    text-align: left;
    padding: 15px 25px;
    background: var(--color-bg-lighter);
    border: 2px solid var(--color-bg-gray-darker);
    border-radius: 4px;
    position: relative;
}
#holder_verify_number strong.title,
#holder_verify_done strong.title,
#holder_verify_document strong.title,
#holder_verify_code strong.title {
    display: block;
    color: var(--color-primary-purple-dark);
    font-size: 18px;
    margin-bottom: 15px;
}
#holder_verify_number .small-link-to-payment,
#holder_verify_document .small-link-to-payment,
#holder_verify_code .small-link-to-payment {
    text-decoration: underline;
    font-size: 12px;
    color: black;
}
#holder_verify_number .small-link-to-payment:hover,
#holder_verify_document .small-link-to-payment:hover,
#holder_verify_code .small-link-to-payment:hover {
    text-decoration: none;
}
#holder_verify_number select {
    background: white;
    padding-left: 25px;
    width: 73px;
    display: inline-block;
    padding-right: 0;
    border-color: rgb(0, 200, 84);
    border-radius: 6px;
    font-weight: bold;
    color: black;
    text-align: left;
    background-image: url(/assets/images/uk_icon.png);
    background-size: auto 12px;
    background-position: 7px center;
    background-repeat: no-repeat;
}
@media (max-width: 767px) {
    #holder_verify_number select {
        padding-left: 30px;
    }
}
#holder_verify_number input[type="tel"] {
    border-color: rgb(0, 200, 84);
    border-radius: 6px;
}
.custom-code-box {
    display: inline-block;
    background: white;
    border: 2px solid var(--color-bg-gray-darker);
    border-radius: 3px;
    padding: 3px 10px;
    font-size: 15px;
    margin-top: 10px;
}
.warning-not-verified {
    border: 2px solid var(--color-secondary);
    border-radius: 2px;
    padding: 5px 10px;
    font-size: 12px;
    margin-bottom: 20px;
}
.text-link {
    color: inherit !important;
}
.chat-message.is_verified .profile-image::after,
.offline-chatselector.is_verified .profile-image::after,
.chat-message.not_verified .profile-image::after,
.offline-chatselector.not_verified .profile-image::after {
    position: absolute;
    display: block;
    content: "";
    top: -3px;
    left: -3px;
    background-image: url(/assets/images/verified_small.png);
    background-size: cover;
    width: 15px;
    height: 15px;
}
.chat-message.is_verified.half_verified .profile-image::after,
.offline-chatselector.is_verified.half_verified .profile-image::after {
    background-image: url(/assets/images/verified_small_silver.png);
}
.chat-message.not_verified .profile-image::after,
.offline-chatselector.not_verified .profile-image::after {
    background-image: url(/assets/images/verified_not_small.png);
}
.offline-chatselector.is_verified .profile-image::after,
.offline-chatselector.not_verified .profile-image::after {
    top: 5px;
    left: 5px;
}
.chat-message.from_me.is_verified .profile-image::after {
    left: auto;
    right: -3px;
}
body[data-active-tab="online"]
.chatselector.is_verified
.profile
.profile-image
.actual-image::before,
body[data-active-tab="contacts"]
.chatselector.is_verified
.profile.is_online
.profile-image
.actual-image::before,
body[data-active-tab="online"]
.chatselector.not_verified
.profile
.profile-image
.actual-image::before,
body[data-active-tab="contacts"]
.chatselector.not_verified
.profile.is_online
.profile-image
.actual-image::before {
    background-color: transparent;
    background-image: url(/assets/images/verified_small.png);
    background-size: cover;
    width: 15px;
    height: 15px;
    left: -3px;
    top: -2px;
}
body[data-active-tab="online"]
.chatselector.is_verified.half_verified
.profile
.profile-image
.actual-image::before,
body[data-active-tab="contacts"]
.chatselector.is_verified.half_verified
.profile.is_online
.profile-image
.actual-image::before {
    background-image: url(/assets/images/verified_small_silver.png);
}
body[data-active-tab="online"]
.chatselector.not_verified
.profile
.profile-image
.actual-image::before,
body[data-active-tab="contacts"]
.chatselector.not_verified
.profile.is_online
.profile-image
.actual-image::before {
    background-image: url(/assets/images/verified_not_small.png);
}
.user-profile .profile-image.is_verified,
.user-profile .profile-image.not_verified {
    position: relative;
}
.user-profile .profile-image.is_verified::before,
.user-profile .profile-image.not_verified::before {
    position: absolute;
    display: block;
    content: "";
    top: 5px;
    left: 0;
    background-color: transparent;
    background-image: url(/assets/images/verified_small.png);
    background-size: cover;
    width: 20px;
    height: 20px;
}
.user-profile .profile-image.is_verified.half_verified::before {
    background-image: url(/assets/images/verified_small_silver.png);
}
.user-profile .profile-image.not_verified::before {
    background-image: url(/assets/images/verified_not_small.png);
}
.profile-image-modal.is_verified,
.profile-image-modal.not_verified {
    position: relative;
}
.profile-image-modal.is_verified::before,
.profile-image-modal.not_verified::before {
    position: absolute;
    display: block;
    content: "";
    bottom: -13px;
    background-color: transparent;
    background-image: url(/assets/images/verified_small.png);
    background-size: cover;
    width: 25px;
    height: 25px;
    left: calc(50% - 12.5px);
}
.profile-image-modal.is_verified.half_verified::before {
    background-image: url(/assets/images/verified_small_silver.png);
}
.profile-image-modal.not_verified::before {
    background-image: url(/assets/images/verified_not_small.png);
}
.verified-settings-modal {
    display: block;
    color: var(--color-tab-link);
    border: 1px solid #ced4da;
    height: 33.5px;
    line-height: 33.5px;
    padding: 0 10.5px 0 40px;
    background-image: url(/assets/images/verified_small.png);
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: 10.5px center;
}
.verified-settings-modal.half_verified {
    background-image: url(/assets/images/verified_small_silver.png);
}
.verified-settings-modal.not_verified {
    background-image: url(/assets/images/verified_not_small.png);
}
@media (max-width: 460px) {
    #modal_settings .nav.nav-tabs a {
        margin-left: 5px;
        padding-left: 10px;
        padding-right: 10px;
    }
    #modal_settings .nav.nav-tabs a:first-child {
        margin-left: 0;
    }
}

.swipebox-popup {
    cursor: pointer;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
}
.swipebox-popup .content {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.swipebox-popup .content div.sb-close {
    position: absolute;
    color: white;
    font-size: 25px;
    line-height: 25px;
    top: 15px;
    right: 15px;
}
.swipebox-popup .content div.sb-close i {
    color: white;
}
.swipebox-popup .controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(51, 42, 73, 0.5);
    cursor: default;
}
.swipebox-popup .controls div {
    position: absolute;
    top: 0;
    left: 15px;
    color: white;
    font-size: 26px;
    line-height: 60px;
    cursor: pointer;
}
.swipebox-popup .controls div:last-child {
    left: auto;
    right: 15px;
}
.swipebox-popup .controls div.disabled {
    display: none;
}

@media (max-width: 767px) {
    html,
    body {
        height: -webkit-fill-available;
        min-height: -webkit-fill-available;
    }
    header {
        /*background:linear-gradient(180deg, #a27fe9, #e78bf0);*/
        background-color: #9e80e2;
        z-index: 50;
    }
    .content {
        width: 100%;
        height: 100%;
        height: -webkit-fill-available;
        box-sizing: border-box;
    }

    body.page-chat .content {
        position: absolute;
        top: 0;
        left: 0;
    }

    .chatbox-holder {
        height: 100% !important;
        padding: 88px 0 0 0 !important;
        min-height: auto;
    }
    .chatbox {
        max-height: none;
        height: 100%;
    }
    .chatbox .logo-holder {
        display: none;
    }
    .chatbox .menubar {
        display: none;
    }
    .chatbox .division {
        height: 100%;
    }
    .chatbox .division .left-column {
        width: 100%;
    }
    .chatbox .division .right-column {
        display: none;
        width: 100%;
        height: 100%;
        left: 0;
    }
    .chatbox .division .right-column .chat-content {
        height: calc(100% - 110px);
    }
    body.chatroom-active .chatbox .division .right-column .chat-content {
        height: calc(100% - 120px);
    }
    .chatbox .division .left-column .user-profile {
        display: none;
    }
    .chatbox .division .left-column .chatlist {
        top: 0;
        height: 100%;
        max-height: none;
    }
    .chatbox .division .left-column .chatlist .chatlist-header {
        display: none;
    }
    footer {
        display: none;
    }

    body.messaging-active .chatbox .division .left-column {
        display: none;
    }
    body.messaging-active .chatbox .division .right-column {
        display: block;
    }
    .emoji-wysiwyg-editor {
        overflow-y: hidden;
    }
    .chatbox .division .right-column .chat-content {
        padding: 5px 15px 20px 15px;
    }
    .chatbox .division .right-column .chat-content {
        top: 60px;
    }
    body.chatroom-active .chatbox .division .right-column .chat-content {
        top: 70px;
    }
    .mobile-chat-header {
        cursor: pointer;
        position: relative;
        display: block;
        width: 100%;
        height: 60px;
        background: #352a4b;
        padding: 5px 7px;
    }
    body.chatroom-active .mobile-chat-header {
        height: 70px;
    }
    .mobile-chat-header .profile-image {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        border: 1px solid white;
        background-size: auto 100%;
        background-position: center;
        background-repeat: no-repeat;
    }
    .mobile-chat-header .chat-uname {
        position: relative;
        color: white;
        font-weight: bold;
        top: -25px;
        margin-left: 6px;
        font-size: 13px;
    }
    .mobile-chat-header .link-view-profile {
        display: block;
        width: auto;
        height: auto;
        position: absolute;
        right: 10px;
        bottom: 10px;
        text-decoration: underline;
        font-size: 12px;
        color: white;
    }
    .mobile-chat-header .profile-distance {
        display: block;
        width: auto;
        height: auto;
        font-size: 12px;
        color: white;
        position: absolute;
        bottom: 5px;
        left: 57px;
        line-height: 15px;
    }
    .mobile-chat-header .profile-distance a {
        color: white;
        text-decoration: underline;
    }
    .mobile-chat-header .profile-distance a:hover {
        text-decoration: none;
    }

    body.chatroom-active .mobile-chat-header .profile-image,
    body.chatroom-active .mobile-chat-header .chat-uname,
    body.chatroom-active .mobile-chat-header .link-view-profile,
    body.chatroom-active .mobile-chat-header .profile-distance {
        display: none;
    }

    body.chatroom-active .mobile-chat-header .chatroom_latest_pictures_mobile {
        display: block;
    }
}

.central-chatrooms-holder {
    display:none;
}
body[data-active-tab='online'] .central-chatrooms-holder {
    position:absolute;
    top:-85px;
    left:0;
    width:100%;
    height:calc(100% + 85px);
    background:#504667;
    display: flex;
    flex-flow: column;
}
.central-chatrooms-holder .rooms-holder {
    padding:8px 15px 0;
    color:white;
}
.central-chatrooms-holder .rooms-holder .room-listing {
    background:var(--color-primary-purple-darker);
    border-radius:5px;
    padding:7px 10px;
    margin-bottom:5px;
    cursor:pointer;
    font-size:13px;
    position:relative;
}
.central-chatrooms-holder .rooms-holder .room-listing.active,
.central-chatrooms-holder .rooms-holder .room-listing:hover {
    background:var(--color-accent-orange);
    color:black;
    font-weight:bold;
}
.central-chatrooms-holder .rooms-holder .room-listing img {
    max-width:15px;
    max-height:15px;
    margin-right:5px;
}
.central-chatrooms-holder .rooms-holder .room-listing img.room-icon-on {
    display:none;
}
.central-chatrooms-holder .rooms-holder .room-listing.main-icon-hover.active img.room-icon,
.central-chatrooms-holder .rooms-holder .room-listing.main-icon-hover:hover img.room-icon {
    display:none;
}
.central-chatrooms-holder .rooms-holder .room-listing.main-icon-hover.active img.room-icon-on,
.central-chatrooms-holder .rooms-holder .room-listing.main-icon-hover:hover img.room-icon-on {
    display:inline;
}
.central-chatrooms-holder .rooms-holder .room-listing span.online-count {
    position:absolute;
    top:8px;
    right:10px;
}
.central-chatrooms-holder .rooms-holder a {
    color:#53b635;
    font-size:12px;
    padding-left:10px;
    text-decoration:underline;
}
.central-chatrooms-holder .rooms-holder a:hover {
    text-decoration:none;
}
.central-chatrooms-holder .room-members {
    position:relative;
    margin-top:40px;
    width:100%;
    height:100%;
}
.central-chatrooms-holder .room-members .online-users-count {
    display:block;
    position:absolute;
    top:-21px;
    left:0;
    width:100%;
    height:21px;
    text-align:center;
    border-bottom:1px solid var(--color-accent-orange);
}
.central-chatrooms-holder .room-members .online-users-count span {
    background:var(--color-accent-orange);
    height:20px;
    line-height:20px;
    display:inline-block;
    padding:0 20px 0 44px;
    font-weight:bold;
    font-size:13px;
    background-image:url(/assets/images/chatrooms_user_icon.png);
    background-size:14px 14px;
    background-repeat:no-repeat;
    background-position:20px center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.members-holders .chatselector {
    width: 100%;
    height: 50px;
    cursor: pointer;
}
.members-holders .chatselector.active {
    cursor: default;
}
.members-holders .chatselector:nth-child(odd) {
    background: var(--color-primary-purple-light);
}
.members-holders .chatselector:nth-child(even) {
    background: var(--color-primary-purple-lighter);
}
.members-holders .chatselector.has_webcam {
    background: var(--color-accent-orange);
}
.members-holders .chatselector.has_webcam .profile-info strong {
    color: var(--color-text-purple-dark);
}
.members-holders .chatselector.has_webcam .profile-info span {
    color: var(--color-text-purple-dark);
    padding-left: 14px;
    background-image: url(/assets/images/webcam_icon_start_cam.png);
    background-size: 10px;
    background-position: left center;
    background-repeat: no-repeat;
}

.members-holders .chatselector:hover,
.members-holders .chatselector.active {
    background: var(--color-accent-green-light);
    border-radius: 3px;
}
.members-holders .chatselector.has_webcam:hover,
.members-holders .chatselector.has_webcam.active {
    background: var(--color-accent-orange-dark);
}
.members-holder {
    height:100%;
    overflow-y:auto;
    overflow-x:hidden;
}

#holder_mobile_chatrooms_selection {
    display:none;
    overflow:hidden;
    position:absolute;
    top:0;
    left:0;
    background:var(--color-primary-purple-light);
    width:100%;
    box-sizing: border-box;
}
@media (max-width:767px) {
    body.chatrooms-enabled.chatroom-active[data-active-tab='online'] #holder_mobile_chatrooms_selection .actual-holder {
        padding:15px 5px;
        border-bottom:2px solid #211836;
    }
    body.chatrooms-enabled.chatroom-active[data-active-tab='online'] #holder_mobile_chatrooms_selection {
        display:block;
        max-height:0;
        z-index:1000;
        transition:max-height 400ms linear;
    }
    #holder_mobile_chatrooms_selection .room-listing {
        display:inline-block;
        margin:5px 5px;
        background:#352a4b;
        padding:11px 12px;
        color:white;
        font-size:12px;
        border-radius:5px;
    }
    #holder_mobile_chatrooms_selection .room-listing.active {
        background:var(--color-accent-orange);
        color:black;
        font-weight:bold;
    }
    #holder_mobile_chatrooms_selection .room-listing img {
        max-width:12px;
        max-height:12px;
        margin-right:5px;
    }
    #holder_mobile_chatrooms_selection .room-listing img.room-icon-on {
        display:none;
    }
    #holder_mobile_chatrooms_selection .room-listing.main-icon-hover.active img.room-icon,
    #holder_mobile_chatrooms_selection .room-listing.main-icon-hover:hover img.room-icon {
        display:none;
    }
    #holder_mobile_chatrooms_selection .room-listing.main-icon-hover.active img.room-icon-on,
    #holder_mobile_chatrooms_selection .room-listing.main-icon-hover:hover img.room-icon-on {
        display: inline;
    }
    body.page-chat.chatrooms-enabled #mobile-buttons a[data-tab-id='chatroom'] {
        position:relative;
        padding-right:25px;
    }
    body.page-chat.chatrooms-enabled #mobile-buttons a[data-tab-id='chatroom']::after {
        content:"\f103";
        font: normal normal normal 12px/1 FontAwesome;
        position:absolute;
        right:10px;
        top:-1px;
        height:100%;
        width:auto;
        display:inline-block;
        line-height:inherit;
        transition:transform 200ms;
    }
    body.page-chat.chatrooms-enabled #mobile-buttons a[data-tab-id='chatroom'].list-shown::after {
        transform:rotate(-180deg);
    }
}

.modal-loader {
    width:100%;
    text-align:center;
    padding:50px 0;
}
.modal-loader img {
    width:100px;
    height:100px;
}
.link_with_underline {
    text-decoration: underline !important;
}
.link_with_underline:hover {
    text-decoration:none!important;
}
body.chatrooms-enabled .chatlist-header .tab[data-tab-id='online'] span:not(.new-count) {
    display:none;
}

/* Variant-specific CSS for: sexchat.it */
.chatroom_image_preview[data-mouseover-tag]:hover::before {
  content: "Utente:";
  min-width: 60px;
}
.favourite-profile[data-mouseover-tag]:hover::before {
  content: "Utente:";
  min-width: 60px;
}
.chatroom_image_preview[data-mouseover-tag]:hover::after {
  min-width: 80px;
}
.share-highlight-image-block.image-block-plus.image-block-social.image-block-platform-other::before {
  content: "Altri";
}
body.messaging-active:not(.chatroom-active) .emoji-wysiwyg-editor:empty:before {
  content: "Scrivi messaggio privato...";
}
@media (min-width: 768px) {
  body.messaging-active:not(.chatroom-active):not(.share-active)
    .menubar::after {
    content: "Messaggio privato";
  }
  .webcam-streaming-box .webcam-streaming-box-holder.streaming-private::after {
    content: "privato";
  }
  .webcam-streaming-box .webcam-streaming-box-holder.streaming-public::after {
    content: "pubblico";
  }
  header .header-flexbox .menu a {
    margin-left: 8px;
    margin-right: 0;
  }
}
