  
 /* Modal */
 .modal {
    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: rgba(0,0,0,0.4); /* Black with opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 25% auto; /* 25% from the top and centered horizontally */
    padding: 20px;
    border: 1px solid #888;
    max-width: 100%; /* Set maximum width */
    width: 100%; /* Full width */
  }
  
  /* Close Button */
  .close {
    color: #aaa;
    align-self: right;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
    .border img {
  transition: .5s ease;
  }
  
  .border img:hover{
  /*box-shadow: 0 0 0 10px #4c078c;*/
  transition: .9s ease;
  border: 1px solid;
  padding: 10px;
  box-shadow: 5px 10px 18px  #4c078c;
  }
  
  .newly-added {
    animation: flyin 4.1s ease forwards;
    opacity: 0;
    transform: scale(2);
    filter: blur(4px);
    border: 1px solid;
    padding: 10px;
    box-shadow: 5px 10px #4c078c;
  }
  
  .newly-added1{
    animation: flyin 4.1s ease forwards;
    opacity: 0;
    transform: scale(2);
    filter: blur(4px);
    border: 1px solid;
    padding: 10px;
    box-shadow: 5px 10px #f1e610;
  }
  
  
  @keyframes flyin {
     to { 
       filter: blur(0);
       transform: scale(1);
       opacity: 1;
     }
  }
  .modal-dialog {
    max-width: 100%;
    margin: 0;
  }
  
  .modal-content {
    height: 100vh;
  }
  