/* ==========================================================
   Ifakta Floating
   Frontend Styles
========================================================== */


/* ==========================================================
   BASE
========================================================== */

.ifakta-floating {
    position: fixed;

    top: 50%;
    transform: translateY(-50%);

    z-index: 999999;

    box-sizing: border-box;
}


/* ==========================================================
   POSITION - RIGHT
========================================================== */

.ifakta-floating.ifloat-position-right {
    right: 0;
    left: auto;
}


/* ==========================================================
   POSITION - LEFT
========================================================== */

.ifakta-floating.ifloat-position-left {
    left: 0;
    right: auto;
}


/* ==========================================================
   IMAGE
   2 cm x 2 cm
========================================================== */

.ifakta-floating.ifloat-type-image {
    width: 75.6px;
    height: 75.6px;
}


/* ==========================================================
   CONTENT
========================================================== */

.ifakta-floating-content {
    position: relative;

    box-sizing: border-box;
}


/* ==========================================================
   IMAGE CONTENT
========================================================== */

.ifakta-floating.ifloat-type-image .ifakta-floating-content {
    width: 75.6px;
    height: 75.6px;
}


/* ==========================================================
   IMAGE
========================================================== */

.ifakta-floating-image {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    margin: 0;
    padding: 0;

    border: 0;
}


/* ==========================================================
   HTML CONTENT
   Ukuran mengikuti kode HTML
========================================================== */

.ifakta-floating.ifloat-type-html {
    width: auto;
    height: auto;
}

.ifakta-floating.ifloat-type-html .ifakta-floating-content {
    width: auto;
    height: auto;
}


/* ==========================================================
   HTML MEDIA
========================================================== */

.ifakta-floating.ifloat-type-html img {
    display: block;
    max-width: none;
    height: auto;
}

.ifakta-floating.ifloat-type-html iframe {
    display: block;
    border: 0;
}

.ifakta-floating.ifloat-type-html video {
    display: block;
}


/* ==========================================================
   CLOSE BUTTON
========================================================== */

.ifakta-floating-close {
    position: absolute;

    top: -7px;
    right: -7px;

    width: 20px;
    height: 20px;

    padding: 0;
    margin: 0;

    border: 0;
    border-radius: 50%;

    background: #000;
    color: #fff;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;

    line-height: 20px;
    text-align: center;

    cursor: pointer;

    z-index: 10;

    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}


/* ==========================================================
   CLOSE BUTTON HOVER
========================================================== */

.ifakta-floating-close:hover {
    background: #d60000;
    color: #fff;
}