.pop-up-related-posts-container{
    position: fixed;
    right: 0;
    top: 75%;
    transform: translate(106%,-50%);
    z-index: 11;
    width: 25%;
    background-color: white;
    padding: 1em;
    border-radius: 10px 0px 0px 10px;
    box-shadow: 0px 5px 16px 0px rgba(198, 183, 164, 0.50);
    opacity: 0;
    transition:transform ease .3s, opacity ease .3s;
}

.pop-up-related-posts-container.active{
    transform: translate(0%,-50%);
    opacity: 1;
}

.pop-up-related-posts-container .kksr-legend{
    display: none;
}

.pop-up-related-posts-action{
    display: flex;
    align-items: center;
    justify-content: left;
}
.pop-up-related-posts-close{
    display: flex;
}

.pop-up-related-posts-close:hover{
    cursor: pointer;
}

.pop-up-related-posts-message{
    flex: 1;
    text-align: center;
}

.pop-up-related-posts-message p{
    margin: 0;
    color: var(--wp--preset--color--gris);
    text-align: center;
    font-family: Poppins;
    font-size: var(--wp--preset--font-size--ms-text);
    font-style: normal;
    font-weight: 600;
    line-height: 19.2px; /* 120% */
    display: flex;
}

.pop-up-related-posts-items{
    padding: 0.5em 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.pop-up-related-posts-title .kk-star-ratings{
    margin-bottom: .5em;
}

.pop-up-related-posts-title-text{
    margin: 0;
    color: var(--wp--preset--color--gris);
    text-align: left;
    font-family: Poppins;
    font-size: var(--wp--preset--font-size--ms-text);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.pop-up-related-posts-content{
    display: flex;
    gap: 1em;
}

.pop-up-related-posts-frame{
    position: relative;
    aspect-ratio: 1/1;
    width: 130px;
    height: 100px;
}

.pop-up-related-posts-frame img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.pop-up-related-posts-text{
    display: flex;
    align-items: center;
}

.pop-up-related-posts-title .kksr-icon{
    width: 14px !important;
    height: 14px !important;
}


@media (max-width:820px){
    .pop-up-related-posts-container{
        width: 40%;
    }
}

@media (max-width:576px){
    .pop-up-related-posts-container{
        width: 78%;
    }
}