/* Start:/local/components/timelabs/live.programs.by.genre/templates/.default/style.css?164690719213048*/
/* -----------------------
    Banner
----------------------- */
.bannerByGenre {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    will-change: height, opacity, visibility;
}

.bannerByGenre__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.bannerByGenre__image:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 20%);
}

.bannerByGenre__content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.bannerByGenre__title {
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 1px 28px rgb(1 1 1 / 10%);
    font-size: 2.2rem;
}

@media(min-width: 576px) {
    .bannerByGenre {
        height: 300px;
        visibility: visible;
        opacity: 1;
    }
}
/* -----------------------
    /Banner
----------------------- */

/* -----------------------
    Main Content
----------------------- */
.contentByGenre {
    padding: 10px 0;
    transition: .3s;
    will-change: padding;
}

@media(min-width: 576px) {
    .contentByGenre {
        padding: 30px 0;
    }
}
/* -----------------------
    /Main Content
----------------------- */

/* -----------------------
    Card
----------------------- */
.cardByGenre {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    margin: 15px 0;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 14px 28px rgb(0 0 0 / 5%),
                0 10px 10px rgb(0 0 0 / 2%);
    word-wrap: break-word;
}

.cardByGenre__figure {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.cardByGenre__figure:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgb(0 0 0 / 5%);
    transition: .3s;
}

.cardByGenre__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -o-object-fit: cover;
        object-fit: cover;
    -o-object-position: center;
        object-position: center;
    z-index: 0;
}

.cardByGenre__age {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 0;
    margin: 15px;
    padding: 5px 10px;
    color: #fff;
    background: red;
    border-radius: 6px;
    z-index: 1;
}

.cardByGenre__content {
    padding: 1rem;
    flex: 1 0 auto;
}

.cardByGenre__title {
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 0;
}

.cardByGenre__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem 1rem;
    flex: 0 0 auto;
}

.cardByGenre__footer_pt {
    padding-top: 1rem;
}

.cardByGenre__btn {
    color: #1a1a23;
    text-decoration: none;
    transition: .3s;
    will-change: color;
}

.cardByGenre__btn_play {
    color: #d03f30;
}

.cardByGenre__btn:hover {
    color: #000;
    text-decoration: none;
}
/* -----------------------
    /Card
----------------------- */

/* -----------------------
    Modal
----------------------- */
.fade-enter-active, .fade-leave-active {
    transition: .5s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active до версии 2.1.8 */ {
    opacity: 0;
}

.modalByGenre {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1072;
    outline: 0;
    transition: .3s;
}

.modalByGenre_play {
    overflow: hidden;
    height: 100vh;
}

.modalByGenre__container {
    position: relative;
    width: 90%;
    max-width: 850px;
    margin: 30px auto;
    pointer-events: none;
}

.modalByGenre__container_play {
    height: 95%;
    height: calc(100% - 60px);
    width: calc(100% - 60px);
    max-width: 100%;
    margin: 30px;
}

.modalByGenre__closeBtn {
    position: absolute;
    top: 0;
    transform: translate(50%, -50%);
    right: 0;
    z-index: 99;
    display: inline-flex;
    cursor: pointer;
    pointer-events: auto;
    border: 0;
    background-color: transparent;
    outline: none;
    opacity: .5;
    transition: .3s;
}

.modalByGenre__closeBtn:focus {
    outline: 0;
}

.modalByGenre__closeBtn:hover {
    opacity: 1;
}

.modalByGenre__closeBtn svg {
    width: 36px;
    height: 36px;
    background-color: rgb(194 194 194);
    -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
            border-radius: 50%;
    padding: 8px;
    outline: 0;
}

.modalByGenre__content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: content-box;
    box-shadow: 0 0 12px 2px rgb(0 0 0 / 50%);
    border-radius: 6px;
    outline: 0;
    overflow: hidden;
}

.modalByGenre__content_play {
    height: 100%;
}

.modalByGenre__media-container {
    /* ... */
}

.modalByGenre__media-container_play {
    height: 100%;
}

.modalByGenre__media {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.3925%;
}

.modalByGenre__media_play {
    height: 100%;
    padding-bottom: 0;
}

.modalByGenre__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    z-index: 0;
}

.modalByGenre__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modalByGenre__video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    border-width: 0;
    outline-width: 0;
}

.modalByGenre__entry-container {
    padding: 3rem;
}

.entryModalByGenre__header {
    margin: 0 0 2rem;
}

.entryModalByGenre__title {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 1rem;
    line-height: 1.35;
}

.entryModalByGenre__date {
    font-size: .85rem;
    margin: 0 0 1rem;
}

