html, body {
    height: auto;
    color: #222;
    font-weight: 400;
    font-family: Lato-Regular, sans-serif;
    font-size: 16px;
    line-height: 24px;
    background: #F6F8FA
}

.custom-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px
}

.wrapper {
    min-height: calc(100vh - 628px);
    margin: 0 auto;
    background: #F6F8FA
}

.footer {
    width: 100%
}

.title {
    font-size: 32px;
    line-height: 48px
}

#iframes-btn {
    margin: 0 auto;
    background: red;
    border-radius: 20px;
    padding: 10px 15px;
    display: flex;
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    text-align: center;
    transition: .5s ease-in-out;
    border: 1px solid red
}

#iframes-btn:hover {
    color: red;
    background: #fff;
    border: 1px solid #000
}

@media screen and (max-width: 1200px) {
    .wrapper {
        min-height: calc(100vh - 690px)
    }
}

@media screen and (max-width: 992px) {
    .wrapper {
        min-height: calc(100vh - 577px)
    }
}

@media screen and (max-width: 768px) {
    .wrapper {
        min-height: calc(100vh - 692px)
    }
}

@media screen and (max-width: 577px) {
    .wrapper {
        min-height: calc(100vh - 693px)
    }
}

@media screen and (max-width: 513px) {
    .wrapper {
        min-height: calc(100vh - 719px)
    }
}

html {
    box-sizing: border-box
}

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

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
    margin: 0
}

ul[class] {
    padding: 0
}

.nav ol,
.nav ul,
.sidebar ul,
.sidebar ol,
.tabs {
    list-style: none;
}

img {
    max-width: 100%;
    display: block
}

input, button, textarea, select {
    font: inherit
}

button {
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: transparent;
    padding: 0
}

button:focus {
    outline: none
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer
}

abbr {
    text-decoration: none
}

@font-face {
    font-family: Lato-Regular;
    src: url(../fonts/Lato-Regular.ttf);
    font-style: normal;
    font-weight: 400;
    font-display: swap
}

.header {
    box-shadow: 0 3px 5px #00000040;
    padding: 20px 0;
    background: #FFFFFF;
    z-index: 99999999999999;
    margin-top: 0
}

.header__btn {
    display: none;
    cursor: pointer
}

.header__btn span:after, .header__btn span:before {
    transition: .3s ease-in-out
}

.nav {
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: #FFFFFF;
    height: 60px;
    z-index: 99999;
    box-shadow: 0 4px 5px #00000040;
}

.menu {
    display: flex
}

.menu__link {
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    padding: 18px 16px;
	text-decoration: none
}

.menu__link:hover {
    text-decoration: none
}

.menu__link:hover {
    color: #222
}

.header--stuck {
    display: block
}

.sidebar--nav {
    top: 10px;
    padding-top: 60px;
    box-shadow: 0 3px 5px #00000040;
    z-index: 9999;
    position: fixed;
    background: #FFFFFF;
    width: 223px;
    height: 100vh;
    left: -200%;
    transition: left .5s ease-in-out
}

.sidebar--active {
    left: 0
}

.sidebar__menu-link {
    width: 100%;
    display: block;
    padding: 11px 56px 11px 16px;
    font-weight: 400;
    cursor: pointer;
    transition: .3s ease-in-out
}

.sidebar__menu-link--active {
    color: #fff !important
}

.sidebar__menu-link:hover {
    text-decoration: underline
}

.sidebar__menu-link:not(.sidebar__menu-link--active):hover {
    background: #f2f2f2
}

.sidebar__menu-link--active {
    background: #f44336;
    color: #fff
}

@media (max-width: 768px) {
    .header {
        padding: 0
    }

    .header__logo {
        display: none
    }

    .header__btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 25px;
        height: 25px;
        position: relative;
        left: 0
    }

    .header__btn span {
        background: #000000;
        position: absolute;
        display: block;
        width: 20px;
        height: 3px;
        transition: .5s, background 0s ease-in-out
    }

    .header__btn span:before, .header__btn span:after {
        content: "";
        background: #000000;
        position: absolute;
        width: 20px;
        height: 3px;
        left: 0
    }

    .header__btn span:before {
        top: -7px
    }

    .header__btn span:after {
        bottom: -7px
    }

    .header__btn--active span {
        transition: .5s ease-in-out;
        transform: rotate(180deg);
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px
    }

    .header__btn--active span:before, .header__btn--active span:after {
        width: 12px;
        left: 10px
    }

    .header__btn--active span:before {
        transform: rotate(42deg);
        top: -3px
    }

    .header__btn--active span:after {
        bottom: -3.2px;
        transform: rotate(-42deg)
    }

    .nav .container {
        width: 100%
    }

    .nav .menu {
        display: none
    }
}

