/* automatic/manual light mode */
:root, :root.light-theme {
    --background-color: #fff;
    --body-background-color: #f5f5f5;
    --nav-background-color: #fff;
    --color: black; /* --color-light */
    --color-secondary: #666; /* --color-secondary-light */
    --color-muted: #666; /* --color-muted-light */
    --overlay: rgba(24,24,24,0.9); /* --overlay-light */
    --divider: rgba(0,0,0,0.3); /* --divider-light */
    --box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); /* --box-shadow-light */
    --border: 1px solid rgb(190,190,190); /* --border-light */
}

/* manual dark mode */
/* keep the rules in sync with the automatic dark mode above! */
:root.dark-theme {
    --background-color: #000;
    --body-background-color: #111;
    --nav-background-color: #000;
    --color: white;
    --color-secondary: #b3b3b3;
    --color-muted: #b3b3b3;
    --overlay: rgba(179,179,179,0.9);
    --divider: rgba(255,255,255,0.3);
    --box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    --border: 1px solid rgb(65,65,65);
}

html, body {
    font-family: 'Poppins',sans-serif;
}

html, body, button {
    /*text-transform: uppercase;*/
}

.text-transform-none {
    text-transform: none;
}

body{
    margin-top: 50px;
    color: #b3b3b3;
    color: var(--color-secondary);
    background-color: black;
    background-color: var(--body-background-color);
}

body:after{
    content:"";
    position:fixed; /* stretch a fixed position to the whole screen */
    top:0;
    height:100vh; /* fix for mobile browser address bar appearing disappearing */
    left:0;
    right:0;
    z-index:-1; /* needed to keep in the background */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.nojs body:after, .nowebp body:after{
}

.haswebp body:after{
}

/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #dc3545 black;
    scrollbar-color: #dc3545 var(--background-color);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scrollbar-lg::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

*::-webkit-scrollbar-track {
    background: black;
    background: var(--background-color);
}

*::-webkit-scrollbar-thumb {
    background-color: #dc3545;
    border-radius: 0px;
    border: 0px solid black;
    border: 0px solid var(--background-color);
}

hr {
    border-top: 1px solid rgba(255,255,255,0.3);
    border-top: 1px solid var(--divider);
}

.h1,.h2,.h3,.h4,.h5,.h6,
h1,h2,h3,h4,h5,h6{
    /*font-weight: bold;*/
    color: white;
    color: var(--color);
}

h1, h2, h3, .h1, .h2, .h3 {
    font-size: 1.5rem;
}

/* make all headings in parsedown class font size 1.25em */
.parsedown h1, .parsedown h2, .parsedown h3, .parsedown h4, .parsedown h5, .parsedown h6 {
    font-size: 1em;
}

.parsedown ol {
    padding-inline-start: inherit;
}

a, a:hover{
    color: #dc3545;
}

.text-muted {
    color: #b3b3b3!important;
    color: var(--color-muted)!important;
}

.underline-link {
    color: white;
    color: var(--color);
    border-bottom: 1px dotted;
}

.underline-link:hover{
    border-bottom: 1px dotted #dc3545;
    color: #dc3545;
    text-decoration: none;
}

.inline-title-filter{
    display: inline;
    line-height: 1.5;
}

.jumbo-header{
    margin-top: -50px;
    padding-top: 40px;
    /*padding-bottom: 60px;*/
    width: 100%;
    text-align: center;
}

.header-options-container{
    position: fixed;
    z-index: 9997;
    top: 5px;
    left: 50%;
    transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    max-width: 100%;
    font-size: 0;
}

.border-radius-0{
    border-radius: 0 !important;
}
.border-radius-5{
    border-radius: 0.5rem !important;
}
.border-radius-1{
    border-radius: 1rem !important;
}
.border-radius-2{
    border-radius: 2rem !important;
}

.border-radius-right-1{
    border-radius: 0 1rem 1rem 0 !important;
}
.border-radius-left-1{
    border-radius: 1rem 0 0 1rem !important;
}

.punter-subscribe{
    max-width: 600px;
    margin: 0 auto;
}

.hottest-local-text{
    font-family: "Yellowtail", "Brush Script MT", "Brush Script Std", "Bradley Hand", "Comic Sans MS", cursive;
    /*text-shadow: 1px 1px 1px white;*/
}

.header-local-text{
    /*text-shadow: 1px 1px 1px white;*/
    /*background-color: rgba(0,0,0,.6);*/
}

.category-button{
    height: 24vw;
    width: 15vw;
    position: relative;
    overflow: hidden;
    margin: 2px;
    display: inline-block;
    background: black;
    color: white;
}

.category-button-image {
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
    opacity: 0.5;
}

.category-button:hover > .category-button-image{
    opacity: 0.2;
}

.category-button:hover {
    color: white;
    background: darkred;
}

.category-button-text{
    position: absolute;
    bottom: 32px;
    left: 5px;
    font-size: 1.3rem;
    text-align: left;
}

.bg-transparent-light{
    background-color: rgba(255,255,255,0.5);
}

.bg-transparent-dark{
    background-color: rgba(0,0,0,0.5);
}

.footer {
    background-color: black;
    background-color: var(--background-color);
    border-top: 1px solid #444;
    border-top: var(--border);
}

.overflow-horizontal {
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

#dotBox {
    height: 30px;
}

.slider-dot{
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    border-radius: 50%;
    background: #b3b3b3;
    background: var(--color-secondary);
    cursor: pointer;
}

.slider-dot.active{
    background: #dc3545;
}

.hide-scrollbar {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
    overflow: -moz-scrollbars-none  /* Old Firefox */
}
.hide-scrollbar::-webkit-scrollbar{
    display: none;  /* Safari and Chrome */
}

.available-now, .escort-available-now{
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 5px;
    background-color: rgba(0,0,0,0.9);
    color: white;
    z-index: 2;
}

.featured-premium-escort, .premium-escort, .softcore-flag{
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 5px;
    background-color: #dc3545;
    color: white;
    z-index: 3;
}

.touring-escort-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
}

