.cooltips {
    display: none;
    box-sizing: border-box;
    position: absolute;
    z-index: 9999;
    width: 260px;
    padding: 10px;
    background: #fff;
    border: 3px solid #ed0f38;
    border-radius: 5px 0 5px 5px;
}
    /* Arrow */
    .cooltips::after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        left: 50%;
        bottom: -40px;
        margin-left: -20px;
        border: 20px solid transparent;
        border-top-color: #ed0f38;
    }

    /* Options */
    .cooltips-options,
    .cooltips-options li {
        display: block;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .cooltips-options li {
        padding-top: 5px;
        font-size: 12px;
    }
    .cooltips-options a {
        color: #ee0f36;
    }
    .cooltips-options a:hover {
        color: #a1a1a1;
    }

    /* Close */
    .cooltips button {
        position: absolute;
        top: -25px;
        right: -3px;
        width: 22px;
        height: 22px;
        background: #ed0f38;
        border-radius: 5px 5px 0 0;
        cursor: pointer;
    }
        .cooltips button::before,
        .cooltips button::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 12px;
            height: 3px;
            margin: -1.5px 0 0 -6px;
            background: #fff;
            border-radius: 5px;
        }
        .cooltips button::before {
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }
        .cooltips button::after {
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }