@import "styles/variables.php";

:root {
    --main_color: #F5B100;
}

body.light {
    --main_color: #F58400;
}

* {
    border: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body,
html {
    scroll-behavior: smooth;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    background: #1C1D21;
    color: #fff;
    font-family: var(--fontFamily);
    position: relative;
    scroll-behavior: smooth;
    min-width: 320px;
    overflow-x: hidden !important;

}

body {
    overflow-x: hidden;
}

.logo_light,
.logo_dark {
    display: none;
}

body.light .logo_light,
body.dark .logo_dark {
    display: inline-block;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.container {
    max-width: 100%;
    max-width: 1880px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}

.body--open {
    overflow-y: hidden !important;
}

.header {
    width: 100%;
    top: 0;
    display: flex;
    padding: 8px 0;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;;
    background: #25272B;
    position: relative;
    min-height: 58px;
}

body.body--open .header {
    z-index: 999;
}

.header_holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo_search {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.header__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
    margin: 0 60px 0 0;
}

@media only screen and (max-width: 1300px) {
    .header__logo {
        margin: 0 20px 0 0;
    }
}

@media only screen and (max-width: 1150px) {
    .header__logo {
        margin: 0 10px 0 0;
    }
}

@media only screen and (max-width: 1080px) {
    .header__logo {
        margin: 0 auto 0 0;
    }
}


.header__logo img {
    height: auto;
    width: 232px;
}

.header__nav {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.header__nav .nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media only screen and (max-width: 1080px) {
    .header__nav {
        width: 0;
        overflow: hidden;
        height: calc(100vh - 58px);
        height: 100vh;
        transition: 0.6s;
        margin: 0 30px 0 0;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        transition: width 0.6s;
        position: fixed;
        top: 58px;
        z-index: 99;
        backdrop-filter: blur(4.5px);
        box-shadow: 10px 25px 24px 0px rgba(0, 0, 0, 0.50);
        background: rgba(37, 39, 43, 0.80);
        justify-content: flex-start;
        left: 0;
    }

    body.light .header__nav {
        background: rgba(232, 232, 232, 0.80);
    }

    .header__nav .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .header__nav--open {
        -webkit-transform: translateX(0vw);
        transform: translateX(0vw);
        -webkit-transition: 0.4s;
        transition: 0.4s;
        overflow-y: auto;
        width: 220px;
    }

    .header__link {
        order: 1;
    }

    .user_nav {
        order: 0;
        margin: 0 0 40px;
    }
}

.header__link {
    text-decoration: none;
    outline: none;
    transition: all 0.4s;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-right: 60px;
}

@media only screen and (max-width: 1600px) {
    .header__link {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 1150px) {
    .header__link {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 1080px) {
    .header__link {
        margin: 0 0 40px;
        width: 100%;
    }
}


.header__link:last-child {
    margin-right: 0;
}

.header__link.active,
.header__link:hover {
    color: var(--main_color);
}

.header__link.theme {
    font-size: 24px;
}

.header__link.theme svg {
    width: 24px;
    height: 24px;
}

.header__link.theme .text_theme {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 0 10px;
    display: none;
}
@media only screen and (max-width: 1080px) {
    body.light .header__link.theme .text_theme.dark {
        display: inline-block;
    }

    body.dark .header__link.theme .text_theme.light {
        display: inline-block;
    }
}

.user_nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.header__button {
    text-decoration: none;
    outline: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #1C1D21;
    height: 40px;
    padding: 0px 30px;
    align-items: center;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    margin-right: 10px;
    white-space: nowrap;
    transition: color .3s, background .3s;
}

@media only screen and (max-width: 1080px) {
    .header__button { 
        padding: 0;
        min-width: 85px;
    }
}

.header__button.signup {
    background: var(--main_color);
    color: #1C1D21;
    margin: 0;
}

@media only screen and (min-width: 1024px) {
    .header__button:hover {
        background: var(--main_color);
        color: #1C1D21;
    }

    .header__button.signup:hover {
        color: #FFF;
        background: #1C1D21;
    }
}

.header__searchWrapper {
    display: flex;
    width: 460px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

@media only screen and (max-width: 1400px) {
    .header__searchWrapper {
        width: 360px;
    }
}

@media only screen and (max-width: 1250px) {
    .header__searchWrapper {
        width: 260px;
    }
}

.header__close-search {
    display: none;
}

@media only screen and (max-width: 1080px) {
    .header__searchWrapper {
        position: absolute;
        display: flex;
        align-items: center;
        top: 0;
        width: 100%;
        left: 0;
        right: 0;
        padding: 10px;
        background: #25272b;
        transform: translateY(-20px);
        transition: transform .3s, opacity .3s, visibility .3s;
        opacity: 0;
        visibility: hidden;
    }

    body.open-search .header__searchWrapper {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__close-search {
        display: block;
        width: 26px;
        height: 26px;
        color: #fff;
        font-size: 26px;
        margin: 0 0 0 10px;
        background: transparent;
        border: none;
    }

    body.light .header__close-search {
        color: #1C1D21;
    }
}

.header__searchWrapper .submit {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--main_color);
    border: none;
    background: transparent;
    padding: 0 20px 0 10px;
    cursor: pointer;
    transition: color .3s;
}

@media only screen and (max-width: 1080px) {
    .header__searchWrapper .submit {
        right: 47px;
    }
}

@media only screen and (min-width: 1024px) {
    .header__searchWrapper .submit:hover {
        color: #fff;
    }
}

.header__searchWrapper input {
    width: 100%;
    outline: none;
    border-radius: 30px;
    background: #1C1D21;
    color: #96989D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    padding: 12px 45px 12px 20px;
}

.header__hamburger {
    width: 26px;
    height: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    outline: none;
    display: none;
    transition: 0.4s;
}

@media only screen and (max-width: 1080px) {
    .header__hamburger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media only screen and (min-width: 1024px) {
    .header__hamburger:hover {
        cursor: pointer;
        opacity: 0.6;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }
}

.header__hamburger span {
    width: 26px;
    height: 3px;
    background: var(--main_color);
    position: absolute;
}

.header__hamburger .first {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

.header__hamburger .second {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 1;
}

.header__hamburger .third {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.header__hamburger .first--open {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header__hamburger .second--open {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
}

.header__hamburger .third--open {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    height: auto;
    padding: 30px 0;
    background: transparent;
    border-top: 1px solid var(--main_color);
}

@media only screen and (max-width: 1300px) {
    .footer {
        flex-wrap: wrap;
    }
}


@media only screen and (max-width: 1000px) {
    .footer {
        flex-direction: column;
        padding: 30px 0 20px;
    }

    .footer-right {
        margin: 0 auto 0 0;
    }
}

.footer-left {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

@media only screen and (max-width: 1300px) {
    .footer-left {
        width: 100%;
        margin: 0 0 30px;
        justify-content: center;
    }
}

.footer-left span {
    color: #96989D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    padding: 0 20px;
}

.footer-left .iporn {
    line-height: 0;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
    margin: 0 auto 0 0;
}

@media only screen and (max-width: 1300px) {
    .footer__logo {
        margin: 0;
    }
}

.footer__logo img {
    height: 35px;
}

@media only screen and (max-width: 400px) {
    .footer__logo img {
        height: 25px;
    }
}

.footer-center {
    margin: 0 auto 0 50px;
}

@media only screen and (max-width: 1450px) {
    .footer-center {
        margin: 0 auto 0 10px;
    }
}

@media only screen and (max-width: 1300px) {
    .footer-center {
        margin: 0 auto 0 0;
    }
}

@media only screen and (max-width: 1000px) {
    .footer-center {
        margin: 0 0 30px;
        width: 100%;
    }
}

.footer-center .copyright {
    color: #838383;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.footer__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 35px;
    padding: 0 0 5px;
}

@media only screen and (max-width: 1450px) {
    .footer__nav {
        gap: 15px;
    }
}

@media only screen and (max-width: 1000px) {
    .footer__nav {
        justify-content: space-between;
        padding: 0 0 15px;
    }
}

.footer__link {
    outline: none;
    text-decoration: none;
    transition: 0.4s;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}

.footer__link:hover {
    color: var(--main_color);
}

.footer__separator {
    width: 1px;
    height: 14px;
    background: var(--footerLink);
}

@media only screen and (max-width: 1000px) {
    .footer__separator {
        display: none;
    }
}

.footer__images {
    height: 27px;
    margin: 0 0 0 auto;
}

@media only screen and (max-width: 1000px) {
    .footer__images {
        margin: 0;
    }
}

.siteContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}


.contentContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    margin: 0 0 0 auto;
}

@media only screen and (max-width: 740px) {
    .contentContainer--filtersOpen {
        width: 100%;
        transition: 0.6s;
    }
}


.filters {
    width: 0;
    overflow: hidden;
    height: calc(100vh - 58px);
    height: 100vh;
    transition: 0.6s;
    margin: 0 30px 0 0;
    background: #25272B;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transition: width 0.6s;
    position: fixed;
    top: 58px;
    top: 0;
    z-index: 99;
    background: rgba(28, 29, 33, 0.65);
    background: rgba(37, 39, 43, 0.95);
    box-shadow: 10px 0px 24px 0px rgba(0, 0, 0, 0.50);
}

.filters--open {
    width: 310px;
    transition: width 0.6s;
}

@media only screen and (max-width: 740px) {
    .filters--open {
        /* width:100%; */
        width: 310px;
        width: 220px;
        transition: width 0.6s;

    }
}

.filters__filterBtn {
    margin: 20px 0;
    padding: 0 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    color: var(--main_color);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: transparent;
    transition: color .3s;
    white-space: nowrap;
}

.filters__filterBtn .svg_holder {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 20px 0px;
    justify-content: space-between;
    align-items: center;
    border-radius: 25px 0px 0px 25px;
    background: var(--main_color);
    color: #000000;
    position: relative;
    transition: color .3s, background .3s;
}

.filters__filterBtn .svg_holder svg {
    position: absolute;
    top: 50%;
    left: calc(50% + 2px);
    transform: translate(-50%, -50%) rotate(180deg);
}

.filters__filterBtn:hover {
    color: #fff;
    cursor: pointer;
}

.filters__filterBtn:hover .svg_holder{
    background: #fff;
    color: #000;
}

.filters__quickLinks {
    font-size: 18px;
    line-height: 18px;
    color: white;
    font-weight: 500;
    background: var(--filterTitleBackground);
    width: 100%;
    height: 42px;
    padding: 10px;
    white-space: nowrap;
}

.filers__quickLink {
    outline: none;
    text-decoration: none;
    color: var(--filterTitleBackground);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    border-bottom: 1px solid var(--filterTitleBackground);
    padding: 11px;
    transition: 0.4s;
    white-space: nowrap;
}

.filers__quickLink:hover {
    opacity: 0.6;
    transition: 0.4s;
}


.filters__dropDownBtn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.4s;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding: 15px 20px;
}

.filters__dropDownBtn svg {
    font-size: 24px;
    margin: 0 10px 0 0;
}

.filters__dropDownBtn .icon-right-arrow {
    margin: 0 0 0 auto;
    transition: all .3s;
    color: #fff;
    font-size: 10px;
}

.filters__dropDownBtn:hover {
    background: rgba(28, 29, 33, 0.80);
    color: var(--main_color);
    cursor: pointer;
}

.filters__dropDownBtn:hover .icon-right-arrow {
    color: var(--main_color);
}

.filters__dropDownBtn.active {
    background: rgba(28, 29, 33, 0.80);
    color: var(--main_color);
}

.filters__dropDownBtn.active .icon-right-arrow {
    transform: rotate(180deg);
    color: var(--main_color);
}

.filters__dropDownList {
    list-style-type: none;
    width: 100%;
    transition: .4s;
}

.filters__dropDownListItem {
    display: block;
}

.filers__dropDownLink {
    width: 100%;
    outline: none;
    text-decoration: none;
    height: 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    background: rgba(28, 29, 33, 0.50);
    color: #fff;
    overflow: hidden;
    padding: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding: 0 20px 0 60px;
}

.filers__dropDownLink:hover {
    background: var(--main_color);
    color: #1C1D21;
}

.filers__dropDownLink i {
    display: none;
    font-size: 15px;
}

.filers__dropDownLink--active {
    color: var(--main_color);
    height: 50px;
}

.filers__dropDownLink--active svg {
    display: flex;
    font-size: 14px;
    margin: 0 0 0 auto;
}

.filters__dropDownList.active .filers__dropDownLink {
    height: 50px;
    padding: 12px 20px 12px 60px;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 30px 0 0 0;
    position: relative;
}


.main__wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 0 0 10px;
}

.filters__filterBtn-main,
.main__filterBtn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    outline: none;
    text-align: none;
    transition: background .4s, color .4s;
    background: var(--main_color);
    border-radius: 20px;
    background: rgba(245, 177, 0, 0.60);
    background: rgba(245, 177, 0, 0.90);
    color: #1C1D21;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
    text-transform: uppercase;
    padding: 6px 20px;
    position: fixed;
    z-index: 2; 
    top: 68px;
}

.hidden_button .filters__filterBtn-main,
.hidden_button .main__filterBtn{
    display: none !important;
}

.main.scroll .filters__filterBtn-main,
.main.scroll .main__filterBtn {
    top: 10px;
}

.filters__filterBtn-main svg,
.main__filterBtn svg {
    margin: 0 0 0 10px;
    width: 20px;
    height: 20px;
}

.filters__filterBtn-main svg {
    transform: rotate(180deg);
}

.filters__filterBtn-main:hover,
.main__filterBtn:hover {
    color: #000;
    background: var(--main_color);
    cursor: pointer;
}

.main__filterBtn--open {
    opacity: 0;
    transition: 0.4s;
    cursor: alias;
}

.filters__filterBtn-main {
    display: none;
}

.contentContainer--filtersOpen .filters__filterBtn-main {
    display: flex;
}


.main__select {
    background: var(--inputBackground);
    color: white;
    font-size: 15px;
    width: 250px;
    height: 37px;
    padding: 0 10px;
    font-weight: 500;
    margin: 0 13px 0 0;
}

@media only screen and (max-width: 500px) {
    .main__select {
        width: fit-content;

    }
}

.main__text {
    width: 100%;
    margin: 50px 0 30px;
}

.breadcrumbs .main__text {
    margin: 10px 0;
}

.main__h1 {
    width: 100%;
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 15px;
}

.main__p {
    width: 100%;
    color: #96989D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}


.main__container {
    width: 100%;
    /* display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr; */
}

#dataContent2 .models-box,
#dataContent {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -5px;
}

#dataContent2 .main__model,
#dataContent .main__model {
    flex: 1 0 100%;
    max-width: calc(100%/6);
    padding: 0 5px 10px;
}

@media only screen and (max-width: 1850px) {
    #dataContent2 .main__model,
    #dataContent .main__model {
        max-width: calc(100%/6);
    }
}

@media only screen and (max-width: 1780px) {
    #dataContent2 .main__model,
    #dataContent .main__model {
        max-width: calc(100%/6);
    }
}

@media only screen and (max-width: 1750px) {
    #dataContent2 .main__model,
    #dataContent .main__model {
        max-width: calc(100%/6);
    }
}

@media only screen and (max-width: 1600px) {
    #dataContent2 .main__model,
    #dataContent .main__model {
        max-width: calc(100%/5);
    }
}

@media only screen and (max-width: 1450px) {
    #dataContent2 .main__model,
    #dataContent .main__model {
        max-width: calc(100%/4);
    }
}


