/* The location pointed to by the popup tip. */
.popup-tip-anchor {
    height: 0;
    position: absolute;
    /* The max width of the info window. */
    width: 200px;
}

/* The bubble is anchored above the tip. */
.popup-bubble-anchor {
    position: absolute;
    width: 100%;
    bottom: 53px;
    left: 0;
}

/* Draw the tip. */
.popup-bubble-anchor::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid white;
}

/* The popup bubble itself. */
.popup-bubble-content {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
    max-width: calc(100vw - 52px);
}

.gmnoprint,
.gm-style-cc{
    visibility: hidden;
}

.gmnoprint .gmnoprint{
    visibility: visible;
}

.gmnoprint.gm-bundled-control.gm-bundled-control-on-bottom{
    bottom: 235px !important;
    visibility: visible;
}

.gm-control-active.gm-fullscreen-control{
    top: 118px !important;
} 

.gm-control-active.gm-fullscreen-control + div{
    bottom: 240px !important;
}

.popup-bubble-content .item-content{
    min-width: 280px;
}