#skeleton-container {
    height: 327px;
    width: 70%;
    background-color: rgb(255, 255, 255);
    color: rgb(72, 72, 72);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: rgba(17, 0, 17, 0.25) 0px 0px 50px;
    overflow: hidden;
    border-radius: 2rem;
    margin: auto;
  }
  
  .skeleton {
    padding: 25px;
    h3,
    #booking-label,
    #booking-input,
    #last-name-label,
    #last-name-input,
    #check-eligibility-button,
    #plusgrade-privacy-policy {
      height: 20px;
      background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
      border-radius: 5px;
      background-size: 200% 100%;
      animation: shine 3s linear infinite;
    }
  
    h3 {
      width: 46.5%;
    }
  
    .input-container {
      padding-top: 20px;
      gap: 20px;
      display: flex;
      flex-direction: row;
    }
  
    #booking-reference,
    #last-name {
      width: 50%;
    }
  
    #booking-label {
      width: 32%;
    }
  
    #last-name-label {
      width: 18%;
    }
  
    #booking-input,
    #last-name-input {
      width: 100%;
      height: 45.4px;
      border-radius: 10px;
    }
  
    #check-eligibility-button {
      width: 23%;
      height: 48.5px;
      border-radius: 20px;
      margin-top: 30px;
    }
  
    #plusgrade-privacy-policy {
      height: 56px;
      margin: 0px;
    }
  }
  
  @keyframes shine {
    from {
      background-position: 200% 0;
    }
    to {
      background-position: -200% 0;
    }
  }
  
  #loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 100%;
    position: relative;
  }
  
  #iframe {
    border: 0;
    width: 100%;
    height: 100%;
    display: none;
    box-shadow: none;
  }
  
  @media (max-width: 990px){
    #loading-container {
      height: 500px;
    }
  }
  
  @media (max-width: 768px) {
    #skeleton-container {
      height: 600px;
      border-radius: 1rem;
    }
  
    .skeleton {
      padding: 20px;
      height: 100%;
      display: flex;
      gap: 20px;
      flex-direction: column;
  
      p {
        margin: 0px;
      }
  
      h3 {
        width: 100%;
      }
  
      .input-container {
        gap: 20px;
        flex-direction: column;
      }
  
      #booking-reference,
      #last-name {
        width: 100%;
      }
  
      #booking-label {
        width: 54%;
        margin-bottom: 10px;
      }
  
      #last-name-label {
        width: 33%;
        margin-bottom: 10px;
      }
  
      #booking-input,
      #last-name-input {
        width: 100%;
        height: 45.4px;
        border-radius: 15px;
      }
  
      #check-eligibility-button {
        width: 100%;
        height: 48.5px;
        border-radius: 20px;
        margin-top: 0px;
      }
  
      #plusgrade-privacy-policy {
        height: 226px;
      }
    }
    #loading-container {
      height: 600px;
    }
  }
  