/* ===========================================================
   Herzblatt - WordPress Plugin
   Datei: css/herzblatt.css
   =========================================================== */

/* Container */

#herzblatt-container {

    position: fixed;

    right: 120px;
    bottom: 20px;

    width: 150px;
    height: auto;

    z-index: 999999;

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.8s ease-in-out;

}

/* Einblenden */

#herzblatt-container.show {

    opacity: 1;

}

/* Ausblenden */

#herzblatt-container.hide {

    opacity: 0;

}

/* Video */

#herzblatt-video {

    display: block;

    width: 200%;
    height: auto;

}

/* Audio */

#herzblatt-audio {

    display: none;

}

/* Responsive */

@media screen and (max-width:768px){

    #herzblatt-container{

        width:80px;

        right:15px;

        bottom:15px;

    }

}

@media screen and (max-width:480px){

    #herzblatt-container{

        width:65px;

        right:10px;

        bottom:10px;

    }

}