.premium-escort-show{
    background-color: #dc3545;
    color: white;
}

.verified-escort-show{
    background-color: #007bff;
    background-color: #dc3545;
    color: white;
}

.video-escort-show{
    background-color: #c551d0;
    background-color: #dc3545;
    color: white;
}

.quickie-escort-show{
    background-color: #28a745;
    background-color: #dc3545;
    color: white;
}

.virtual-escort-show {
    background-color: #55ACEE;
    background-color: #dc3545;
    color: white;
}

.not-verified-escort-show{
    background-color: white;
    color: black;
}

.illustrative-escort-show{
    background-color: #343a40;
    color: white;
}

.view-profile-box{
    bottom: 6px;
    right: 6px;
    z-index: 2; /* above card stretched link */
}

.page-item:first-child > .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child > .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn, .btn-sm, .badge {
    border-radius: 0!important;
    font-weight: normal;
}

.btn + .btn, .na-nav-item + .na-nav-item {
    /*margin-left: 2px;*/
}

.btn {
    border-radius: 1rem;
    /*font-weight: bold;*/
    cursor: pointer;
    border: 1px solid rgb(65,65,65);
    border: var(--border);
}

.btn-link{
    box-shadow: none !important;
    border: none !important;
}

.btn-link:hover {
    color: #dc3545;
}

.btn-default{
    background-color: black;
    background-color: var(--background-color);
    border: 1px solid rgb(65,65,65);
    border: var(--border);
    color: white;
    color: var(--color);
}

