/**
 * Pulse Area for Files Drop
 */
 .pulse-area {
    display: flex;
    margin: auto;
    text-decoration: none;
    outline: none;
    font-size: 40px;
    cursor: pointer;
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
  }

  .pulse-area::after {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 50%;
    position: absolute;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0px rgba(19, 69, 172, 1),
        0 0 0 0px rgba(19, 69, 172, 0.85);
    }
    50% {
      transform: scale(0.95);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(19, 69, 172, 0), 0 0 0 30px rgba(19, 69, 172, 0);
    }
  }
  
/**
 *Results Area
 */
.upc-container {
  padding-top:30px;
  padding-bottom: 30px;
}

.upc-container div {
  margin-bottom: 10px;
}

.upc-container div a {
  text-decoration: underline;
}