.notif{
    position: fixed;
    top: 100px;
    right: -600px;
    border-radius: 16px;
    background: linear-gradient(139deg, #0A341D 8.6%, #175834 54.7%, #0A341D 96.52%);
    padding: 20px;
    color:white;
    font-family: "Golos Text";
    z-index: 9999;
    transition: right 0.9s ease-in-out;
}
.notif__series, .notif__tv{
    width: 320px;
}
.notif__category{
    top: 130px;
    width: 543px;
    height: 501px;
}
.series__block{
    text-align: center;
}
.notif__wrapper{
    gap: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 9;
}
.notif__category .notif__wrapper{
    height: 100%;
    justify-content: flex-end;
}

.notif__block-images{
    display: flex;
    gap: 10px;
}
.notif__block-images img{
    width: 105px;
    height: 155px;
    border-radius: 10px;
    transition: 0.3s ease;
}
.notif__series .notif__block img:hover,
.notif__block-images img:hover{
    transform: scale(1.05);
}
.notif.active{
    right: 10px;
}
.notif__series .notif__title{
    color:  #FFF;
    font-family: "Golos Text";
    font-size: 20px;
    font-weight: 600;
}
.notif__series .notif__block p{
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
}
.notif__series .notif__block img{
    width: 237px;
    height: 370px;
    transition: 0.3s;
}
.notif__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.notif__close{
    position: absolute;
    top: 20px;
    z-index: 9;
    right: 20px;
    cursor: pointer;
}
.notif__tv-content{
    display: flex;
    gap: 10px;
    align-items: center;
}
.notif__tv-content p{
    -webkit-line-clamp: 1;
    line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.notif__tv .notif__title{
    color: var(--Style, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 104%; /* 20.8px */
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.notif__tv .notif__block h2{
    color:  #FFF;
    font-size: 20px;
    font-weight: 400;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.notif__tv .notif__block p{
    color: #737D7D;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.notif__category-mainPhoto{
    position: absolute;
    top: -40px;
    z-index: 1;
    right: 0;
    border-radius: 16px;
    overflow: hidden;
}
.notif__title-main{
    color: #FFF;
    font-size: 60px;
    font-weight: 600;
}
.notif__title-sub{
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
}
.notif__category .notif__btn{
    width: 300px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.notif__category-mainBackground{
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.6;
    top: 0;
    left: 0;
    z-index: 0;
}
.notif__category-mainBackground img{
    width: 100%;
    height: 100%;
}
@media (max-width: 1024px) {
    .notif.active {right: 20px;}
}
@media (max-width: 768px) {
    .notif__series .notif__block img{
        width: 175px;
        height: 274px;
    }
    .notif__tv .notif__block h2, .notif__tv .notif__title{
        font-size: 18px;
    }
    .notif__category{
        width: 440px;
        height: 393px;
    }
    .notif__category-mainPhoto{
        display: none;
    }
    .notif__category .notif__btn{
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .notif__block-images{
        justify-content: space-between;
    }
    .notif__block-images img{
        width: 118px;
        height: 174px;
    }
    .notif__title-main{font-size: 30px;}
    .notif__title-sub{font-size: 18px; width: 167px;}
}
@media (max-width: 475px) {
    .notif.active{
        right: 0;
    }
}