@media only screen and (max-width: 1250px) {
    #dataContent2 .main__model,
    #dataContent .main__model {
        max-width: 33.333334%;
    }
}

@media only screen and (max-width: 970px) {
    #dataContent2 .main__model,
    #dataContent .main__model {
        max-width: 50%;
    }
}


.link__model {
    width: 100%;
    /* aspect-ratio: 10/7.5; */
    padding-bottom: 75.25%;
    display: flex;
    position: relative;
}

.main__modelPhoto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.main__modelWrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.1s;
    overflow: hidden;
    border-radius: 10px;
}

.main__modelInfo {
    margin: auto 0 0 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 10px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}


.main__modelName {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin: 0 auto 0 0;
    transition: color .3s;
}

.main__modelWrapper:hover .main__modelName {
    color: var(--main_color);
}

.main__modelLive {
    transition: 0.2s;
    display: flex;
    height: 24px;
    padding: 0px 21px 0 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #1C1D21;
    backdrop-filter: blur(4.5px);
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    position: relative;
    text-transform: uppercase;
}

.main__modelLive:after {
    display: block;
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3EE204;
}

.main__modelLive i {
    font-size: 8px;
    margin: 0 4px 0 0;
}


.main__modelEthnicity {
    padding: 0 10px 7px;
    width: 100%;
    text-decoration: none;
    text-align: left;
    color: var(--main_color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    margin: -6px 0 0;
}

.main__modelEthnicity .name {
    position: relative;
    padding: 0 14px 0 0;
}

.main__modelEthnicity .name:first-child::after {
    content: '';
    display: block;
    background: var(--main_color);
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
}

.main__modelEthnicity .name:nth-child(2) {
    color: #fff;
    padding: 0;
}

.main__modelInfoWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: auto 0 0 0;
    transition: 0.2s;
    transform: translateY(28px);
    background: rgba(28, 29, 33, 0.85);
    backdrop-filter: blur(4.5px);
    border-radius: 0 0 10px 10px;
}