.btn-default:hover, .btn-default.active{
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-default-no-hover{
    background-color: black;
    background-color: var(--background-color);
    border: 1px solid rgb(65,65,65);
    border: var(--border);
    color: white;
    color: var(--color);
}

.btn-default-no-hover:hover, .btn-default-no-hover.active{
    background-color: black;
    background-color: var(--background-color);
    border-color: black;
    border-color: var(--background-color);
    color: white;
    color: var(--color);
}

.btn-logo{
    background-color: black;
    background-color: var(--background-color);
    border-color: black;
    border-color: var(--background-color);
    color: #dc3545;
}

.btn-logo:hover, .btn-logo.active{
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.sp2 {
    letter-spacing: .2em;
    text-indent: .2em;
}

.bg-light-default{
    background: white;
    color: black;
    border: 1px solid black;
}

.bg-dark-default{
    background: black;
    color: #ddd;
    border: 1px solid white;
}

.bg-default{
    background-color: black;
    background-color: var(--background-color);
    color: #b3b3b3;
    color: var(--color-secondary);
    border: 1px solid rgb(65,65,65);
    border: var(--border);
}

.just-bg-default{
    background-color: black;
    background-color: var(--background-color);
    color: #b3b3b3;
    color: var(--color-secondary);
}

.text-default{
    color: white;
    color: var(--color);
}

.btn-favourite{
    background-color: black;
    background-color: var(--background-color);
    border: 1px solid rgb(65,65,65);
    border: var(--border);
    color: white;
    color: var(--color);
}

.btn-favourite:hover, .btn-favourite.active{
    color: #dc3545;
}

.page-link {
    color: black;
}

.page-link:hover {
    color: #dc3545;
}

.page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.page-item.active .page-link {
    background-color: #dc3545;
    border-color: #dc3545;
}

.na-navbar{
    position: fixed;
    top: 0;
    z-index: 9996;
    width: 100%;
    background-color: #000;
    background-color: var(--nav-background-color);
    border-bottom: 1px solid #444;
    border-bottom: var(--border);
    color: black;
    padding: 0.3rem;
}

.na-navbar-brand{
    float: left;
    text-decoration: none !important;
    margin-top: 3px;
}

.na-navbar-nav{
    float: right;
    margin: 0;
    padding: 0;
}

.na-nav-item{
    display: inline;
    vertical-align: middle;
}

.na-nav-link{
    text-decoration: none;
    vertical-align: text-bottom;
    border: none!important;
}

.link{
    cursor: pointer;
}
.link:hover{
    text-decoration: underline;
}

label{
    margin: 0;
    cursor: pointer;
    color: white;
    color: var(--color);
}

.dropdown-box{
    position: relative;
    /*z-index: 9997;*/
}

.dropdown-item{
    display: block;
    width: 100%;
    padding: 4px 4px 4px 4px;
    margin: 0;
    text-decoration: none !important;
    /*font-weight: bold;*/
}

.special-dropdown {
    position: absolute;
    left: 0;
    right: auto;
    display: block;
    min-width: 8rem;
    padding: 0;
    margin: 0;
    margin-top: 4px;
    font-size: 0.875rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border-radius: 0;
    max-height: calc(100vh - 80px);
    overflow: auto;
    /*font-weight: bold;*/
    border: 1px solid rgb(65,65,65);
    border: var(--border);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow);
    background-color: black;
    background-color: var(--background-color);
    background: black;
    background: var(--background-color);
    z-index: 9997;
}

.special-dropdown-fixed {
    position: fixed;
    display: block;
    min-width: 8rem;
    padding: 0;
    margin: 0;
    margin-top: 4px;
    font-size: 0.875rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border-radius: 0;
    max-height: calc(100vh - 80px);
    overflow: auto;
    /*font-weight: bold;*/
    border: 1px solid rgb(65,65,65);
    border: var(--border);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow);
    background-color: black;
    background-color: var(--background-color);
    background: black;
    background: var(--background-color);
    z-index: 9997;
}

.special-dropdown-two-col{
    width: 310px;
}

.special-dropdown-two-col .dropdown-item{
    white-space: normal;
}

.dropdown-item {
    color: white;
    color: var(--color);
}

.dropdown-item:focus, .dropdown-item:hover {
    color: black;
    color: var(--background-color);
    background-color: white;
    background-color: var(--color);
}

.no-hover:focus, .no-hover:hover {
    color: initial!important;
    background-color: initial!important;
}

