.pharmcare-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    float: left;
    padding-left: 0.4em;
}

@media (min-width:200px) and (max-width:670px) {
    .create-pt{
        margin: 0 9em
    }
}


/* search params for all the apps = e.g. leads, pharmcare etc
 class="text-color p-2 no-lead-found
  verify-text lead-list-display-text px-4 w-full text-2xl text-blue-800">
*/

.no-data-message {
    padding: 1em;
    font-size: 1.1em;
    color: #2c5282

  }
  
  @media (min-width:600px) and (max-width:1700px) {
    .no-data-message{
        font-size: 1.4em;
        color: #2c5282
    }
}


/*  The search icon will blink indefinitely as long as it has this class */

@keyframes blinker {
    from {opacity: 1.0;}
    to {opacity: 0.0;}
}


.blink {
    text-decoration: blink;
    animation-name: blinker;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;

}