.popup_window {
    position: fixed;
    top: 0;
    left: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    max-width: 500px;
    display: none;
}

.popup_window .content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
}

.popup_window .buttons {
    display: flex;
 justify-content: end;
    gap: 20px;
}

.popup_window img {
    height: 100px;
    width: 100px;
}

.popup_window .btn {
    cursor: pointer;
    padding: 10px 20px;
}

.popup_window .btn.frameles {
    background: transparent;
    border: none;
    color: #0078d1;
}

.popup_window .btn.blue {
    background: #0078d1;
    color: #fff;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .popup_window {
        left: 0;
    }
}