.popup-base {
    background-color: #00000070;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    user-select: none;
    -moz-user-select: none;
}

.popup-base>.popup-panel {
    background-color: var(--color-main);
    border-radius: 15px 15px 0px 0px;
    width: 100%;
    height: 150px;
    transform: translate3d(0, 0, 0);
}

.popup-base>.popup-panel>.white-line {
    background-color: #ffffff90;
    border-radius: 25px;
    position: fixed;
    top: 10px;
    width: 15%;
    min-width: 70px;
    max-width: 150px;
    height: 4px;
}

.popup-base>.popup-panel-confirm-check {
    color: var(--color-high-light);
    font-family: var(--font-family-main);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: fit-content;
    padding: 20px;
}

.popup-base>.popup-panel-confirm-check>.confirm-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-base>.popup-panel-confirm-check>.confirm-cancel>button {
    color: var(--color-high-light);
    font-family: var(--font-family-main);
    font-size: 20px;
    margin: 30px 30px 0px 30px;
    border: 0px;
    border: 1px solid var(--color-high-light-darkness-max);
    background: linear-gradient(45deg, #e0e0e050 25%, transparent 25%, transparent 50%, #e0e0e050 50%, #e0e0e050 75%, transparent 75%, transparent);
    background-size: 5px 5px;
}

.popup-base>.popup-panel-confirm-check>.confirm-cancel>button:hover {
    border: 1px solid var(--color-high-light-darkness);
    background: linear-gradient(45deg, #e0e0e025 25%, transparent 25%, transparent 50%, #e0e0e025 50%, #e0e0e025 75%, transparent 75%, transparent);
    background-size: 5px 5px;
}