/* ============================================================
   Icon Card Widget
   ============================================================ */
.ic-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.ic-card {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ic-company-img {
    display: block;
    max-width: 100%;
    height: auto;
}

.ic-plus-btn {
    -webkit-appearance: none;
    appearance: none;
}

.ic-plus-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.ic-popup {
    box-sizing: border-box;
}

.ic-popup .ic-quote i,
.ic-popup .ic-quote svg {
    display: block;
}

/* Popup abre para CIMA (padrão) */
.ic-popup.ic-popup--above {
    /* bottom: 125%; */
    bottom: 100%;
    top: auto;
}

/* Popup abre para BAIXO */
.ic-popup.ic-popup--below {
    top: 125%;
    bottom: auto;
}