.main__modelWrapperRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    transition: 0.4s;
    opacity: 0;
}

.main__modelWrapperRow svg {
    font-size: 24px;
    color: var(--main_color);
    transition: color .3s;
}

.main__modelWrapperRow svg:hover {
    color: #F50000;
}

.main__modelLogo {
    max-height: 30px;
    max-width: 40%;
    border-radius: 12px;
    background: linear-gradient(268deg, rgba(0, 0, 0, 0.60) 0%, rgba(84, 0, 10, 0.60) 100%);
    backdrop-filter: blur(4.5px);
    padding: 4px 10px;
    display: none !important;
}

.main__modelBorder {
    position: absolute;
    width: 100%;
    height: 100%;

    border: 4px solid #191919;
}

.main__modelWrapper:hover {
    overflow: visible;
}

.main__modelWrapper:hover .main__modelInfoWrapper {
    transform: translateY(0);
}

.main__modelWrapper:hover .main__modelInfo {
    border-radius: 0;
}

.main__modelWrapper:hover .main__modelLive {
    transform: translateY(14px);
}

.main__modelWrapper:hover .main__modelWrapperRow {
    transition: 0.2s;
    opacity: 1;
}

.breadcrumbs a {
    white-space: nowrap;
    margin: 0 10px 10px 0;
    display: inline-flex;
    height: 30px;
    padding: 0px 10px;
    align-items: center;
    border-radius: 20px;
    background: #25272B;
    color: rgba(255, 255, 255, 0.47);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    transition: background .3s, color .3s;
}

