/* default (/static/css/layouts/withTags/layout.css) */
/***Layout for page in layout "withTags"*/
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

a {
    background-color: transparent;
    text-decoration: none;
}


.icon-platform {
    position: absolute;
    top: 5px;
    right: 5px;
    background-repeat: no-repeat;
    background-position: top;
    transition: ease 3ms;
    pointer-events: none;
}


.icon-platform:hover {
    #filter: saturate(250%);
}


.icon-stripchat {
    background-image: url("/static/icons/stripchat.png?new");
    background-size: 100% auto;
    width: 80px;
    height: 20px;
}

.icon-bongacams {
    background-image: url("/static/icons/bongacams.png?new");
    background-size: 100% auto;
    width: 80px;
    height: 20px;
}

.icon-cam4 {
    background-image: url("/static/icons/cam4.png?new");
    background-size: 100% auto;
    width: 60px;
    height: 20px;
}

.icon-camlust {
    background-image: url("/static/icons/camlust.png?new");
    background-size: 100% auto;
    width: 80px;
    height: 20px;
}

.icon-camscom {
    background-image: url("/static/icons/camscom.png?new");
    background-size: 100% auto;
    width: 50px;
    height: 20px;
}

.icon-camsoda {
    background-image: url("/static/icons/camsoda.png?new");
    background-size: 100% auto;
    width: 80px;
    height: 25px;
}

.icon-chaturbate {
    background-image: url("/static/icons/chaturbate.png?new");
    background-size: 100% auto;
    width: 80px;
    height: 25px;
}

.icon-flirt4free {
    background-image: url("/static/icons/flirt4free.png?new");
    background-size: 100% auto;
    width: 100px;
    height: 25px;
}

.icon-imlive {
    background-image: url("/static/icons/imlive.png?new");
    background-size: 100% auto;
    width: 65px;
    height: 20px;
}

.icon-livejasmin {
    background-image: url("/static/icons/livejasmin.png?new");
    background-size: 100% auto;
    width: 90px;
    height: 25px;
}

.icon-skyprivate {
    background-image: url("/static/icons/skyprivate.png?new");
    background-size: 100% auto;
    width: 90px;
    height: 20px;
}

.icon-xcams {
    background-image: url("/static/icons/xcams.png?new1");
    background-size: 100% auto;
    width: 60px;
    height: 25px;
}

.icon-xlove {
    background-image: url("/static/icons/xlove.png?new");
    background-size: 100% auto;
    width: 50px;
    height: 20px;
}


.suppotred-sites-container {
    text-align: center;
    padding-top: 80px;
    padding-right: 50px;
    padding-left: 50px;
    margin: 0 10px 0 10px;
    background: white;
}

.supported-sites-h2 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    padding-bottom: 1px;
    margin: 0;
}

.supported-sites-list {
    margin-left: -20px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.supported-sites-list-item {
    background-repeat: no-repeat;
    display: block;
    margin-left: 20px;
    margin-bottom: 15px;
    background-position: center;
    transition: ease 3ms;
}

.supported-sites-list-item:hover {
    filter: saturate(250%);
}
.index-description{
    text-align: center;
    margin: 0 auto;
    padding: 20px 15px;
    line-height: 1.6;
    font-size: 18px;
}
@media all and (max-width: 560px) {
    .suppotred-sites-container {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .index-description{
        text-align: center;
        margin: 0 auto;
        padding: 20px 15px;
        line-height: 1.6;
        font-size: 14px;
    }
}



body {
    min-height: 100%;
    margin: 0;
    display: grid;
    grid-template-rows:90px 1fr 50px;
    grid-template-columns:1fr 250px;
    grid-template-areas:
    "page-header page-header"
    "page-content page-sidebar"
    "page-footer page-footer";
}

.paging {
    min-width: 100px;
    text-align: center;
    padding: 4px 0 8px 0;
}

.paging .num {
    padding: 11px 9px 6px 8px;
    margin: 3px;
    display: inline-block;
    background: #232222;
    color: #fa94cf;
    font-size: 18px;
    line-height: 20px;
    min-width: 18px;
    text-align: center;
    text-decoration: none;
}

.paging .num.current{
    color: #232222;
    background: #fa94cf;
}

#page-header {
    grid-area: page-header;
    background: linear-gradient(#fff, #fff);
}

#page-content {
    grid-area: page-content;
    background: linear-gradient(#ffffff, #e6e6ec);
}

#page-sidebar {
    grid-area: page-sidebar;
    background: linear-gradient(#ffffff, #e6e6ec);
}

#page-footer {
    grid-area: page-footer;
    background: linear-gradient(#fff, #e6e6ec);
}


/* desktop with no sidebar */
@media (max-width: 1100px) {
    body {
        grid-template-columns:1fr;
        grid-template-areas:
    "page-header"
    "page-content"
    "page-footer";
    }

    /** removing sidebar */
    #page-sidebar {
        display: none;
    }

    /* sticky header */
    #page-header {
        position: fixed;
        z-index: 2;
        width: 100%;
        box-shadow: 4px 4px 2px 1px rgba(62, 12, 104, 0.1);
    }
}