.cc-window {
    opacity: 1;
    transition: opacity 1s ease
}

.cc-window.cc-invisible {
    opacity: 0
}

.cc-animate.cc-revoke {
    transition: transform 1s ease
}

.cc-animate.cc-revoke.cc-top {
    transform: translateY(-2em)
}

.cc-animate.cc-revoke.cc-bottom {
    transform: translateY(2em)
}

.cc-animate.cc-revoke.cc-active.cc-bottom, .cc-animate.cc-revoke.cc-active.cc-top, .cc-revoke:hover {
    transform: translateY(0)
}

.cc-grower {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s
}

.cc-link, .cc-revoke:hover {
    text-decoration: underline
}

.cc-revoke, .cc-window {
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    font-family: Helvetica, Calibri, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    z-index: 9999
}

.cc-window.cc-static {
    position: static
}

.cc-window.cc-floating {
    padding: 2em;
    max-width: 24em;
    -ms-flex-direction: column;
    flex-direction: column
}

.cc-window.cc-banner {
    padding: 1em 1.8em;
    width: 100%;
    -ms-flex-direction: row;
    flex-direction: row
}

.cc-revoke {
    padding: .5em
}

.cc-header {
    font-size: 18px;
    font-weight: 700
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
    cursor: pointer
}

.cc-link {
    opacity: .8;
    display: inline-block;
    padding: .2em
}

.cc-link:hover {
    opacity: 1
}

.cc-link:active, .cc-link:visited {
    color: initial
}

.cc-btn {
    display: block;
    padding: .4em .8em;
    font-size: .9em;
    font-weight: 700;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    white-space: nowrap
}

.cc-highlight .cc-btn:first-child {
    background-color: transparent;
    border-color: transparent
}

.cc-highlight .cc-btn:first-child:focus, .cc-highlight .cc-btn:first-child:hover {
    background-color: transparent;
    text-decoration: underline
}

.cc-close {
    display: block;
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: 1.6em;
    opacity: .9;
    line-height: .75
}

.cc-close:focus, .cc-close:hover {
    opacity: 1
}

.cc-revoke.cc-top {
    top: 0;
    left: 3em;
    border-bottom-left-radius: .5em;
    border-bottom-right-radius: .5em
}

.cc-revoke.cc-bottom {
    bottom: 0;
    left: 3em;
    border-top-left-radius: .5em;
    border-top-right-radius: .5em
}

.cc-revoke.cc-left {
    left: 3em;
    right: unset
}

.cc-revoke.cc-right {
    right: 3em;
    left: unset
}

.cc-top {
    top: 1em
}

.cc-left {
    left: 1em
}

.cc-right {
    right: 1em
}

.cc-bottom {
    bottom: 1em
}

.cc-floating > .cc-link {
    margin-bottom: 1em
}

.cc-floating .cc-message {
    display: block;
    margin-bottom: 1em
}

