.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 */
.popuptext {
    visibility: hidden;
    width: 20em;
    border: 1px solid;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    /*bottom: 0px;*/
    left: 45px;
}

.popuptext2 {
    visibility: hidden;
    width: 20em;
    border: 1px solid;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    /*bottom: 0px;*/
    left: -45px;
}
.popuptext3 {
    border: 1px solid;
    border-radius: 6px;
    padding: 8px 0;
    z-index: 3;
}

/* Popup arrow */
.popuptext::after {
    -ms-transform: rotate(-45deg); /* IE 9 */
    -webkit-transform: rotate(-45deg); /* Safari */
    transform: rotate(-45deg);
    width: 20px;
    height: 20px;
    z-index: 2;
    content: "";
    position: absolute;
    /*top: 30%;*/
    left: -5px;;
    margin-left: -5px;
    border-width: 1px;
    border-style: solid;
    border-color: #ea6820 transparent transparent #ea6820;
    background-color: #f4f5f7;
}

/* Toggle this class - hide and show the popup */
.show {
    visibility: visible;
    -webkit-animation: fadeIn .5s;
    animation: fadeIn .5s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}			

.popup-padding-x {
    padding-left: 3%;
    padding-right: 3%;
}
