/***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;
}