/* mobile with no sidebar */
@media (max-width: 1100px) {
    /** removing second column in grid */
    body {
        grid-template-columns:1fr;
        grid-template-areas:
    "page-header"
    "page-content"
    "page-footer";
    }

    /** removing sidebar */
    #page-sidebar {
        display: none;
    }
}

pre.debug {
    background: black;
    color: white;
    position: fixed;
    overflow: scroll;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}



/** toggle **/
#sidebar-toggle {
    display: none;

}

#page-sidebar.active {
    position: fixed;
    display: block;
    left:0;
    top:86px;
    height:100%;
    width: 100%;
    overflow-y: scroll;
}

.toggle-sidebar {
    cursor: pointer;
    padding: 10px;
    text-align: right;
    justify-content: right;
    font-size: 24px;
    border-radius: 5px;
    transition: background 0.3s;
    user-select: none;
}

.toggle-sidebar span{
    color: white;
}

#sidebar-search.active{
    display: block !important;
    height: 40px;
}

#sidebar-search .input-search {
    white-space: nowrap;
    text-align: right;
    display: flex;
    flex-flow: row;
    width: 100%;
}

.main-menu .input-search {
    white-space: nowrap;
    text-align: right;
    display: flex;
    width: 100%;
}

#sidebar-search form{
    width: 100%;
    display: block;
}

#sidebar-search .input-search .text {
    display: flex;
    box-sizing: border-box;
    border: 1px solid #E9E9E9;
    font-size: 1rem;
    color: #8C8889;
    height: 38px;
    float: right;
    background: #ffffff;
    padding: 0 10px;
    margin-right: 4px;
    -webkit-appearance: none;
    border-radius: 0;
    width: 100%;
}

#sidebar-search .input-search .text:focus, .input-search button:focus {
    outline: none;
}

#sidebar-search .input-search button {
    float: right;
    display: inline-block;
    border-radius: 4px;
    font-size: 17px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    color: #ffffff;
    border: none;
    transition: all .3s ease;
    width: 38px;
    height: 36px;
    padding-top: 2px;
    margin: 0;
    background: #FF577DFF url("/static/icons/search-3-32.ico") center center no-repeat;
    background-size: 40% 40%;
}

#sidebar-search .input-search button:hover {
    background-color: #ff005e;
}

