.signet-container {
    position: absolute;
    right: 0;
    z-index: 90;
    transform: translateX(350px);
    transition: transform .8s ease;
    filter: drop-shadow(0px 0px 4px rgba(0,0,0,.3));
}
.signet-container.is-active {
    transform: translateX(0) !important;
}
.signet-image {
    float: left;
    cursor: pointer;
}
.signet-image img {
    height: auto;
}
.signet-title {
    display: block;
    margin-bottom: 7px;
}
.signet-title.sm { 
    display: none; 
    padding: 15px;
    padding-bottom: 0;
}
.signet-content {
    width: 350px;
    height: 192px;
    background-color: #e1e1e1;
    overflow: hidden;
    padding: 15px;
    font-size: 12px;
    hyphens: auto;
}

/* youtube-container */
.signet-content .youtube-container {
    display: flex;
    height: 100%;
}
.signet-content .youtube-container iframe {
    /*height: auto;
    width: 270px;*/
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .signet-container {
        position: static;
        transform: unset !important;
        filter: unset;
        background-color: #e1e1e1;
        margin-bottom: 25px;
    }
    .signet-container.youtube-video {
        display: flex;
    }
    .signet-container.youtube-video .signet-image {
        float: none;
    }
    .signet-container.youtube-video .signet-image img {
        display: block;
    }
    .signet-container.youtube-video .signet-content {
        flex-grow: 1;
    }
    .signet-title { display: none; }
    .signet-title.sm { display: block; }
    .signet-content {
        width: auto !important;
        height: auto !important;
        overflow: unset;
        font-size: unset;
    }
    .signet-image {
        width: 40%;
        padding: 15px;
        margin-right: 10px;
    }
    .signet-image img {
        width: 100%;
        height: auto;
    }

}