


    /* popup disian increase size disian  */
    .magnify-icon {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 20px;
        background: #ffffff80;
        border: 1px solid #E5E7EB;
        border-radius: 6px;
        padding: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 10;
    }
  .magnify-icon img{
    width: 22px;
  }
  .magnify-icon:hover{
    background: #ffffffc9;
  }
    .popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        display: none;
    }
  
    .popup .popup-content {
        width: 90%;
        height: 90%;
        overflow: scroll;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        clip-path: inset(0 round 10px);
    }
  
    .popup img {
        position: absolute;
        top: 0;
        left: auto;
        width: auto;
        max-width: 95%;
        margin: 30px;
        border-radius: 10px;
    }
  
    .popup .close-btn {
        position: fixed;
        top: 4.1%;
        right: 5.5%;
        color: #000;
        font-size: 35px;
        cursor: pointer;
        z-index: 1100;
    }
    body.no-scroll {
        overflow: hidden;
    }