/* Info popup */

.info-popup {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    background-color: var(--blue);
    color: #fff;
    z-index: 20;
    box-shadow: 1px 1px 10px #00000069;
}

.info-popup .info-popup-image-wrapper {
    height: 100px;
}

.info-popup h4 {
    font-size: 1.2rem;
}

.info-popup .info-popup-close-icon {
    right: 16px;
    top: 16px;
}

@media (min-width: 576px) {
    .info-popup {
        right: 33px;
        bottom: 33px;
        height: 190px;
        width: 575px;
        max-width: calc(100% - 66px);
    }
    .info-popup .info-popup-image-wrapper {
        width: 175px;
        height: 100%;
    }
    .info-popup .info-popup-close-icon {
        right: 16px;
        top: 16px;
    }
    .info-popup h4 {
        font-size: 1.563rem;
    }
}