﻿a {padding:5PX;margin:8PX;}
.myHeader {
    margin-top: 25px;
    margin-bottom: 30px;
    text-decoration: underline;
}
p{text-align:center;}
.divSpace{height:30px;width:100%;}
.blinking {
    animation: blinkingText 0.8s infinite;
}
@keyframes blinkingText {
    0% {
        background-color: #ffffff;
        color: #198754;
    }

    50% {
        background-color: #198754;
        color: #ffffff;
    }

    100% {
        background-color: #ffffff;
        color: #198754;
    }
}

@font-face {
    font-family: "myFont";
    src: url("tigrit-audio/nyala.ttf");
}
.modal {
    text-align: center;
    direction: rtl;
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

@keyframes pulse {
    0% {
        opacity: .5;
        transform: translate(-50%, -100%) scale(.5);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -100%) scale(1.2);
    }

    100% {
        transform: translate(-50%, -100%) scale(1);
    }
}

.mytooltip span {
    color: #000;
    text-decoration: none;
    transform: translate(-50%, -100%) scale(.5);
    position: absolute;
    background-color: #292929;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
    /*width: max-content;
    max-width: 200px;*/
    top: 0;
    left: 50%;
    margin-top: -18px;
    visibility: hidden;
   /* opacity: 0;*/
}

.mytooltip:hover {
    position: relative;
}

    .mytooltip:hover span {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -100%) scale(1);
        animation: pulse 1s;
    }

        .mytooltip:hover span::after {
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: solid transparent;
            content: '';
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-top: 8px solid #292929;
            border-right: 8px solid transparent;
            border-left: 8px solid transparent;
            border-width: 10px;
        }
