#gd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: none;
}

.gd-tooltip {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.gd-tooltip img {
    width: 40px;
}

.gd-close {
    cursor: pointer;
    font-size: 22px;
}

/* Highlight search */
.gd-highlight {
    position: relative;
    z-index: 10000 !important;
    box-shadow: 0 0 0 4px #ffffff;
    background: #fff;
}

/* =====================
   DESKTOP
===================== */
@media (min-width: 768px) {

    .gd-tooltip {
        top: 25%;
    }

    .gd-tooltip img {
        order: 1;
        transform: rotate(0deg);
        margin-bottom: 10px;
    }

    .gd-tooltip p {
        order: 2;
    }

    .gd-close {
        order: 3;
        margin-top: 15px;
        position: static;
    }
}

/* =====================
   MOBILE
===================== */
@media (max-width: 767px) {

    .gd-tooltip {
        bottom: 90px;
    }

    .gd-close {
        order: 1;
        position: absolute;
        top: -45px;
        right: 20px;
        margin: 0;
    }

    .gd-tooltip p {
        order: 2;
    }

    .gd-tooltip img {
        order: 3;
        margin-top: 12px;
        transform: rotate(180deg);
    }
}