.entryModalByGenre__participants {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.entryModalByGenre__participants-title {
    font-weight: 600;
    padding: 0 10px 5px 0;
}

.entryModalByGenre__participant {
    color: rgb(208, 63, 48);
    padding: 0 15px 5px 0;
}

.entryModalByGenre__body {
    margin: 0 0 3rem;
}

.entryModalByGenre__description {
    margin: 0 0 2.5rem;
}

.entryModalByGenre__slider-container {
    margin: 0 0 2rem;
}

.entryModalByGenre__slider.slick-slider .slick-list {
    margin-left: -5px;
    margin-right: -5px;
}

.entryModalByGenre__slider.slick-slider .slick-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.entryModalByGenre__slide.slick-slide {
    position: relative;
    display: block;
    float: none;
    padding: 0 5px;
    outline: 0;
}

.entryModalByGenre__slide-link {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    border: 0;
    outline: 0;
    overflow: hidden;
}

.entryModalByGenre__slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.entryModalByGenre__slider-btn {
    position: absolute;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    background: rgb(208, 63, 48);
    color: #fff;
    font-size: 1.25rem;
    border-width: 0;
    outline: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    cursor: pointer;
    z-index: 9;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transition: .3s;
    will-change: opacity, visibility;
}

.entryModalByGenre__slider-btn:focus {
    outline: 0;
}

.entryModalByGenre__slider-btn_prev {
    left: -25px;
}

.entryModalByGenre__slider-btn_next {
    right: -25px;
}

.entryModalByGenre__slider-btn.slick-disabled {
    cursor: default;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}

.entryModalByGenre__socialMedia-container {
    display: flex;
    align-items: center;
}

.entryModalByGenre__socialMedia-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 .75rem 0 0;
}

.entryModalByGenre__socialMedia {
    display: flex;
    flex-wrap: wrap;
}

.entryModalByGenre__socialMedia a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    width: 2rem;
    margin: 0 .5rem 0 0;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: .25rem;
    transition: .3s;
    will-change: opacity;
}

.entryModalByGenre__socialMedia a.socialMedia-vk {
    background-color: #5181b8;
}

.entryModalByGenre__socialMedia a.socialMedia-fb {
    background-color: #3b5998;
    background-image: linear-gradient(#4e69a2, #3b5998 50%);
}

.entryModalByGenre__socialMedia a.socialMedia-ok {
    background-color: #e47d08;
}

.entryModalByGenre__socialMedia a:hover {
    color: #fff;
    text-decoration: none;
    opacity: .75;
}

.entryModalByGenre__comments {
    margin: 0 0 2.5rem;
}

.commentModalByGenre {
    position: relative;
    display: block;
    width: 100%;
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 0 0 20px #d0d7db;
    border-radius: 20px 20px 60px 20px;
    transition: .3s ease-in;
}

.commentModalByGenre + .commentModalByGenre {
    margin: 1.5rem 0 0;
}

.commentModalByGenre__header {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 1rem;
}

.commentModalByGenre__date {
    white-space: nowrap;
}

.commentModalByGenre__message {
    color: #212529;
    line-height: 1.6;
}

.commentModalByGenre__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 1rem;
    border-radius: 0;
    text-transform: uppercase;
    background-color: #d03f30;
    color: #fff;
    border: 1px solid #d03f30;
    font-size: 1rem;
    font-weight: 600;
    line-height: 50px;
    outline: 0;
    cursor: pointer;
    transition: .3s;
    will-change: color, background-color;
}

.commentModalByGenre__btn:hover {
    color: #d03f30;
    background-color: #fff;
}

.commentModalByGenre__btn:focus {
    outline: 0;
}

.commentModalByGenre__btn_loading {
    pointer-events: none;
    cursor: default;
}

.commentModalByGenre__btn_loading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 25%);
}
/* -----------------------
    /Modal
----------------------- */

/* -----------------------
    Lazy Load: Loading
----------------------- */
.commentModalByGenre__btn_loading:after,
[lazy=loading]:after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #333;
    -webkit-animation: spinner .6s linear infinite;
    animation: spinner .6s linear infinite;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
/* -----------------------
    /Lazy Load: Loading
----------------------- */

/* -----------------------
    Spinner
----------------------- */
@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* -----------------------
    /Spinner
----------------------- */

/* -----------------------
    Other
----------------------- */
[v-cloak] {
    display: none !important;
}
/* -----------------------
    /Other
----------------------- */

/* End */
/* /local/components/timelabs/live.programs.by.genre/templates/.default/style.css?164690719213048 */