.breadcrumbs a svg {
    font-size: 14px;
    margin: 0 0 0 14px;
}

.breadcrumbs a:hover {
    background: var(--main_color);
    color: #1C1D21;
}

.wrapper {
    display: block;
    position: relative;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

.wrapper *,
.wrapper *::before,
.wrapper *::after {
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.lang-col,
.tag-col {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0 12px 0 0;
    margin-bottom: 29px;
    max-width: 50%;
}

@media(min-width: 350px) {
    .lang-col,
    .tag-col {
        max-width: 50%;
    }
}

@media(min-width: 768px) {

    .lang-col,
    .tag-col {
        max-width: 33.333334%;
    }
}

@media(min-width: 1040px) {

    .lang-col,
    .tag-col {
        max-width: 20%;
    }
}

@media(min-width: 1300px) {
    .lang-col,
    .tag-col {
        max-width: 16.666667%;
        max-width: 20%;
    }
}

.lang-col a,
.tag-col a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color .4s ease 0s;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}

.tag-col a {
    justify-content: center;
}

.lang-col a:hover,
.tag-col a:hover {
    color: var(--main_color);
    text-decoration: none;
}

.lang-col a img {
    margin-right: 10px;
    width: 16px;
}

.text-center {
    text-align: center;
}

.notification-col {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0 12px;
    margin-bottom: 24px;
}

.notification {
    position: relative;
    padding: 24px 12px;
    margin-bottom: 12px;
    border-radius: 20px;
}

.notification a {
    display: inline-block;
    font-weight: 700;
    text-decoration: underline;
}

.notification.info {
    color: #084298;
    background-color: #cfe2ff;
    border: 1px solid #b6d4fe;
}

.notification.info a {
    color: #06357a;
}

.notification.alert,
.notification.warning {
    color: #1C1D21;
    background-color: var(--main_color);
    border: 1px solid #25272b;
}

.notification.alert a,
.notification.warning a {
    color: #523e02;
}

.notification.success {
    color: #0f5132;
    background-color: #d1e7dd;
    border: 1px solid #badbcc;
}

.notification.success a {
    color: #0c4128;
}

.notification.error {
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
}

.notification.error a {
    color: #6a1a21;
}

.form-col {
    padding: 0 12px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.form-col.-access {
    max-width: 560px;
}

.form-item {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0 12px;
    margin-bottom: 24px;
}

.form-item.-full {
    max-width: 100%;
}

@media(min-width: 768px) {
    .form-item.-half {
        max-width: 50%;
    }
}

.form-item.-links {
    text-align: center;
}

.fr__link,
.form-item.-links a {
    font-size: 14px;
    color: var(--main_color);
    text-decoration: underline;
    transition: color .3s;
}

.fr__link:hover,
.form-item.-links a:hover {
    color: #fff;
}

.form-item.-links a+a {
    margin-left: 12px;
}

.form-item.-actions {
    text-align: center;
    margin-bottom: 0;
}

.form-item.-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background-color: var(--main_color);
    color: #1C1D21;
    font-size: 14px;
    text-transform: uppercase;
    min-height: 42px;
    cursor: pointer;
    transition: background-color .4s ease 0s,
        color .4s ease 0s;
}

.form-item.-actions .btn:hover {
    background-color: #fff;
    color: #25272B;
}

.form-item.-actions .btn {}

.form-item label,
.form-item>.label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
}

.form-item input[type="text"],
.form-item input[type="password"],
.form-item input[type="email"],
.form-item input[type="tel"],
.form-item input[type="date"],
.form-item input[type="datetime"],
.form-item input[type="datetime-local"] {
    width: 100%;
    outline: none;
    border-radius: 30px;
    background: #25272B;
    color: #96989D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    padding: 12px 45px 12px 20px;
    width: 100%;
}

.captcha {
    display: flex;
    align-items: center;
}

.captcha img {
    flex: 0 0;
    height: 40px;
    padding-right: 12px;
}

.captcha input {
    flex: 1;
}

.checkbox,
.radio {
    display: block;
}

.checkbox label,
.radio label {
    display: block;
    margin: 0;
}

