@charset "utf-8"; /* popup ================================================================================================== */
.popup {
    min-width: 250px;
    display: flex;
    flex-direction: column
}

.popup.layer {
    overflow: hidden;
    position: fixed;
    border: 15px solid #ffffff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background-color: #ffffff;
    box-shadow: rgba(17, 17, 26, 0.25) 0px 0px 0px, rgba(17, 17, 26, 0.25) 0px 8px 24px, rgba(17, 17, 26, 0.25) 0px 16px 48px;
    z-index: 1000
}

.popup .popup_content {
    width: 100%
}

.popup img {
    max-width: 100%
}

.popup .popup_footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 30px;
    align-items: center;
    margin-top: 10px
}

.popup .popup_footer input[type=checkbox] {
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

.popup .popup_footer .f_close {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    border-right: 1px solid #ddd;
    height: 100%
}

.popup .popup_footer .f_close label {
    color: #999
}

.popup .popup_footer button {
    border: 0;
    height: 30px;
    color: #333;
    background: #fff;
    cursor: pointer
}

.popup .popup_footer:first-child {
    border-right: 1px solid #ddd
}

/* ================================================================================================== popup */