.video-overlay-with-signup {
  visibility: hidden;
  /* Default hidden, until we determine if the user has decided to close it before in the browser session, otherwise show it. */
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: calc(476px / 1.8);
  height: calc(595px / 1.8);
  border: 2px solid #fff;
  border-radius: 10px;
  z-index: 2;
  display: flex; }
  .video-overlay-with-signup .pop-content {
    background-image: url("/static/img/video-overlay-with-signup.webp");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    border-radius: 10px;
    position: relative; }
    .video-overlay-with-signup .pop-content::after {
      content: ' ';
      position: absolute;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      background-color: #00000030; }
    .video-overlay-with-signup .pop-content .popup-btn {
      background-color: #fff;
      border: none;
      width: 30px;
      height: 30px;
      border-radius: 100%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      top: -15px;
      right: -15px;
      position: absolute;
      z-index: 2;
      cursor: pointer; }
    .video-overlay-with-signup .pop-content .video-placeholder {
      display: none; }
    .video-overlay-with-signup .pop-content .text-area {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px; }
      .video-overlay-with-signup .pop-content .text-area .play-button {
        width: 60px;
        height: 60px;
        border-radius: 100%;
        border: none;
        background-color: #FFFFFF90;
        position: relative;
        z-index: 1;
        cursor: pointer;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
      }
      .video-overlay-with-signup .pop-content .text-area h2 {
        color: #fff;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.61);
        margin: 0px;
        font-size: 17px;
        line-height: 20px;
        display: flex;
        flex-direction: row;
        width: calc(100% - 40px);
        position: relative;
        z-index: 1; }
  .video-overlay-with-signup.expanded {
    width: 100vw;
    height: 100vh;
    background-color: rgba(140, 140, 232, 0.9);
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: unset;
    border: none;
    visibility: unset; }
    .video-overlay-with-signup.expanded .pop-content {
      width: 600px;
      max-width: 80vw;
      min-height: unset;
      border-radius: 10px;
      background-image: none;
      padding: 0px;
      position: relative; }
      .video-overlay-with-signup.expanded .pop-content::after {
        display: none; }
      .video-overlay-with-signup.expanded .pop-content .text-area {
        display: none; }
      .video-overlay-with-signup.expanded .pop-content .video-placeholder {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center; }
        .video-overlay-with-signup.expanded .pop-content .video-placeholder .ps-embed-container {
          width: 100%;
          border-radius: 10px;
          overflow: hidden; }
        .video-overlay-with-signup.expanded .pop-content .video-placeholder .subscribe-area {
          border-radius: 15px;
          padding: 20px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          border: 2px solid #FFFFFF90;
          background-color: #6a6ab0;
          margin-top: 20px;
          gap: 30px; }
          .video-overlay-with-signup.expanded .pop-content .video-placeholder .subscribe-area h2 {
            color: #FFF;
            font-size: 16px;
            margin: 0px; }
          .video-overlay-with-signup.expanded .pop-content .video-placeholder .subscribe-area .register-btn {
            background-color: #2bdad7;
            color: #fff;
            border-radius: 7px;
            padding: 15px 60px;
            border: none;
            font-size: 16px;
            font-weight: bold;
            border-bottom: 3px solid #1e84a3;
            cursor: pointer; }
  .video-overlay-with-signup.closed {
    display: none; }

@media screen and (max-width: 750px) {
  .video-overlay-with-signup.expanded .pop-content {
    max-height: unset; }
    .video-overlay-with-signup.expanded .pop-content .video-placeholder .subscribe-area {
      position: unset;
      margin-top: 20px;
      width: 100%;
      background-color: #6a6ab0; }
      .video-overlay-with-signup.expanded .pop-content .video-placeholder .subscribe-area .register-btn {
        font-size: 14px;
        width: 100%;
        padding: 10px 20px;
        text-align: center; } }
