
/* =========================================================
   SMALL SQUARE FLOATING BANNER
   ========================================================= */

/* .floating-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    width: 90px;
    height: 90px;

    border-radius: 14px;
    overflow: hidden;

   

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

         margin-bottom: 30%;
} */



.floating-banner {
    position: fixed;
    width: 1px;
    height: 1px;
    right: 0;
    bottom: 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    overflow: hidden;
}


@media (max-width:767px){
  .floating-banner {
     margin-bottom: 100%;
  }
}

.floating-banner a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
   
}

.floating-banner img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border: 0;
}

.floating-banner:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
    .floating-banner {
        width: 70px;
        height: 80px;

        right: 16px;
        bottom: 16px;

        border-radius: 5px;
    }
}