/*img popup in edit pages*/
:root {
	--bg-tint: rgba(0, 0, 0, 0.5);
}
.ast-help-img-popup-wrapper .ast-help-img {
    display: none;
  }
  
  .ast-popup {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: var(--bg-tint);
    display: none;
    justify-self: center;
    align-items: center;
    z-index: 11;
  }
  
  .show-popup {
    display: flex;
  }
  
  .popuparea {
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 40px;
    position: relative;
  }
  
  .popup-close {
    background: url(/gmap-api/themes/custom/ast_admin/components/dashboard/css/../img/close-ic.png)no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
  }
  
  .pop-up-inner img {
    max-width: 750px;
    max-height: 450px;
    object-fit: contain;
  }
  
  .ast-help-img-popup-wrapper .ast-help-link {
    font-weight: 600;
  }