/* header (/static/css/layouts/withTags/parts/pageHeader.css) */
/** Mini-menu at the top */
.mini-menu {
    height: 38px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-menu a {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #1e1e33;
    font-weight: 600;
    text-decoration: none;
}

.mini-menu a:hover {
    text-decoration: underline;
    color: #FF577DFF;
}

.mini-menu a:first-of-type .mini-menu-icon {
    margin-left: 0;
}

.mini-menu-icon {
    margin-left: 15px;
    margin-right: 2px;
}

.mini-menu a.selected {
    color: #FF577DFF
}

.mini-menu .collections-icon {
    background: url("/static/icons/collections-icon.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.mini-menu .random-cam-icon {
    background: url("/static/icons/random-cam.png?cb=9") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.mini-menu .recorded-stream-icon {
    background: url("/static/icons/recorded-stream.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.mini-menu .mask-privacy-icon {
    background: url("/static/icons/mask-privacy-icon.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* desktop with no sidebar */
@media (max-width: 1100px) {
}

/* mobile with no sidebar */
@media (max-width: 800px) {
}

/** Main menu **/
.logo {
    display: inline-block;
    margin-right: 20px
}

.main-menu ul li.logo {
    width: 140px;
}

.menu-top {
    background: #a279b6;
    min-height: 32px;
}

.menu-top ul {
    list-style-type: none;
    display: flex;
    margin: 5px 0 10px 5px;
    padding: 0;
}

.menu-top ul li {
    padding: 8px 1px 0 0;
    margin: 0 8px 0 0;
}

.menu-top ul li.search {
    margin-left: auto
}

.menu-top ul li.search .search-input {
    background: #9373a2;
    border: none;
}


.menu-top ul li a {
    color: #fafafa;
    text-decoration: none;
    text-transform: uppercase;
}

.menu-top ul li a.selected {
    color: #FF577DFF;
}

.main-menu {
    background: #321644;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 10px;
}

.main-menu .input-search {
    white-space: nowrap;
    display: flex;
}

.main-menu .input-search .text {
    display: block;
    width: 120px;
    box-sizing: border-box;
    border: 1px solid #E9E9E9;
    font-size: 1rem;
    color: #8C8889;
    height: 35px;
    float: left;
    background: #ffffff;
    padding: 0 10px;
    margin-right: 4px;
    -webkit-appearance: none;
    border-radius: 0;
}

.main-menu .input-search .text:focus, .input-search button:focus {
    outline: none;
}

.main-menu .input-search button {
    float: right;
    display: inline-block;
    border-radius: 4px;
    font-size: 17px;
    line-height: 35px;
    text-align: center;
    background: #FF577DFF;
    cursor: pointer;
    color: #ffffff;
    border: none;
    transition: all .3s ease;
    width: 38px;
    height: 36px;
    padding: 0;
    margin: 0;
    background: #FF577DFF url("/static/icons/search-3-32.ico") center center no-repeat;
    background-size: 40% 40%;
}

.main-menu .input-search button:hover {
    background-color: #ff005e;
}

.main-menu .selected,
.mini-menu a.selected {
    color: #FF577DFF
}


.main-menu ul {
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.main-menu ul li {
    float: left;
    box-sizing: border-box;
    list-style: none;
    border-right: 1px solid #ccc;
    text-align: center;
    padding: 0 15px;
}

.main-menu ul li:last-child {
    border-right: none;
}


.main-menu-container {
    display: inline-flex;
}

.main-menu-gender {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
    display: flex;
    align-items: center;
}

.gender-icon.gender-icon-female {
    background: url("/static/icons/female.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.gender-icon.gender-icon-male {
    background: url("/static/icons/male.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.gender-icon.gender-icon-couples {
    background: url("/static/icons/couples.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.gender-icon.gender-icon-trans {
    background: url("/static/icons/trans.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.main-menu-gender.selected .gender-icon-female {
    background: url("/static/icons/female-hover.png") top left no-repeat;
    background-size: 100% 100%;
}

.main-menu-gender.selected .gender-icon-male {
    background: url("/static/icons/male-hover.png") top left no-repeat;
    background-size: 100% 100%;
}

.main-menu-gender.selected .gender-icon-couples {
    background: url("/static/icons/couples-hover.png") top left no-repeat;
    background-size: 100% 100%;
}

.main-menu-gender.selected .gender-icon-trans {
    background: url("/static/icons/trans-hover.png") top left no-repeat;
    background-size: 100% 100%;
}


.main-menu-gender:hover {
    color: #FF577DFF;
}

.main-menu-gender:hover .gender-icon {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.main-menu .toggle-sidebar .aside-icon-tune {
    background: url(/static/icons/aside-icons/aside-icon-tune.png) top left no-repeat;
    color: white;
    background-size: 100% 100%;
    width: 24px;
    height: 24px;
    display: none;
    float: right;
}

.aside-icon-close{
    background: url(/static/icons/close.png) top left no-repeat;
    color: white;
    background-size: 100% 100%;
    width: 24px;
    height: 24px;
    float: right;
}


.main-menu .toggle-sidebar .aside-icon-tune:hover {
    background: url(/static/icons/aside-icons/aside-icon-tune-hover.png) top left no-repeat;
    background-size: 100% 100%;
}

.menu-top ul li.toggle-sidebar {
    display: none;
    padding: 0;
    margin: 0;
}

/* desktop with no sidebar */
@media (max-width: 1100px) {

    .main-menu .toggle-sidebar .aside-icon-tune{
        display: inline-block;
    }
    .main-menu .search {
        display: none;
    }

    .menu-top ul li.toggle-sidebar {
        display: inline-block;
    }

    .main-menu ul li {
        width: calc(100% / 5);
        padding: 0 8px 0 0;
    }

    .main-menu-gender {
        justify-content: center;
    }

    .main-menu ul li:first-child {
        padding-left: unset;
    }

    .main-menu-gender .gender-icon {
        margin: 0;
    }

    .main-menu-gender .gender-icon-title {
        margin-left: 2px;
    }
}

/* mobile with no sidebar */
@media (max-width: 800px) {
    .main-menu .toggle-sidebar .aside-icon-tune{
        display: inline-block;
    }

    .main-menu-gender .gender-icon-title {
        display: none;
    }
    .menu-top ul li.toggle-sidebar {
        display: inline-block;
    }
}

/*  (/static/css/models/item.css) */
/** grid for page **/
/* Основной контейнер Grid */
.profile-container {
    display: grid;
    grid-template-columns: 250px 1fr; /* Левая колонка фиксированная, правая адаптивная */
    grid-template-rows: auto auto;  /* Два ряда: верхний контент и нижние изображения */
    gap: 2px; /* Отступы между блоками */
    padding: 2px;
}

/* Левый блок - фиксированная ширина */
.mini-profile {
    padding: 2px;
    text-align: center;
}

/* Основной контент справа */
.profile-main {
    padding: 2px;
}

/* Блок изображений на всю ширину */
.profile-images {
    padding: 2px;
    grid-column: span 2;  /* Растягивается на две колонки */
    text-align: center;
}

.history {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #444;
    line-height: 1.5;
}

.history .start,
.history .end,
.history .duration {
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
    color: #333;
    font-weight: bold;
}

.history .description {
    color: #555;
    font-size: 12px;
    margin-top: 5px;
}

.profile-images {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 800px) {
    .profile-container {
        grid-template-columns: 1fr; /* Все блоки на полную ширину */
        grid-template-rows: auto;  /* Авто-высота */
    }

    .profile-main {
        order: -1;  /* Перемещаем profile-main наверх */
    }
    .profile-main.profile-history {
        order: 1;  /* Перемещаем profile-main наверх */
    }

    .mini-profile, .profile-images {
        order: 0;  /* Оставляем по умолчанию */
    }

    .mini-profile, .profile-main, .profile-images {
        grid-column: span 1; /* Занимают всю ширину */
    }
}
/** images **/
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.lightbox .nav-btn {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
}

.lightbox .prev-btn {
    left: 20px;
}

.lightbox .next-btn {
    right: 20px;
}

/** Offline **/

.offline{
    width: 100%;
    position: relative;
}

.offline-player {
    background-blend-mode: normal;
    background-position: 100% 20%;
    background-size: cover;
    filter: blur(2px) grayscale(1);
    transform: scale(1.1);
    min-height: 450px;
    background-color: #eee;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
}

.offline-status {
    color: white;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 10%;
    left:0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-flow: column;
}

.offline-status-text-background {
    background-color: rgba(0, 0, 0, 0.5);
    margin: 10px;
    padding: 20px 30px;
}

.offline-status-text {
    text-shadow: 0 0 3px rgba(0, 0, 0, 1);
    margin-bottom: 10px;
    font-size: 14px;
}

.offline-status div.offline-status-text:first-of-type {
    font-weight: 600;
    font-size: 18px;
}

.offline-status-affiliate-url {
    color: #FF577DFF;
}

.offline-status-model-name {
    text-transform: capitalize;
}

.offline-status-platform {
    text-transform: capitalize;
    color: #FF577DFF;
}

.offline-now {
    text-transform: uppercase;
    font-size: 25px;
    padding-bottom: 10px;
}


a.random-cam {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 13px 30px;
    border: 0;
    border-radius: 6px;
    background-image: linear-gradient(to right, #f7186a, #FF577DFF, #8716d7, #FF577DFF);
    background-size: 300% 100%;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.random-cam:focus, .visit-me:focus, .random-cam:active, .visit-me:active {
    outline: none;
}

.random-cam:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.offline-bio{
    padding: 20px 0 10px 0;
    margin: 0 auto;
    text-align: center;
}

.profile-images{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    min-height: 0;
    min-width: 0;
    padding-bottom: 10px;
    clear: both;
    object-fit:cover;
    overflow: hidden;
    column-gap: 10px;
    row-gap: 10px;
}
.avatar img{
    width: 100px;
    height: 100px;
    object-fit:cover; /*this property does the magic*/
    border-radius:50%;
}

.profile-images img{
    max-width: 100%;
    position: relative;
}

.profile-images img:hover{
    max-width: 100%;
    position: relative;
}
.profile-images .image{
    display: block;
    position: relative;
}
span.image-time{
    color: #262525;
    position: absolute;
    bottom: 4px;
    left:2px;
    margin: 2px;
    padding: 2px;
    background: #fff;
    opacity: 0.7;
    line-height: 20px;
}

.link a{
    display: block;
    text-decoration: none;
    background: #e20070;
    margin: 0px;
    color: white;
    padding: 5px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    line-height: 25px;
}

.tags .tag{
    display: inline-block;
}

.tags .tag a{
    margin-right: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    padding: 3px 5px;
    transition: .3s;
    border: 1px solid #FF577DFF;
    background-color: #fff;
    color: #FF577DFF;
    white-space: nowrap;
}

.bio{
    padding: 0 0 10px 0;
    margin: 0 auto;
    text-align: center;
}

.profile h1{
    margin: 5px;
    font-size: 24px;
}

@media (max-width: 1300px) {
    .profile-images {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
}

/* desktop with no sidebar */
@media (max-width: 1100px) {
    .profile-images {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

/* desktop with no sidebar */
@media (max-width: 800px) {
    .profile-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .offline-player {
        min-height: 250px;
    }.
}
.quote-block {
    position: relative;
    max-width: 300px;
    margin: 12px auto;
    padding: 12px 17px 12px 17px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    background: #fdfdfd;
    border-left: 1px solid #ff4081;
    border-radius: 3px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    color: #444;
    overflow-wrap: break-word;
}

.quote-block::before,
.quote-block::after {
    content: '“';
    font-family: serif;
    font-size: 3rem;
    color: #ff4081;
    position: absolute;
}

.quote-block::before {
    top: -20px;
    left: 10px;
}

.quote-block::after {
    content: '”';
    bottom: -40px;
    right: 10px;
}

@media (max-width: 600px) {
    .quote-block {
        padding: 15px 20px;
        font-size: 1rem;
    }
}


#player-container{
    width: 100%;
    background: #fff2f9;
}

.categories a{
    position: relative;
    color: #e20070;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 2px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    border-left: 1px solid #ff007d;
    padding: 2px 4px 3px 16px;
    margin: 1px 3px 6px 1px;
    display: inline-block;;
}

.categories a:hover{
    text-decoration: underline;
}

.categories .category-star {
    position: absolute;
    background: url("/static/icons/icon-star-collection.png") top left no-repeat;
    background-size: 100% 100%;
    width: 16px;
    height: 16px;
    bottom: 5px;
    left: 0px;
    transition: all .3s;
}

/*  (/static/css/models/recommended.css) */
.recommended .models-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, 200px);
    column-gap: 10px;
    row-gap: 10px;
    min-height: 0;
    min-width: 0;
    padding-bottom: 10px;
}

.models-list__item {
    position: relative;
    max-height: 160px;
    overflow: hidden;
}

.models-list__image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

@media (hover: hover) {
    .models-list__item:hover .models-list__image {
        transform: scale(1.2);
        transition: all 0.5s;
    }

    .models-list__item:hover .icon-platform {
        visibility: visible;
        opacity: 1;
    }
}

.models-list__image-link:after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, transparent, rgba(0, 0, 0, .2), rgba(0, 0, 0, .7));
}

.models-list__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

a.models-list__name {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    color: #fff;
    overflow: hidden;
    text-shadow: 1px 1px 0 rgb(0 0 0 / 70%);
    position: absolute;
    bottom: 3px;
    left: 4px;
}

@media only screen and (max-width: 800px) {
    .models-list__image {
        max-height: 130px;
    }
}


.icon-platform {
    position: absolute;
    transition: visibility 0.3s linear, opacity 0.3s linear;
    visibility: hidden;
    opacity: 0;
    top: 5px;
    right: 5px;
    background-repeat: no-repeat;
    background-position: top;
}


.icon-stripchat {
    background-image: url("/static/icons/stripchat.png?new");
    background-size: 100% auto;
    width: 80px;
    height: 20px;
}

.icon-bongacams {
    background-image: url("/static/icons/bongacams.png?new");
    background-size: 100% auto;
    width: 80px;
    height: 20px;
}

.icon-cam4 {
    background-image: url("/static/icons/cam4.png?new");
    background-size: 100% auto;
    width: 60px;
    height: 20px;
}

.icon-camlust {
    background-image: url("/static/icons/camlust.png?new");
    background-size: 100% auto;
    width: 80px;
    height: 20px;
}

.icon-camscom {
    background-image: url("/static/icons/camscom.png?new");
    background-size: 100% auto;
    width: 50px;
    height: 20px;
}

.icon-camsoda {
    background-image: url("/static/icons/camsoda.png?new");
    background-size: 100% auto;
    width: 80px;
    height: 25px;
}

.icon-chaturbate {
    background-image: url("/static/icons/chaturbate.png?new");
    background-size: 100% auto;
    width: 80px;
    height: 25px;
}

.icon-flirt4free {
    background-image: url("/static/icons/flirt4free.png?new");
    background-size: 100% auto;
    width: 100px;
    height: 25px;
}

.icon-imlive {
    background-image: url("/static/icons/imlive.png?new");
    background-size: 100% auto;
    width: 65px;
    height: 20px;
}

.icon-livejasmin {
    background-image: url("/static/icons/lj.png");
    background-size: 100% auto;
    width: 90px;
    height: 25px;
}

.icon-skyprivate {
    background-image: url("/static/icons/skyprivate.png?new");
    background-size: 100% auto;
    width: 90px;
    height: 20px;
}

.icon-xcams {
    background-image: url("/static/icons/xcams.png?new1");
    background-size: 100% auto;
    width: 60px;
    height: 25px;
}

.icon-xlove {
    background-image: url("/static/icons/xlove.png?new");
    background-size: 100% auto;
    width: 50px;
    height: 20px;
}

@media all and (max-width: 1100px) {
    .models-list__item:hover .models-list__image {
        transform: none;
        transition: none;
    }

    .models-list__item .icon-platform {
        visibility: visible;
        opacity: 1;
    }

    .recommended .models-list {
        grid-template-columns:  1fr  1fr 1fr;
        display: grid;
    }
}

@media all and (max-width: 600px) {
    .models-list__item .icon-platform {
        visibility: visible;
        opacity: 1;
    }

    .recommended .models-list {
        grid-template-columns:  1fr  1fr;
        display: grid;
    }
}

/*  (/static/css/models/stripchat.css) */
.player{
    width: 100%;
}


/* tags (/static/css/tags/tags-list.css) */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/materialicons/v50/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.aside {
    box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.1), 0 2px 24px 0 rgba(158, 158, 158, 0.1);
    box-sizing: border-box;
}

.tags-aside {
    text-align: left;
}

.side-menu-opened #swipe-label-close span {
    width: 24px;
    height: 24px;
    display: inline-block;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.side-menu-closed #swipe-label-close span {
    display: none;
}

.side-menu-closed .aside {
    width: 0;
    padding: 0;
    margin: 0;
    transition: width 0.3s;
}


.side-menu-opened .aside {
    width: 225px;
    transition: width 0.3s;
    background-color: #fff;
}

.side-menu-closed #swipe {
    display: none;
}

input[data-function*='swipe'] {
    position: absolute;
    opacity: 0;
}

label[data-function*='swipe'] {
    position: absolute;
    top: 93px;
    right: 233px;
    z-index: 1;
    display: block;
    width: 24px;
    height: 24px;
    text-align: center;
    color: #000;
    cursor: pointer;
}

label[data-function*='swipe']:hover {
    color: #263249;
}

input[data-function*='swipe']:checked ~ label[data-function*='swipe'] {
    transform: translate3d(-225px, 0, 0);
}

label[data-function*='swipe']:checked {
    display: block;
}

.aside-icon-open-close:nth-child(2) {
    display: none;
}

.aside-icon-tune {
    background: url(/static/icons/aside-icons/aside-icon-tune-black.png) top left no-repeat;
    background-size: 100% 100%;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.aside-icon-tune:hover {
    background: url(/static/icons/aside-icons/aside-icon-tune-hover.png) top left no-repeat;
    background-size: 100% 100%;
}


input[data-function*='swipe']:checked ~ label:nth-child(2) {
    display: block;
    transform: translate3d(225px, 0px, 0px);
}

input[data-function*='swipe']:checked ~ label:nth-child(3) {
    color: #fff;
}


input[data-function*='swipe']:checked ~ .tags-aside-container {
    transform: translate3d(225px, 0px, 0px);
}

.tags-aside-container {
    right: 0;
}

.tags-aside-ul {
    list-style: none;
}

.tags-aside-ul li {
    list-style: none;
    padding: 4px 0 0 2px;
    font-size: 1em;
}


.tags-aside-group {
    display: none;
    visibility: hidden;
}

.tags-aside-group-name {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    cursor: pointer;
    padding: 15px 15px 0 15px;
    transition: all .3s ease;
}

.tags-aside-group-icon span:nth-child(2) {
    transition: all .3s ease;
}

.tags-aside-group-name:hover .tags-aside-group-icon span:nth-child(2) {
    color: #FF577DFF;
}

.tags-aside-group:checked ~ .expand {
    transition: height 0.2s ease-in;
}

.tags-aside-group:checked ~ .expand.height-24-1 {
    height: 29px
}

.tags-aside-group:checked ~ .expand.height-24-2 {
    height: 53px
}

.tags-aside-group:checked ~ .expand.height-24-3 {
    height: 77px
}

.tags-aside-group:checked ~ .expand.height-24-4 {
    height: 101px
}

.tags-aside-group:checked ~ .expand.height-24-5 {
    height: 125px
}

.tags-aside-group:checked ~ .expand.height-24-6 {
    height: 149px
}

.tags-aside-group:checked ~ .expand.height-24-7 {
    height: 173px
}

.tags-aside-group:checked ~ .expand.height-24-8 {
    height: 197px
}

.tags-aside-group:checked ~ .expand.height-24-9 {
    height: 221px
}

.tags-aside-group:checked ~ .expand.height-24-10 {
    height: 245px
}

.tags-aside-group:checked ~ .expand.height-24-11 {
    height: 269px
}

.tags-aside-group:checked ~ .expand.height-24-12 {
    height: 293px
}

.tags-aside-group:checked ~ .expand.height-24-13 {
    height: 317px
}
.tags-aside-group:checked ~ .expand.height-24-14 {
    height: 341px;
}

.tags-aside-group:checked ~ .expand.height-24-15 {
    height: 365px;
}

.tags-aside-group:checked ~ .expand.height-24-16 {
    height: 389px;
}

.tags-aside-group:checked ~ .expand.height-24-17 {
    height: 413px;
}

.tags-aside-group:checked ~ .expand.height-24-18 {
    height: 437px;
}

.tags-aside-group:checked ~ .expand.height-24-19 {
    height: 461px;
}

.tags-aside-group:checked ~ .expand.height-24-20 {
    height: 485px;
}

.tags-aside-group:checked ~ .expand.height-24-21 {
    height: 509px;
}

.tags-aside-group:checked ~ .expand.height-24-22 {
    height: 533px;
}

.tags-aside-group:checked ~ .expand.height-24-23 {
    height: 557px;
}

.tags-aside-group:checked ~ .expand.height-24-24 {
    height: 581px;
}

.tags-aside-group:checked ~ .expand.height-24-25 {
    height: 605px;
}

.tags-aside-group:checked ~ .expand.height-24-26 {
    height: 629px;
}

.tags-aside-group:checked ~ .expand.height-24-27 {
    height: 653px;
}

.tags-aside-group:checked ~ .expand.height-24-28 {
    height: 677px;
}

.tags-aside-group:checked ~ .expand.height-24-29 {
    height: 701px;
}

.tags-aside-group:checked ~ .expand.height-24-30 {
    height: 725px;
}

.tags-aside-group:checked ~ .expand.height-24-31 {
    height: 749px;
}

.tags-aside-group:checked ~ .expand.height-24-32 {
    height: 773px;
}

.tags-aside-group:checked ~ .expand.height-24-33 {
    height: 797px;
}

.tags-aside-group:checked ~ .expand.height-24-34 {
    height: 821px;
}

.tags-aside-group:checked ~ .expand.height-24-35 {
    height: 845px;
}

.tags-aside-group:checked ~ .expand.height-24-36 {
    height: 869px;
}

.tags-aside-group:checked ~ .expand.height-24-37 {
    height: 893px;
}

.tags-aside-group:checked ~ .expand.height-24-38 {
    height: 917px;
}

.tags-aside-group:checked ~ .expand.height-24-39 {
    height: 941px;
}

.tags-aside-group:checked ~ .expand.height-24-40 {
    height: 965px;
}


.expand {
    overflow: hidden;
    height: 0;
    transition: height 0.2s ease-in;
}

.tags-aside-container-item {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
}

.tags-aside-group-icon {
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.tags-aside-group-item {
    text-transform: capitalize;
    padding: 3px 15px 3px 15px;
    color: #7b7b7b;
    line-height: 18px;
    height: 18px;
}


.tags-aside-group-item.selected,
.tags-aside-group-item.current {
    background-color: #a600ff0f;
}

.tags-aside-group-item.selected a,
.tags-aside-group-item.current a {
    color: #FF577DFF;
}

.tags-aside-group-item:hover {
    background-color: #a600ff0f;
    cursor: pointer;
}

.tags-aside-group-item a {
    color: #404040;
    font-size: 16px;
}

.tags-aside-container-item.tag-closed .aside-icon-arrow {
    transform: rotate(180deg);
    transition: all 200ms ease-out;
}

.aside-icon-ethnicity,.aside-icon-country {
    background: url("/static/icons/aside-icons/aside-icon-ethnicity.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-age {
    background: url("/static/icons/aside-icons/aside-icon-age.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-hair {
    background: url("/static/icons/aside-icons/aside-icon-hair.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-bust {
    background: url("/static/icons/aside-icons/aside-icon-bust.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-publicarea {
    background: url("/static/icons/aside-icons/aside-icon-publicarea.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-specifics {
    background: url("/static/icons/aside-icons/aside-icon-figure.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-language {
    background: url("/static/icons/aside-icons/aside-icon-language.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-orientation {
    background: url("/static/icons/aside-icons/aside-icon-orientation.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-eyes {
    background: url("/static/icons/aside-icons/aside-icon-eyes.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-activities {
    background: url("/static/icons/aside-icons/aside-icon-sextype.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-fetish {
    background: url("/static/icons/aside-icons/aside-icon-fetish.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-romantic {
    background: url("/static/icons/aside-icons/aside-icon-romantic.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-platform {
    background: url("/static/icons/aside-icons/aside-icon-platform.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-other {
    background: url("/static/icons/aside-icons/aside-icon-extra.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.aside-icon-gender {
    background: url("/static/icons/aside-icons/aside-icon-gender.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.tags-aside-all-tags {
    padding: 10px 0 10px 0;
    text-align: center;
}

.tags-aside-all-tags-link {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    color: #8716d7;
}

.tags-aside-all-tags-link:hover,
.aside-icon-open-close:hover span {
    transition: all .3s ease;
    color: #FF577DFF;
}

.tags-aside-group-item-count {
    font-size: 12px;
}


.aside-input-search {
    margin: 15px 15px 0 15px;
    display: none;
}

.aside-input-search .text {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #E9E9E9;
    font-size: 1rem;
    color: #8C8889;
    height: 35px;
    background: #ffffff;
    padding: 0 10px;
    margin-right: 10px;
    -webkit-appearance: none;
    border-radius: 0;
}

.aside-input-search button {
    border-radius: 4px;
    font-size: 17px;
    line-height: 35px;
    text-align: center;
    width: 48px;
    background: #FF577DFF;
    cursor: pointer;
    color: #ffffff;
    border: none;
    transition: all .3s ease;
}

.aside-input-search button:hover {
    background: #ff005e;
}

.side-menu-closed aside{
    max-height: 300px;
}

@media all and (max-width: 800px) {
    .tags-aside-all-tags {
        padding: 15px 0 15px 0;
    }

    .aside-icon-tune {
        background: url(/static/icons/aside-icons/aside-icon-tune.png) top left no-repeat;
        background-size: 100% 100%;
    }


    #swipe-label-open {
        top: 52px!important;
    }

    .aside {
        box-shadow: none;
    }

    .side-menu-closed .aside-input-search {
        display: flex !important;
    }

    .side-menu-closed .input-search {
        display: none;
    }

    .side-menu-opened .input-search {
        display: none;
    }

    .side-menu-opened #swipe-label-open {
        display: block;
        right: 10px;
        z-index: 12000;
        position: fixed;
    }

    .side-menu-opened #swipe-label-close {
        display: none;
    }

    .side-menu-opened aside{
        height: 0;
    }

    .side-menu-closed #swipe-label-open {
        display: none;
        right: 10px;
    }



    .side-menu-closed #swipe-label-close span {

    }

    input[data-function*='swipe']:checked ~ label[data-function*='swipe'] {
        transform: translate3d(0px, 0, 0);
    }

    .side-menu-opened .aside {
        width: 0;
        height: 10px;
        padding: 0;
        margin: 0;
        transition: none;
    }

    .side-menu-opened #swipe {
        display: none;
    }

    .side-menu-closed .aside {
        width: 100%;
        transition: width 0.3s;
        top: 100px;
        left: 0;
        background-color: white;
        position: absolute;
        z-index: 1201;
    }


    .side-menu-closed .input-search {
        background-color: white;
    }

    .side-menu-closed .main {
        display: none;
    }

    .side-menu-closed .footer {
        display: none;
    }

    input[data-function*='swipe']:checked ~ .tags-aside-container {
        transform: translate3d(0px, 0px, 0px);
    }

    .side-menu-closed .aside .tags-aside-container {
        width: 100%;
        display: block;
        background-color: white;
    }

    .side-menu-closed .top-icon-open-close {
        position: absolute;
        right: 10px;
        display: inline-block;
        color: #fff;
        cursor: pointer;
    }

    .side-menu-closed .top-icon-open-close:hover {
        color: #FF577DFF;
    }
}

@media all and (max-width: 1100px) {

    .aside-icon-tune {
        background: url(/static/icons/aside-icons/aside-icon-tune.png) top left no-repeat;
        background-size: 100% 100%;
    }

    #swipe-label-open {
        top: 35px;
        color: #fff;
    }

    .top-icon-open-close {
        top: 12px;
        color: #fff;
    }

}


