.share_properties_multiple_sources_iframe {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
  }

  .iframeOpen {
    opacity: 1;
    visibility: visible;
    background-color: transparent;
  }
  
  #share_properties_multiple_sources_modal {
    display: flex;
    position: fixed;
    background-color: #485c66ab;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0px;
    left: 0px;
    justify-content: center;
    align-items: center;
  }
  
  .fakeModalSharePropertiesMultipleSources {
    position: absolute;
    z-index: -1;
    opacity: 1;
    visibility: visible;
    width: 586px;
    height: 516px;
    background-color: #fff;
    border-radius: 24px;
    display: grid;
    place-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .fakeModalSharePropertiesMultipleSources.fakeModalClose {
    opacity: 0;
    visibility: hidden;
  }