.cc-window.cc-floating .cc-compliance {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

.cc-window.cc-banner {
    -ms-flex-align: center;
    align-items: center
}

.cc-banner.cc-top {
    left: 0;
    right: 0;
    top: 0
}

.cc-banner.cc-bottom {
    left: 0;
    right: 0;
    bottom: 0
}

.cc-banner .cc-message {
    display: block;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 100%;
    margin-right: 1em
}

.cc-compliance {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: justify;
    align-content: space-between
}

.cc-floating .cc-compliance > .cc-btn {
    -ms-flex: 1;
    flex: 1
}

.cc-btn + .cc-btn {
    margin-left: .5em
}

@media print {
    .cc-revoke, .cc-window {
        display: none
    }
}

@media screen and (max-width: 900px) {
    .cc-btn {
        white-space: normal
    }
}

@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
    .cc-window.cc-top {
        top: 0
    }

    .cc-window.cc-bottom {
        bottom: 0
    }

    .cc-window.cc-banner, .cc-window.cc-floating, .cc-window.cc-left, .cc-window.cc-right {
        left: 0;
        right: 0
    }

    .cc-window.cc-banner {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cc-window.cc-banner .cc-compliance {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }

    .cc-window.cc-floating {
        max-width: none
    }

    .cc-window .cc-message {
        margin-bottom: 1em
    }

    .cc-window.cc-banner {
        -ms-flex-align: unset;
        align-items: unset
    }

    .cc-window.cc-banner .cc-message {
        margin-right: 0
    }
}

.cc-floating.cc-theme-classic {
    padding: 1.2em;
    border-radius: 5px
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
    text-align: center;
    display: inline;
    -ms-flex: none;
    flex: none
}

.cc-theme-classic .cc-btn {
    border-radius: 5px
}

.cc-theme-classic .cc-btn:last-child {
    min-width: 140px
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
    display: inline-block
}

.cc-theme-edgeless.cc-window {
    padding: 0
}

.cc-floating.cc-theme-edgeless .cc-message {
    margin: 2em 2em 1.5em
}

.cc-banner.cc-theme-edgeless .cc-btn {
    margin: 0;
    padding: .8em 1.8em;
    height: 100%
}

.cc-banner.cc-theme-edgeless .cc-message {
    margin-left: 1em
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
    margin-left: 0
}

.cc-banner.cc-bottom {
    width: 385px;
    height: 220px;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 20px;
    bottom: 20px
}

.tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px
}

.tabs__btn {
    width: 185px;
    padding: 10px 0;
    background: #FFFFFF;
    box-shadow: 0 1px 3px #0000001a;
    font-size: 16px;
    transition: color .3s ease-in-out
}

.tabs__btn:hover {
    color: #bb1c37
}

.tabs__btn--active {
    background: #bb1c37;
    color: #fff;
    position: relative;
    pointer-events: none
}

.tabs__btn--active:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 100%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f95669;
    clear: both
}

.tabs__list {
    display: none;
    visibility: hidden
}

.tabs__list--active {
    display: block;
    visibility: visible
}

@media screen and (max-width: 800px) {
    .tabs {
        width: min-content;
        margin: 20px auto 30px;
        gap: 10px
    }

    .tabs__btn {
        width: 105px
    }

    .tabs__list--active {
        display: grid;
        grid-template-columns:450px;
        justify-content: center
    }
}

@media screen and (max-width: 500px) {
    .tabs {
        width: 90vw;
        display: grid;
        grid-template-columns:repeat(4, 1fr)
    }

    .tabs__list {
        grid-template-columns:90vw
    }

    .tabs__btn {
        font-size: 13px;
        width: 100%
    }

    .models .services {
        font-size: 11px
    }
}

.best-sites {
    margin-top: 20px;
    margin-bottom: 30px
}

.best-sites__title {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    padding: 20px 0;
    color: #fff;
    margin-bottom: 0;
}

.best-sites__header {
    background: #bb1c37
}

.best-sites__body {
    padding: 10px 0 25px;
    background: white none repeat scroll 0 0;
    box-shadow: 0 1px 3px #0000001a
}

.best-sites__logo {
    margin: 0 auto;
    width: 200px;
    height: 50px
}

.best-sites__link {
    display: block;
    margin: 10px 0
}

@media screen and (max-width: 1250px) {
    .best-sites__body {
        display: grid;
        grid-template-columns:repeat(3, 1fr)
    }
}

@media screen and (max-width: 800px) {
    .best-sites {
        width: 90vw;
        margin: 0 auto 40px
    }

    .best-sites__body {
        grid-template-columns:1fr
    }
}

.live-cams {
    box-shadow: 0 1px 3px #0000001a;
    padding: 25px 30px 30px;
    border-radius: 3px;
    background: #FFFFFF
}

.live-cams__title {
    padding-bottom: 10px;
    border-bottom: 1px solid #ebe9e9;
    margin-bottom: 15px
}

.lives {
    display: grid;
    grid-template-columns:145px 145px;
    grid-row-gap: 20px;
    justify-content: space-between
}

@media screen and (max-width: 1250px) {
    .live-cams {
        margin-bottom: 50px
    }

    .live-cams .lives {
        grid-template-columns:repeat(2, 1fr);
        grid-gap: 20px
    }
}

@media screen and (max-width: 800px) {
    .live-cams {
        width: 90vw;
        margin: 0 auto
    }

    .live-cams .lives {
        grid-gap: 20px
    }
}