.dropdown-divider {
    border-top: 1px solid rgba(255,255,255,0.3);
    border-top: 1px solid var(--divider);
}

.special-dropdown-right {
    right: 0!important;
    left: auto!important;
}

.special-modal-overlay{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background: rgba(179,179,179,0.9);
    background: var(--overlay);
    z-index: 9998;
}

.blacked-out-overlay{
    background: black;
    background: var(--background-color);
}

.special-modal-content{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 600px;
    max-width: 100%;
    overflow: auto;
    z-index: 9999;
}

.hidden{
    display: none;
}

.special-input:not(:checked) + .special-dropdown,
.special-input:not(:checked) + .special-dropdown-fixed,
.special-input:not(:checked) + .special-modal-overlay,
.special-input:not(:checked) + .special-modal-overlay + .special-modal-content,
.special-input:not(:checked) + label + .special-accordion {
    display: none;
}

.for-accordion:before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    display: inline-block;
    margin-right: 2px;
}

.special-input:checked + .for-accordion:before{
    content: "\f0d7";
}

.special-close{
    font-size: 32px;
    position: absolute;
    top: 8px;
    right: 8px;
    line-height: 50%;
    margin: 0;
}

.bigger-times{
    font-size: 32px;
    line-height: 50%;
}

.special-modal-title{
    padding-right: 32px;
    padding-left: 32px;
    margin: 0;
}

.special-modal-header{
    padding: 0.5rem;
    text-align: center;
}

.special-modal-body{
    padding: 0.5rem 1rem;
    height: auto !important;
    max-height: calc(100vh - 150px);
    overflow: auto;
    text-align: center;
}

.special-modal-footer{
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    text-align: right;
}

form {
    padding: 20px;
}

.thumbnail {
    max-width: 80vw;
    height: 300px;
    padding: 10px;
}

.h-300px {
    height: 300px;
}

.h-160px {
    height: 160px;
}

.h-30px {
    height: 30px;
}

.h-20px {
    height: 20px;
}

.w-20px {
    width: 20px;
}

.w-100px {
    width: 100px;
}

.single-col-gallery{
    position: relative;
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
    max-width: 240px;
}



.list-description-right {
    width: 100%;
    height: 160px;
    float: right;
}

.corner-ribbon {
    width: 140px;
    /*background: #e90c11;*/
    background: #dc3545;
    position: absolute;
    top: 20px;
    right: -35px;
    left: auto;
    text-align: center;
    line-height: 30px;
    /*letter-spacing: 1px;*/
    /*color: #f0f0f0;*/
    color: #f8f9fa;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    border: 1px solid white;
    z-index: 10;
}

.right-corner-ribbon {
    width: 140px;
    position: absolute;
    top: 20px;
    right: -35px;
    left: auto;
    text-align: center;
    line-height: 30px;
    /*letter-spacing: 1px;*/
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    border: 1px solid white;
    z-index: 10;
}

.bottom-right-corner-ribbon {
    width: 140px;
    position: absolute;
    bottom: 20px;
    right: -35px;
    left: auto;
    text-align: center;
    line-height: 30px;
    /*letter-spacing: 1px;*/
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    border: 1px solid white;
    z-index: 10;
}

.available-ribbon {
    width: 140px;
    background: #28a745;
    position: absolute;
    top: 20px;
    left: -35px;
    text-align: center;
    line-height: 30px;
    /*letter-spacing: 1px;*/
    color: #f8f9fa;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    border: 1px solid white;
    z-index: 10;
}

.description {
    overflow-wrap: break-word;
    text-align: justify;
    overflow-x: hidden;
    text-transform: none;
}

