<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Actors list container
 */
.actors_list__container {
    margin: 0 -20px;
    box-sizing: border-box;
}
.actors_list__container:after {
    display: block;
    content: "";
    clear:both;
}
.actors_list__clear {
    clear:both;
}
.actors_list__clear-mobile {
    display: none;
}

.content-area-actors-list:after {
    clear: both;
    content: "";
    display: block;
}
.content-area-actors-list__mainarea {
    float:left;
    width: 70%;
}
.content-area-actors-list__sidebar {
    width:25%;
    float:right;
}
.content-area-actors-list__sidebar .sidebar {
    width: 100%;
    margin-left:0;
}

/**
 * Not found message
 */
.actors_list__not_found {
    text-align:center;
}

/**
 * Actor template (5 actors in row)
 */
.actor__container {
    float:left;
    width:20%;
    padding:0 20px;
    box-sizing: border-box;
    margin-bottom:40px;
}
.actor__container-thumbnail {
    margin-bottom:20px;
    position: relative;
}
.actor__container-thumbnail img {
    max-width:100%;
    height:auto;
}
.actor__container-thumbnail__no {
    position: relative;
}
.actor__container-thumbnail__hover {
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top:50%;
    border:2px dashed #5f5f5f;
    opacity: 0.6;
}
.actor__container-thumbnail__hover i {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}
.actor__container-title {
    text-align:center;
}

/**
 * Filter styling
 */
.actors_list__filter {
    margin:0 -20px 40px -20px;
    box-sizing: border-box;
}
.actors_list__filter:after {
    display: block;
    content:"";
    clear: both;
}
.actors_list__filter-column {
    float:left;
    width:33.33%;
    text-align: right;
    min-height:1px;
    padding: 0 20px;
    box-sizing: border-box;
}
.actors_list__filter-column.sex,
.actors_list__filter-column.newcomers {
    width:25%;
}
.actors_list__filter-column.cities {
    width:50%;
}
.actors_list__filter-column a{
    padding:0 10px;
}
.actors_list__filter-column a:last-child{
    padding-right: 0px;
}
.actors_list__filter-column a.active{
    text-decoration: underline;
}

.actors_list__topbar {
    margin: 0 10px 40px 0px;
}
	
.actors_list__topbar:after {
    clear: both;
    content: "";
    display: block;
}
.actors_list__topbar-search {
    width: 33.33%;
    float:left;
    padding:0 10px;
    box-sizing: border-box;
}
.actors_list__topbar-social {
    width: 33.33%;
    float:left;
    padding:0 10px;
    box-sizing: border-box;
    text-align: center;
}

/**
 * Responsive classes
 */
@media screen and (max-width: 1023px) {
    .actor__container {
        width:33.33%;
    }
    .actors_list__clear {
        display: none;
    }
    .actors_list__clear-mobile {
        display: block;
        content: "";
        clear: both;
    }
}
@media screen and (max-width: 909px) {
    .actors_list__container,
    .actors_list__filter {
        padding:0 7.6923%;
    }
    .actors_list__container {
        margin-left:-10px;
        margin-right:-10px;
    }
    .actor__container {
        padding:0 10px;
        margin-bottom:20px;
    }
    .actor__container-thumbnail {
        margin-bottom:5px;
    }

    .content-area-actors-list__mainarea {
        float:none;
        width: 100%;
    }
    .content-area-actors-list__sidebar {
        width:100%;
        float:none;
    }
    .content-area-actors-list__sidebar .content-bottom-widgets{
        margin-right:7.6923%;
    }
}
@media screen and (max-width: 768px) {

    .actors_list__filter-column,
    .actors_list__filter-column.cities,
    .actors_list__filter-column.sex,
    .actors_list__filter-column.newcomers {
        width:100%;
        margin-bottom:20px;
    }
}
@media screen and (max-width: 480px) {
    .actors_list__filter-column {
        width:100%;
        float:none;
        margin-bottom:20px;
    }
    .actor__container {
        width:100%;
        margin-bottom:40px;
    }
}
</pre></body></html>