.tabs__list {
    margin-bottom: 20px
}

.tabs__list[data-list=girls] .models__model:last-child .models__model-logo {
    height: 50px
}

.models__model {
    background-color: #ededed;
    display: grid;
    grid-template-columns:280px min-content min-content;
    grid-template-rows:85px 30px 117px;
    grid-column-gap: 50px;
    margin-bottom: 20px;
    padding: 0 20px 0 0
}

.models__model-logo {
    margin-top: 20px
}

.models .ranking {
    align-self: center
}

.models__model-site {
    margin-top: 20px
}

.models__model-info {
    grid-row: span 3
}

.models__model-logo {
    align-self: center
}

.models__model-img {
    width: 280px;
    height: 230px;
    object-fit: cover
}

.models__model-site {
    color: #fff;
    display: block;
    width: 200px;
    background-color: #bb1c37;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 16px 8px;
    text-align: center;
    margin-bottom: 5px
}

.models__model-site-review {
    align-self: center;
    background-color: #fcaf15;
    width: 200px;
    padding: 1px 8px;
    color: #0004ff;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center
}

.ranking {
    display: flex;
    align-items: baseline
}

.ranking__star {
    width: 15px;
    height: 15px;
    margin-right: 5px
}

.ranking__text {
    font-size: 16px;
    font-weight: 400;
    padding-right: 5px;
    color: #000
}

.ranking__text span:first-of-type {
    font-weight: 800;
    color: #292b2c;
    text-transform: uppercase
}

.ranking__text span:nth-of-type(2) {
    font-size: 16px;
    font-weight: 800;
    color: #0004ff;
    padding-left: 20px
}

.services__service {
    display: flex;
    align-items: center;
    line-height: 25px
}

.services__service svg {
    width: 15px;
    height: 25px;
    margin-right: 3px
}

.services__service span {
    line-height: 20px;
    text-transform: uppercase
}

@media screen and (max-width: 800px) {
    .models__model {
        grid-template-columns:auto auto;
        grid-template-rows:auto;
        justify-content: center;
        padding-right: 0
    }

    .models__model-img {
        margin: 0 auto
    }

    .models__model .models__model-info:first-child {
        grid-column: span 2
    }

    .models__model .models__model-info:last-of-type {
        margin-left: 0
    }

    .models__model-img {
        width: 355px;
        margin: 0;
        height: 230px;
        order: 2
    }

    .models__model-logo-link {
        order: -1;
        grid-column: span 2;
        align-self: center;
        margin: 0 auto 20px
    }

    .models__model-site {
        order: 3;
        width: 100%;
        grid-column: span 2
    }

    .models__model-site-review {
        order: 4;
        width: 100%;
        grid-column: span 2;
        margin-bottom: 10px
    }

    .models .ranking {
        order: 5;
        grid-column: span 2;
        margin-bottom: 10px
    }

    .models .services:first-of-type {
        order: 6
    }

    .models .services:last-of-type {
        order: 7;
        padding-bottom: 20px
    }
}

@media screen and (max-width: 500px) {
    .models__model {
        padding: 0 5px
    }

    .models__model-img {
        width: 345px;
        object-fit: cover;
        height: 230px
    }
}

@media screen and (max-width: 400px) {
    .models .ranking {
        margin-left: 20px
    }

    .models .services:first-of-type {
        grid-column: span 2;
        margin-bottom: 10px;
        margin-left: 20px
    }

    .models .services:last-of-type {
        grid-column: span 2;
        padding-bottom: 20px;
        margin-left: 20px
    }

    .models__model {
        padding: 0 10px
    }
}

.overlay {
    position: relative;
    padding: 350px 0 0;
    background: rgba(0, 0, 0, 0) url(/img/girl-bg.webp) no-repeat fixed 0 0/cover
}

.overlay:before {
    content: "";
    background: rgba(0, 0, 0, .51) none repeat scroll 0 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

@media screen and (max-width: 768px) {
    .overlay {
        padding: 50px
    }
}

.wrapper > .custom-container {
    display: grid;
    grid-template-columns:770px 370px;
    grid-gap: 30px;
    margin-bottom: 80px;
    overflow: hidden
}

@media screen and (max-width: 1250px) {
    .wrapper > .custom-container {
        grid-template-columns:770px;
        justify-content: center;
        margin-bottom: 40px
    }
}