.longwrapper {
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;

    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;

    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.longwrapper-no-hyphens {
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;

    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
}

pre {

    white-space: pre-wrap; /* css-3 */

    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */

    white-space: -pre-wrap; /* Opera 4-6 */

    white-space: -o-pre-wrap; /* Opera 7 */

    word-wrap: break-word; /* Internet Explorer 5.5+ */

    font-family: 'Poppins',sans-serif;

    color: #b3b3b3;
    color: var(--color-secondary);

}

.arpl {
    aspect-ratio: 300/200;
}

/* Page Header | Navbar */
/* Quicklinks */
.na-quicklinks a {
    color: #FFF;
}

.na-quicklinks a:hover {
    color: #007bff;
}

.social-btn {
    padding: 8px;
    /*font-size: 30px;*/
    /*width: 70px;*/
    border-radius: 50%;
    text-decoration: none;
    margin: 5px 2px;
    text-align: center;
    color: white;
}

.social-btn:hover, .twitter-btn:hover, .facebook-btn:hover, .instagram-btn:hover, .pinterest-btn:hover, .video-btn:hover {
    opacity: 0.7;
    color: white;
    text-decoration: none;
}

.facebook-btn {
    background: #3B5998;
    color: white;
}

.twitter-btn {
    background: #55ACEE;
    color: white;
}

.instagram-btn {
    background: #125688;
    color: white;
}

.pinterest-btn {
    background: #cb2027;
    color: white;
}

.video-btn {
    background: #c551d0;
    border-color: #c551d0;
    color: white;
}

/* Social Media Icons */

.social-share {
    margin-bottom: 5px;
}

/* This gets Facebook to fall into place */
.social-share iframe {
    vertical-align: middle;
}

.na-socialicons a.nav-link {
    display: block;
    padding: 0.5rem 0rem;
    float: left
}

.fb-share-button {
    margin-right: 8px;
}

.fb_iframe_widget span {
    vertical-align: baseline !important;
}

/* Controls */

.bg-black {
    background-color: black;
}

.badge-black {
    background-color: black;
    color: white;
}

.bg-purple {
    background: #563d7c;
}

.bg-gold {
    background: #e7af3e;
}

.bg-green {
    background: #28a745;
}

.shadow-danger{
    box-shadow: 0 0 0px 3px rgba(220, 53, 69, 0.75);
}

.btn-outline-default {
    color: white;
    border-color: white;
    background-color: black;

    color: var(--color);
    border-color: var(--color);
    background-color: var(--background-color);
}

.btn-outline-default:hover, .btn-outline-default.active {
    color: black;
    background-color: white;

    color: var(--background-color);
    background-color: var(--color);
}

.lh-2 {
    line-height: 2;
}

.no-transition {
    -webkit-transition: height 0.01s;
    -moz-transition: height 0.01s;
    -ms-transition: height 0.01s;
    -o-transition: height 0.01s;
    transition: height 0.01s;
}

.modal-full {
    min-width: 100%;
    margin: 0;
}

.modal-full .modal-content {
    min-height: 100vh;
}

.pointer {
    cursor: pointer;
}
.no-pointer {
    cursor: default;
}

video {
    display: block;
}

.blurb {
    height: 57px; /* [NUM_OF_LINES 3] x [LINE_HEIGHT 19.2] + padding  */
    overflow: hidden;
}

.about-me {
    font-size: 14px;
    line-height: 16px;
}

.about-me-truncate {
    max-height: 320px; /* [NUM_OF_LINES 20] x [LINE_HEIGHT 16] + padding  */
    overflow: hidden;
}

.hide-input {
    position: fixed;
    top: -100em;
}

.starcolor {
    color: #ffca08;
}

.fa-stack-halfx {
    font-size: 0.5rem;
    line-height: inherit;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.gallery-thumbnail {
    image-orientation: none!important;
    border-width: 4px !important;
}

.gallery-media-300h {
    image-orientation: none!important;
    height: 300px;
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.gallery-media-center {
    image-orientation: none!important;
    position: absolute;
    max-height: 100%;
    max-width: 100%;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.gallery-media-center-fill {
    image-orientation: none!important;
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

.gallery-media-center-fill-height {
    position: absolute;
    height: 100%;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

.absolute-center-old {
    position: absolute !important;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

.absolute-center{
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.gallery-media-container-nosize {
    position: relative;
    overflow: hidden;
}

.gallery-media-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.gallery-media-container-300 {
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 300px;
}

.gallery-media-container-120 {
    position: relative;
    overflow: hidden;
    height: 120px;
    width: 120px;
    margin: 0 auto;
}

.gallery-media-container-300x250 {
    position: relative;
    overflow: hidden;
    height: 250px;
    width: 300px;
}

.gallery-media-container-300-full-width {
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 100%;
}

.gallery-media-container-300-160 {
    position: relative;
    overflow: hidden;
    height: 160px;
    width: 300px;
}

.mw-600 {
    max-width: 600px;
}

.mw-1140{
    max-width: 1140px;
}

.table-col-min-width {
    min-width: 80px;
}

.no-padding-table {
    margin: 0 auto;
}

.no-padding-table td, .no-padding-table th {
    padding: 5px;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.dropdown-text {
    vertical-align: top;
}

.text-truncate-2-lines {
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.text-truncate-2-lines-fixed {
    height: 38px;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.grecaptcha-badge {
    visibility: hidden;
}

.underline {
    text-decoration: underline;
}

.svg-icon {
    height: 1em;
    width: 1em;
    position: relative;
    bottom: .1em;
}

.svg-fa-2x {
    height: 2em;
    width: 2em;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .svg-icon {
        width: 1em;
    }
    .svg-fa-2x {
        width: 2em;
    }
}

.svg-fa-stack {
    display: inline-block;
    height: 2em;
    position: relative;
    width: 2.5em;
}

.svg-fa-stack-1x, .svg-fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.svg-fa-stack-1x {
    height: 2em;
    padding: 0.5em;
}

.svg-fa-stack-2x {
    height: 2em;
}

.fa-fw {
    text-align: center;
    width: 1.25em;
}

.banner-ad{
    font-size: 0;
}

.font-zero{
    font-size: 0;
}

.font-1rem{
    font-size: 1rem;
}

.font-15rem{
    font-size: 1.5rem;
}

.font-lg{
    font-size: 1.25rem;
}

.font-brand{
    /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";*/
}

.small-icon-pill {
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
    height: 20px;
    margin: 0;
    border: 0;
    opacity: 0.9;
}

.small-icon-pill + .small-icon-pill{
    margin-left: 1px;
}

.featured-left-arrow{
    position: absolute !important;
    bottom: 198px;
    left: 0;
    z-index: 2;
}
.featured-right-arrow{
    position: absolute !important;
    bottom: 198px;
    right: 0;
    z-index: 2;
}

.how-to-book-escorts > p:last-child{
    margin-bottom: 0;
}

.card, .form-control {
    border-radius: 0;
}

.card-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
}
.card-columns .card {
    display: inline-block;
    width: 100%;
}

.footer-link-columns{
    column-count: 2 !important;
}

.ql-editor p{
    margin-bottom: 1rem !important;
}

.ql-editor[contenteditable="true"]{
    max-height: 70vh;
    text-transform: none;
}

.ql-toolbar, .ql-container{
    background: white;
}

.border-dashed-red {
    border: 2px dashed #dc3545 !important;
}

.border-dashed-transparent {
    border: 2px dashed transparent !important;
}

.glowing-red {
    color: white!important;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

@-webkit-keyframes glowing {
    0% { background-color: #dc3545; }
    50% { background-color: #FF0000; }
    100% { background-color: #dc3545; }
}

@-moz-keyframes glowing {
    0% { background-color: #dc3545; }
    50% { background-color: #FF0000; }
    100% { background-color: #dc3545; }
}

@-o-keyframes glowing {
    0% { background-color: #dc3545; }
    50% { background-color: #FF0000; }
    100% { background-color: #dc3545; }
}

@keyframes glowing {
    0% { background-color: #dc3545; }
    50% { background-color: #FF0000; }
    100% { background-color: #dc3545; }
}

.featured-escort {
    font-size: 1rem;
    overflow: hidden;
    height: 352px;
    width: 150px;
}

/* exactly sm */
@media (min-width: 576px) and (max-width: 767px) {
    .footer-link-columns{
        column-count: 3 !important;
    }
}

@media (max-width: 320px) {
    .xs-small{
        font-size: 80%;
        font-weight: 400;
    }
    .xs-mw-105{
        max-width: 105px;
    }
}

@media (max-width: 375px) {
    .d-xs-none{
        display: none !important;
    }
}

@media (min-width: 351px) {
    .d-abovexs-none{
        display: none !important;
    }
    .special-dropdown-two-col{
        width: 350px;
    }
}

/* below sm */
@media (max-width: 575px) {
    .featured-box {
        max-width: 316px; /* 158 x 2 */
    }
}

/* below md */
@media (max-width: 767px) {
    .jumbo-header {
        padding-top: 60px !important;
        /*padding-bottom: 40px;*/
    }
    .header-options-container{
        position: relative;
        z-index: 9995;
        display: inline-block;
        top: initial;
        left: initial;
        transform: initial;
        -moz-transform: initial;
        -webkit-transform: initial;
        width: 100%;
        text-align: center;
    }
    .category-button{
        height: 48vw;
        width: 30vw;
    }
    .hide-scrollbar-sm {
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
        scrollbar-width: none;  /* Firefox */
        overflow: -moz-scrollbars-none  /* Old Firefox */
    }
    .hide-scrollbar-sm::-webkit-scrollbar{
        display: none;  /* Safari and Chrome */
    }
}

/* above sm */
@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
    .font-md-12rem{
        font-size: 1.2rem;
    }
    .featured-box {
        max-width: 474px; /* 158 x 3 */
    }
}

/* above md */
@media (min-width: 768px) {
    .featured-box {
        max-width: 632px; /* 158 x 4 */
    }
    .border-md-none {
        border: none;
    }
}

/* above xl */
@media (min-width: 1200px) {
    .category-button{
        height: 16vw;
        width: 10vw;
    }
    .single-col-gallery{
        /*max-width: 284px;*/
    }
    .featured-box {
        max-width: 948px; /* 158 x 6 */
    }
}

/* above 2xl */
@media (min-width: 1580px) {
    .container {
        max-width: 1536px;
    }
    .featured-box {
        /*max-width: 1264px; !* 158 x 8 *!*/
    }
}

.gem-medium {
    width: 21px;
    height: 21px;
    margin-bottom: 3px;
}

.gem-small {
    width: 14px;
    height: 14px;
    margin-bottom: 3px;
}

.card-icon {
    width: 10px;
    text-align: center;
}

.nowrap {
    white-space: nowrap;
}

.beemit-highlight{
    background: blueviolet;
    color: white;
    font-weight: bold;
}

.table-less-padding td, .table-less-padding th {
    padding: 0.25rem;
}

.font-size-70{
    font-size: 70%;
}

.space-if-empty:empty:before {
    content: "\200b";
}

.above-stretched-link {
    position: relative;
    z-index: 2;
}

.vertical-text {
    writing-mode: vertical-lr;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    -moz-writing-mode: vertical-lr;
    -o-writing-mode: vertical-lr;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

input[name="account_type"] {
    display: none;
}
input[name="account_type"]:checked + label {
    background: #dc3545;
    color: white !important;
}
input[name="account_type"]:checked + label:before{
    color: #dc3545;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    font-size: 12px;
    position: absolute;
    top: 4px;
    right: 4px;
    height: 24px;
    width: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background: white;
}

.scrollable-td {
    max-height: 380px;
    overflow-y: auto;
    word-wrap: break-word;
}

.btn-filter {
    border-radius: 1em !important;
}
.btn-filter-active {
    background: #dc3545;
}
.btn-filter-active:before {
    content: '\00D7  ';
}
.featured-heading {
    background: #dc3545;
    padding: 2px;
    display: inline-block;
}

.banner-ad-link {

}

.banner-ad-img {
    width: 140px;
}
