body {
    line-height: 1.25rem;
}

/* Popup section*/
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* The actual popup */
    .popup .popuptext {
        visibility: hidden;
        background-color: #005993;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 16px;
        position: absolute;
        z-index: 1;
        left: 30px;
        top: -32px;
        width: 235px;
        height: auto;
    }

        .popup .popuptext h1 {
            text-align: left;
            color: #FFFFFF;
            font-family: "Poppins";
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            letter-spacing: 0.14px;
            margin-bottom: 10px;
        }

        .popup .popuptext p {
            text-align: left;
            font-family: "IBM Plex Sans";
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 16px;
            letter-spacing: 0.18px;
            margin-bottom: 0px;
        }

        /* Popup arrow */
        .popup .popuptext::after {
            content: "";
            position: absolute;
            top: 45%;
            left: -4px;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #005993 transparent transparent transparent;
            transform: rotate(90deg);
        }

    /* Toggle this class - hide and show the popup */
    .popup .show {
        visibility: visible;
        -webkit-animation: fadeIn 1s;
        animation: fadeIn 1s;
    }

    .popup .popuptext-right {
        top: -52px;
    }

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 821px) {
    /* Popup section*/
    .popup .popuptext {
        left: -75px;
        width: 183px;
        top: 37px;
    }

    .popup .popuptext-right {
        left: 35px;
        width: 235px;
        top: -41px;
    }

    .popup .popuptext::after {
        transform: rotate(181deg);
        top: -7.5%;
        left: 82px;
    }

    .popup .popuptext-right::after {
        transform: rotate(90deg);
        top: 45%;
        left: -4px;
    }

    /* End popup section */
}
