    .spin {
    animation-name: spin;
    animation-duration: 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    min-width: 60px;
    max-width: 80px;
    /* transform: rotate(3deg); */
        /* transform: rotate(0.3rad);/ */
        /* transform: rotate(3grad); */ 
        /* transform: rotate(.03turn);  */
    }

    @keyframes spin {
        from {
            transform:rotate(0deg);
        }
        to {
            transform:rotate(360deg);
        }
    }

    
    .otp-section {
        width: 100%;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5em;
    }
    .otp-input-a {
        appearance: none;
        border: 1px solid #ccc;
        font-family: monospace;
        font-size: 1em;
        text-align: center;
    }
    .otp-button {
        appearance: none;
        padding: 0.5em;
        cursor: pointer;
        background: #000;
        border: 1px solid #000;
        font-family: monospace;
        color: #fff;
    }
    
    .otp-input {
        display: flex;
        gap: 0.5em;
    }
    .otp-input input {
        width: 2em;
        padding: 0.5em 0;
    }
    input#final {
        padding: 0.5em;
        width: 8em;
    }

    
    .blink {
        animation: blinker 1.5s linear infinite;
        color: red;
        font-family: sans-serif;
    }
    @keyframes blinker {
        50% {
            opacity: 0;
        }
    }

    .glow {
    animation: glow 1s infinite alternate;
    }

    @keyframes glow {
    from {
        box-shadow: 0 0 10px -10px #aef4af;
    }
    to {
        box-shadow: 0 0 10px 10px #aef4af;
    }
    }

    .wglow {
    animation: wglow 1s infinite alternate;
    }

    @keyframes wglow {
    from {
        box-shadow: 0 0 10px -10px #dc3545;
    }
    to {
        box-shadow: 0 0 10px 10px #dc3545;
    }
    }

    hl { 
    background-color: #28a745;
    color: #FFFFFF;
    font-size:.6rem;
    font-weight:300;
    padding:2px 4px;
    position:relative;
    right:8px;
    top:-16px;
    border-radius: 3px 3px;
    }

    hlxs { 
    background-color: #28a745;
    color: #FFFFFF;
    font-size:.4rem;
    font-weight:300;
    padding:2px 4px;
    position:relative;
    right:8px;
    top:-16px;
    border-radius: 3px 3px;
    }

    hlr { 
    background-color: #dc3545;
    color: #FFFFFF;
    font-size:.6rem;
    font-weight:300;
    padding:2px 4px;
    position:relative;
    right:8px;
    top:-16px;
    border-radius: 3px 3px;
    }

    hlb { 
    background-color: #007bff;
    color: #FFFFFF;
    font-size:.6rem;
    font-weight:300;
    padding:2px 4px;
    position:relative;
    right:8px;
    top:-16px;
    border-radius: 3px 3px;
    }

    hln { 
    background-color: #28a745;
    color: #FFFFFF;
    font-size:.6rem;
    font-weight:300;
    padding:2px 4px;
    position:relative;
    right:18px;
    top:8px;
    border-radius: 3px 3px;
    }

    hli { 
    background-color: #28a745;
    color: #FFFFFF;
    font-size:.5rem;
    font-weight:300;
    position:relative;
    right:2px;
    top:10px;
    border-radius: 3px 3px;
    }

    hlpt { 
    background-color: #28a745;
    color: #FFFFFF;
    font-size:.6rem;
    font-weight:300;
    padding:2px 4px;
    position:relative;
    right:80px;
    top:8px;
    border-radius: 3px 3px;
    }

    hla { 
    background-color: #28a745;
    color: #FFFFFF;
    font-size:.6rem;
    font-weight:300;
    padding:1px 2px;
    position:relative;
    right:-10px;
    top:-10px;
    border-radius: 3px 3px;
    }


    .shake { /*img:hover*/
    animation: shake 0.5s;
    animation-iteration-count: infinite;
    }

    @keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
    }


    .dropdown {
    position: relative;
    display: inline-block;
    }

    .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 10px 16px;
    z-index: 1;
    }

    .dropdown:hover .dropdown-content {
    display: block;
    }


    .dropdown-2 {
    position: relative;
    display: block;
    }

    .dropdown-content-2 {
    display: none;
    position: relative;
    background-color: transparent;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 10px 16px;
    z-index: 1;
    }

    .dropdown-2:hover .dropdown-content-2 {
    display: block;
    }


    .bonavbar {
    position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem .5rem
    }

    .bonavbar a {
    float: left;
    display: block;
    color: #707070;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    }

    .bonavbar a.active {
    color: #28a745;
    }


/* The Modal (background) 
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
    }

    /* Modal Content */
    .modal-content {
        background-color: white;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
    }

    /* Close button */
    .close-btn {
        color: #aaa;
        font-size: 28px;
        font-weight: bold;
        position: absolute;
        top: 10px;
        right: 25px;
        cursor: pointer;
    }

    .close-btn:hover,
    .close-btn:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
