
.paid-user-redirection-modal{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    padding: 1.5vw;
    justify-content: center;
  }
  .paid-user-redirection-modal .content-container{
    background: white;
    padding: 1.5vw;
    border-radius: 0.5vw;
    box-shadow: 0px 0px 10px -5px black;
    transform: scale(0);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .paid-user-redirection-modal .main-logo{
    height: 3vw;
    width:auto;
    margin-bottom: 1vw;
  }
  .paid-user-redirection-modal .modal-heading{
    color:#3D4D5D;
    font-weight: 600;
    font-size: 1.5vw;
    margin-bottom: 1vw;
    text-align: center;

  }
  .robotics  .paid-user-redirection-modal .modal-heading{
    font-weight: 200;
    font-size: 1.2vw;
    margin-bottom: 2vw;
  }
  .popup-modal {
    animation: popup 0.5s ease-in-out forwards;
  }
  .paid-user-redirection-modal a{
    text-decoration: none;
  }
  .paid-user-redirection-modal .cta-btn{
    padding: 1vw 2vw;
  }
  

  @keyframes popup{
    0%{
        transform: scale(0);
    }
    70%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
  }