.checkbox input[type="checkbox"],
.radio input[type="radio"] {
    display: none;
}

.checkbox .sub-label,
.radio .sub-label {
    display: block;
    position: relative;
    padding-left: 36px;
    line-height: 24px;
    min-height: 24px;
}

.checkbox .sub-label::before,
.radio .sub-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #454444;
}

.checkbox .sub-label::after,
.radio .sub-label::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 16px;
    height: 16px;
    background-color: var(--main_color);
    opacity: 0;
    transition: opacity .4s ease 0s;
}

.radio .sub-label::before,
.radio .sub-label::after {
    border-radius: 50%;
}

.checkbox input[type="checkbox"]:checked+.sub-label::after,
.radio input[type="radio"]:checked+.sub-label::after {
    opacity: 1;
}

textarea {
    display: block;
    width: 100%;
    height: 120px;
    line-height: 38px;
    font-size: 16px;
    padding: 0 12px;
    outline: none;
    border-radius: 30px;
    background: #25272B;
    color: #96989D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    padding: 12px 45px 12px 20px;
    width: 100%;
    resize: vertical;
    min-height: 120px;
}

.text-capitalize {
    text-transform: uppercase;
}

.main-btn {
    margin-top: 10px;
    width: 150px;
}

.loader {
    border: 8px solid #ffffff;
    border-top: 8px solid var(--main_color);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 2s linear infinite;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    margin: 0 auto;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}





.hidden {
    display: none;
}

.open {
    display: block !important;
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    padding-top: 100px;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #25272B;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: rgba(0, 0, 0, .5);
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #1C1D21;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.modal-header .btn-close {
    padding: .5rem .5rem;
    margin: -.5rem -.5rem -.5rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    color: #fff !important;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #1C1D21;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

body.dark .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

[role="button"] {
    cursor: pointer;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
}

.affix {
    position: fixed;
}

.btn {
    text-decoration: none;
    outline: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    height: 40px;
    padding: 0px 30px;
    align-items: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    margin-right: 10px;
    white-space: nowrap;
    transition: color .3s, background .3s;
    background: var(--main_color);
    color: #1C1D21;
}

#mb_gdpr_warning .btn {
    display: flex !important;
    color: #1C1D21 !important;
}

@media only screen and (min-width: 1024px) {
    .btn:hover {
        color: #FFF;
        background: #1C1D21;
    }
    #mb_gdpr_warning .btn:hover {
        color: #FFF !important;
    }
}

.btn.btn-primary {
    cursor: pointer;
    background: var(--main_color);
    color: #1C1D21;
}

.btn.btn-primary:hover {
    color: #FFF;
    background: #1C1D21;
}

.loadMoreContainer {
    width: 100%;
    grid-column: 1/6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main__video {
    width: 100%;
    height: 100vh;
}

.main__video .inner-stage {
    display: block;
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 56.25%;
}

.main__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


.main__aboutInfo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

@media only screen and (max-width: 992px) {
    .main__aboutInfo {
        gap: 15px;
    }
}

.main__aboutImg {
    width: 200px;
    height: 200px;
    min-width: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--main_color);
    padding: 8px;
}

@media only screen and (max-width: 1280px) {
    .main__aboutImg {
        width: 150px;
        height: 150px;
        min-width: 150px;
    }
}

@media only screen and (max-width: 992px) {
    .main__aboutImg {
        width: 120px;
        height: 120px;
        min-width: 120px;
    }
}

.main__aboutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    grid-row-gap: 0;
    grid-column-gap: 130px;
    max-width: 1300px;
}

@media only screen and (max-width: 1840px) {
    .main__aboutGrid {
        grid-column-gap: 70px;
    }
}

@media only screen and (max-width: 1650px) {
    .main__aboutGrid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 1400px) {
    .main__aboutGrid {
        grid-column-gap: 10px;
    }
}

@media only screen and (max-width: 1200px) {
    .main__aboutGrid {
        grid-template-columns: 1fr 1fr;
    }
}


@media only screen and (max-width: 700px) {
    .main__aboutGrid {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
    }
}


.main__aboutElement {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 25px 0;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px
}

.main__aboutElement .name {
    margin: 0 10px 0 0;
}

.main__aboutElement .value {
    color: var(--main_color);
}

.main__videoTitle {
    color: var(--titleColor);
    font-size: 20px;
    font-weight: 500;
    margin: 10px auto 10px 0;
    padding: 0 10px;
}

@media only screen and (max-width:730px) {
    .main__videoTitle {
        padding: 0 20px;
        text-align: center;
    }
}

.main__videoTop {
    margin: 0 0 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
}

@media only screen and (max-width:650px) {
    .main__videoTop {
        flex-direction: column;
    }
}

.main__videoLike {
    outline: none;
    border: none;
    background: none;
    color: rgba(0, 0, 0, 0.37);
    margin: 0 5px 0 0;
}

.main__videoLike i {
    font-size: 24px;
}

.main__videoLike:hover {
    cursor: pointer;
}

.main__videoDislike {
    outline: none;
    border: none;
    background: none;
    color: rgba(0, 0, 0, 0.37);
    margin: 0 15px 0 0;
}

@media only screen and (max-width: 530px) {
    .main__videoDislike {
        margin: 0;
    }
}

.main__videoDislike i {
    font-size: 24px;
}

.main__videoDislike:hover {
    cursor: pointer;
}

#loadMore {
    display: flex;
    height: 40px;
    padding: 0px 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #25272B;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin: 20px 0 0;
    text-transform: capitalize;
    transition: background .3s, color .3s;
}

#loadMore:hover {
    background: var(--main_color);
    color: #1C1D21;
}

.header__open-search {
    display: none;
    color: var(--main_color);
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 0;
    cursor: pointer;
}

@media only screen and (max-width: 1080px) {
    .header__open-search {
        display: block;
    }
}

