/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .integri-szech2020 {
    position: fixed;
    z-index: 100;
    width: 200px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
}


.integri-szech2020 > img {
    display: block;
    max-width: 100%;
    height: auto;
}

.integri-szech2020.top-left {
   left: 0;
   top: 0;
}

.integri-szech2020.top-right {
   right: 0;
   top: 0;
}

.integri-szech2020.bottom-left {
   left: 0;
   bottom: 0;
}

.integri-szech2020.bottom-right {
   right: 0;
   bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
    .integri-szech2020 {
        display: none!important;
    }
}

@media (max-width: 767px) {
    .integri-szech2020 {
        display: none!important;
    }
}