﻿/* Popup container - can be anything you want */
.popup {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    user-select: none;
}

/* The actual popup */

.popup .popuptext {
    background-color: #263948;
    border: 1px solid #263948;
    border-radius: 6px;
    bottom: 125%;
    color: #ffffff;
    font-size: 10px;
    left: 50%;
    margin-left: -63px;
    padding: 4px 0;
    position: absolute;
    text-align: center;
    width: 125px;
    z-index: 1;
}

/* Popup arrow */

.popup .popuptext::after {
    border-color: #263948 transparent transparent transparent;
    border-style: solid;
    border-width: 5px;
    content: "";
    left: 50%;
    margin-left: -5px;
    position: absolute;
    top: 100%;
}

/* Toggle this class - hide and show the popup */

.popup .show {
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    visibility: visible;
}

/* Add animation (fade in the popup) */

@-webkit-keyframes fadeIn {
    from { opacity: 0; }

    to { opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }

    to { opacity: 1; }
}

/* Popup container - can be anything you want */

.alertpopup {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    /*display: inline-block;*/
    cursor: pointer;
    user-select: none;
}

/* The actual alertpopup */

.alertpopup .alertpopuptext {
    background-color: #555;
    color: #fff;
    font-size: 14px;
    /* border-radius: 6px; */
    padding: 8px 5px;
    text-align: center;
    visibility: hidden;
    /*position: absolute;*/
    /*z-index: 1;
        top: -230%;
        left: 60px;*/
}

/* Toggle this class - hide and show the alertpopup */

.alertpopup .show {
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    visibility: visible;
}

/* Add animation (fade in the alertpopup) */

@-webkit-keyframes fadeIn {
    from { opacity: 0; }

    to { opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }

    to { opacity: 1; }
}