.nav_mobile {
    display: none;
}

@media only screen and (max-width: 1080px) {
    body::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transition: visibility .3s, opacity .3s;
        background: rgba(28, 29, 33, 0.80);
        backdrop-filter: blur(4.5px);
        z-index: 3;
    }

    .nav_mobile {
        display: flex;
        flex-direction: column;
        padding: 20px 20px 50px;
        display: none;
    }

    .nav_mobile .user_nav {
        justify-content: center;
        margin: 0 0 40px;
    }

    .nav_mobile .header__link {
        margin: 0 0 40px;
    }

    .nav_mobile .header__link:last-child {
        margin-right: 0;
        margin: 0;
    }

    .header__link.theme {
        display: flex;
        align-items: center;
    }

    .contentContainer--filtersOpen {
        width: 100%;
        transition: 0.6s;
    }

    .filters {
        min-width: 310px;
        min-width: 250px;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transform: translateX(-100%);
        overflow-y: auto;
        transition: transform .3s, visibility .3s, opacity .3s;
    }

    .body--open {
        overflow: hidden;
    }

    .filters--open.filters {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    body.filters-open::before,
    body.body--open::before {
        opacity: 1;
        visibility: visible;
    }


}

@media only screen and (max-width: 992px) {
    .main__modelWrapperRow {
        opacity: 1;
    }

    .main__modelInfoWrapper {
        transform: translateY(0);
    }

    .main__h1 {
        font-size: 20px;
        font-weight: 700;
        line-height: 26px;
    }
}

.sites_item .main__model {
    line-height: 0;
}

@media only screen and (min-width: 1601px) {
    #dataContent2.sites_item .main__model,
    #dataContent.sites_item .main__model {
        max-width: 20%;
    }
}


@media only screen and (max-width: 500px) {
    #dataContent2.sites_item .main__model,
    #dataContent.sites_item .main__model {
        max-width: 50%;
    }
}

.link__site {
    display: block;
    line-height: 0;
    position: relative;
    height: 0;
    padding-bottom: 75.25%;
}

.link__site {
    display: block;
    line-height: 0;
    position: relative;
    overflow: hidden;
}

.link__site .main__modelWrapper {
    top: 0;
}

.link__site .main__modelInfoWrapper {
    transform: translateY(47px);
    background: var(--main_color);
    color: #1C1D21;
    text-align: center;
}

.link__site .main__modelName {
    color: #1C1D21 !important;
    margin: 0 auto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.siteContainer .contentContainer,
.siteContainer {
    min-height: calc(100vh - 58px);
}
.main { 
    margin: 30px 0 auto 0;
}

@media only screen and (max-width: 900px) {
    .main { 
        margin-top: 50px;
    }

    .siteContainer.hidden_button .main {
        margin-top: 30px;
    }
}

.tags_holder {
    padding: 0;
}

.tags_holder .row {
    margin: 0;
}

.main__video-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 0 30px;
}

.main__video-left a {
    border-radius: 20px;
    background: #25272B;
    display: flex;
    text-decoration: none;
    padding: 6px 10px;
    margin: 0 5px 5px 0;
    justify-content: center;
    align-items: center;
    color: #96989D;
    font-size: 12px;
    line-height: 1.2;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: background .3s, color .3s;
}

@media only screen and (max-width: 992px) {
    .main__video-left a {
        color: #fff;
    }
}

.main__video-left a:hover {
    background: var(--main_color);
    color: #1C1D21;
}

.main__video-right {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

@media only screen and (max-width: 650px) {
    .main__video-right {
        width: 100%;
    }
}

.main__video-right .rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.rating_btn {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    display: flex;
    height: 40px;
    padding: 0px 15px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    color: #fff;
    background: #05F !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: background .3s, color .3s;
}

.main__videoDislike {
    background: #F50000 !important;
}

.rating_btn:hover {
    background: var(--main_color) !important;
    color: #1C1D21;
}

.main__videoProcentage {
    margin: 0 0 0 10px;
}

.rating_btn svg {
    font-size: 20px;
}

.rating_btn .icon-dislike {
    transform: rotate(180deg);
}

.main__addFavourite {
    display: flex;
    align-items: center;
    white-space: nowrap; 
    justify-content: flex-start;
    border-radius: 20px;
    background: var(--main_color);
    display: flex;
    padding: 11px 15px;
    justify-content: center;
    align-items: center;
    color: #1C1D21;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    height: 40px;
    cursor: pointer;
    transition: background .3s, color .3s;
}

@media only screen and (max-width: 1850px) {
    .main__addFavourite {
        margin-left: auto;
    }
}

.main__addFavourite:hover {
    background: #25272B;
    color: var(--main_color);
}

.main__addFavourite svg {
    font-size: 20px;
    margin: 0 10px 0 0;
}

.main__video.site-8 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    margin: 0 auto 20px;
    width: 80%;
}

@media only screen and (max-width: 1200px) {
    .main__video.site-8 {
        width: 100%;
    }
}

.main__viewCamera {
    width: 100%;
    display: flex;
    padding: 7px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: var(--main_color);
    color: #1C1D21;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    z-index: 1;
    text-decoration: none;
    cursor: pointer;
    margin: 0 30px 0 0;
    min-height: 40px;
    transition: background .3s, color .3s;
    position: relative;
}

@media only screen and (max-width: 650px) {
    .main__viewCamera {
        margin: 0 0 20px;
    }
}

.main__filterBtn,
.filters__filterBtn-main,
.main__viewCamera {
    animation: pulse 2s infinite;
}
  
@keyframes pulse {
    0%, 100% {
      box-shadow: 0 0 5px rgba(245, 177, 0, 0.5), 0 0 5px rgba(245, 177, 0, 0.4), 0 0 10px rgba(245, 177, 0, 0.3);
    }
    50% {
      box-shadow: 0 0 10px rgba(245, 177, 0, 0.7), 0 0 10px rgba(245, 177, 0, 0.6), 0 0 15px rgba(245, 177, 0, 0.5);
    }
}

body.light .main__filterBtn,
body.light .filters__filterBtn-main,
body.light .main__viewCamera {
    animation: pulse2 2s infinite;
}

@keyframes pulse2 {
    0%, 100% {
      box-shadow: 0 0 5px rgba(245, 132, 0, 0.5), 0 0 5px rgba(245, 132, 0, 0.4), 0 0 10px rgba(245, 132, 0, 0.3);
    }
    50% {
      box-shadow: 0 0 10px rgba(245, 132, 0, 0.7), 0 0 10px rgba(245, 132, 0, 0.6), 0 0 15px rgba(245, 132, 0, 0.5);
    }
}

.main__viewCamera:hover {
    background: #25272B;
    color: var(--main_color);
    color: #fff !important;
    background: #F50000 !important;
    animation: pulse3 2s infinite !important;
}

@keyframes pulse3 {
    0%, 100% {
      box-shadow: 0 0 5px rgba(245, 0, 0, 0.5), 0 0 5px rgba(245, 0, 0, 0.4), 0 0 10px rgba(245, 0, 0, 0.3);
    }
    50% {
      box-shadow: 0 0 10px rgba(245, 0, 0, 0.7), 0 0 10px rgba(245, 0, 0, 0.6), 0 0 15px rgba(245, 0, 0, 0.5);
    }
}

.main__about .main__text {
    margin: 0 0 20px;
}

.main__aboutInfo .right_info {
    width: 100%;
}

.jssocials-shares {
    margin: 0 !important;
    padding-top: 10px;
}

.jssocials-share {
    margin: 0 10px 0 0 !important;
    line-height: 0;
}

.jssocials-share-label {
    display: none !important;
}

.jssocials-share svg {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: opacity .3s;
}

.jssocials-share:hover svg {
    opacity: 0.7;
}

body.light {
    background: #fff;
    color: #1C1D21;
}

body.light .header {
    background: #E8E8E8;
}

body.light .main__h1,
body.light .header__link {
    color: #1C1D21;
}

body.light .header__link.active, 
body.light .header__link:hover {
    color: var(--main_color);
}

body.light .header__searchWrapper input {
    background: #FFF;
    color: #96989D;
}

@media only screen and (min-width: 1024px) {
    body.light .header__searchWrapper .submit:hover {
        color: #1C1D21;
    }
}

body.light .header__button {
    background: #FFF;
    color: #1C1D21;
}

body.light .header__button.signup {
    background: var(--main_color);
    color: #1C1D21;
}

@media only screen and (min-width: 1024px) {
    body.light .header__button:hover {
        background: var(--main_color);
        color: #1C1D21;
    }

    body.light .header__button.signup:hover {
        color: #FFF;
        background: #1C1D21;
    }
}

body.light .filters {
    background: rgba(232, 232, 232, 0.80);
    box-shadow: 10px 0px 24px 0px rgba(0, 0, 0, 0.20);
}

body.light .filters__dropDownBtn .icon-right-arrow,
body.light .filters__dropDownBtn {
    color: #1C1D21;
}

body.light .filters__dropDownBtn.active .icon-right-arrow {
    color: var(--main_color);
}

body.light .filters__dropDownBtn:hover {
    background: rgba(255, 255, 255, 0.80);
}

body.light .filters__dropDownBtn.active {
    background: rgba(250, 250, 250, 0.80);
    color: var(--main_color);
}

body.light .filers__dropDownLink {
    color: #1C1D21;
    background: rgba(255, 255, 255, 0.50);
}

body.light .filers__dropDownLink--active {
    color: var(--main_color);
}

body.light .filers__dropDownLink:hover {
    background: var(--main_color);
    color: #1C1D21;
}

body.light .breadcrumbs a {
    background: #E8E8E8;
    color: #96989D;
}

body.light .breadcrumbs a:hover {
    background: var(--main_color);
    color: #1C1D21;
}

body.light .main__modelInfoWrapper {
    background: rgba(255, 255, 255, 0.85);
}

body.light .main__modelEthnicity .name:nth-child(2),
body.light .main__modelName {
    color: #1C1D21;
}

body.light .main__modelLive {
    background: #fff;
    color: #1C1D21;
}

body.light #loadMore {
    background: #E8E8E8;
    color: #96989D;
}

body.light #loadMore:hover {
    background: var(--main_color);
    color: #1C1D21;
}

body.light .footer__link {
    color: #1C1D21;
}

body.light .footer__link:hover {
    color: var(--main_color);
}

body.light .lang-col a, 
body.light .tag-col a {
    color: #1C1D21;
}

body.light .lang-col a:hover, 
body.light .tag-col a:hover {
    color: var(--main_color);
}

body.light textarea,
body.light .form-item input[type="text"], 
body.light .form-item input[type="password"], 
body.light .form-item input[type="email"], 
body.light .form-item input[type="tel"], 
body.light .form-item input[type="date"], 
body.light .form-item input[type="datetime"], 
body.light .form-item input[type="datetime-local"] {
    background: #E8E8E8;
    color: #1C1D21;
}

body.light .form-item.-actions .btn:hover {
    background-color: #E8E8E8;
}

body.light .fr__link:hover, 
body.light .form-item.-links a:hover {
    color: #1C1D21;
}

body.light .form-item label, 
body.light .form-item>.label, 
body.light .checkbox .sub-label, 
body.light .radio .sub-label {
    color: #1C1D21;
}

body.light .filters__filterBtn:hover {
    color: #1C1D21;
}

body.light .rating_btn,
body.light .main__video-left a {
    background: #E8E8E8;
}

body.light .rating_btn:hover,
body.light .main__video-left a:hover {
    background: var(--main_color);
    color: #1C1D21;
}

body.light .main__viewCamera:hover,
body.light .main__addFavourite:hover {
    background-color: #E8E8E8;
    color: #1C1D21;
}

body.light .header__link.theme .text_theme,
body.light .main__aboutElement {
    color: #1C1D21;
}

@media only screen and (max-width: 992px) {
    body.light .main__video-left a {
        color: #96989D;
    }
}

@media only screen and (max-width: 1080px) {
    body.light .header__searchWrapper {
        background: #E8E8E8;
    }
}

.related_cams {
    margin-top: 40px;
}

body.light .loader {
    border: 8px solid #E8E8E8;
    border-top: 8px solid var(--main_color);
}

#mb_age_warning .btn {
    line-height: 40px;
}

.link__btn {
    color: #fff;
}

.link__btn:hover {
    color: var(--main_color);
}

#mb_age_warning {
    display: none !important;
}

body.dark #blockingEnabled .modal-content {
    color: #fff !important;
}

body.light .modal-content {
    background: #E8E8E8;
}

body.light .modal-content .modal-title {
    color: #000 !important;
}

#dataContent2 .related_cams {
    margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
    .main__modelWrapperRow svg {
        font-size: 19px;
    }
    .main__modelWrapperRow {
        padding: 2px 5px;
    }

    .main__modelInfo {
        padding: 1px 4px;
    }
    body.light .main__modelInfo .main__modelName,
    .main__modelInfo .main__modelName {
        font-size: 12px;
        color: #fff; 
        text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    }

    .main__modelEthnicity {
        display: none;
    }

    .main__modelLogo {
        background: transparent;
        padding: 0;
        backdrop-filter: blur(0);
    }

    .main__modelLive {
        height: 18px;
    }

    body.light .main__modelInfoWrapper,
    .main__modelInfoWrapper {
        background: transparent;
    }

    .nav_mobile .user_nav,
    .nav_mobile .header__link {
        margin: 0 0 20px;
    }

    .nav_mobile {
        padding: 20px 20px 20px;
    }

    #dataContent2 .main__model, 
    #dataContent .main__model {
        padding: 0;
    }

    .sites_item .main__model {
        padding: 0 5px 10px !important;
    }

    .main__modelPhoto {
        border-radius: 0;
    }

    .main__modelLive {
        font-size: 0;
        padding: 0;
    }
}


body.light .filters__filterBtn-main, 
body.light .main__filterBtn {
    background: rgba(245, 132, 0, 0.80);
}

body.light .filters__filterBtn-main:hover, 
body.light .main__filterBtn:hover {
    background: var(--main_color);
}

.main__viewCamera-holder {
    position: relative;
}

.main__viewCamera-holder .status__model {
    position: absolute;
    top: 10px;
    right: 0;
}

@media only screen and (max-width: 992px) {
    .main__viewCamera-holder .status__model {
        top: 7px;
        right: 7px;
    }
}

.main__viewCamera-holder .status__model .main__modelLive {
    background: #25272B;
    padding: 0px 8px 0 21px;
}

@media only screen and (max-width: 992px) {
    .main__viewCamera-holder .status__model .main__modelLive {
        padding: 24px 0 0 24px;
        font-size: 0;
    }
}

body.light .main__viewCamera-holder .status__model .main__modelLive {
    background: #E8E8E8;
}

.main__viewCamera-holder .status__model .main__modelLive:after {
    right: auto;
    left: 8px;
}

.main__viewCamera-holder .status__model .main__modelLive.offline:after {
    background: #F50000;
}

@media only screen and (max-width: 992px) {
    .main__aboutInfo {
        display: inline-block;
    }

    .main__viewCamera-holder {
        float: left;
        display: inline;
        margin: 0 15px 0 0;
    }

    .main__video-left,
    .main__aboutInfo .right_info {
        display: inline;
    }

    .main__aboutGrid {
        margin-top: 10px;
    }

    .main__aboutElement {
        padding: 0 0 15px;
    }

    .main__video-left a {
        width: auto;
        display: inline-block;
    }
}

.show_mobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    .main__viewCamera-holder {
        line-height: 0;
    }
    .show_mobile {
        display: inline;
    }

    .show_desktop {
        display: none;
    }

    .main__aboutGrid {
        margin: 0;
    }

    .main__aboutShare {
        margin: 0 0 10px;
    }

    .main__aboutGrid,
    .main__aboutElement {
        display: inline;
    }
}

.scrollup {
    position: fixed;
    bottom: 50px;
    right: 10px;
    display: none;
    background: var(--main_color);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    padding: 11px 0;
    color: #1C1D21;
    -webkit-box-shadow: 0 0 3px rgba(94, 94, 94, 0.5);
    box-shadow: 0 0 3px rgba(94, 94, 94, 0.5);
    -webkit-transition: color .3s, background .3s, box-shadow .3s;
    -webkit-transition: color .3s, background .3s, -webkit-box-shadow .3s;
    transition: color .3s, background .3s, -webkit-box-shadow .3s;
    -o-transition: color .3s, background .3s, box-shadow .3s;
    transition: color .3s, background .3s, box-shadow .3s;
    transition: color .3s, background .3s, box-shadow .3s, -webkit-box-shadow .3s;
}

@media screen and (min-width: 1024px) {
    .scrollup:hover {
        color: #FFF;
        background: #1C1D21;
        -webkit-box-shadow: 0 0 3px rgba(245, 177, 0, 0.5);
        box-shadow: 0 0 3px rgba(245, 177, 0, 0.5);
    }

    body.light .scrollup:hover {
        color: #FFF;
        background: #1C1D21;
        -webkit-box-shadow: 0 0 3px rgba(245, 132, 0, 0.5);
        box-shadow: 0 0 3px rgba(245, 132, 0, 0.5);
    }
}

.scrollup svg {
    transform: rotate(-90deg);
}