.default-pop-up {
    border: none;
    background: none;
    padding: 15px;
}

.default-pop-up::backdrop {
    background: rgba(0, 0, 0, 0.5);
}

.default-modal__inner-content {
    width: fit-content;
    height: fit-content;
    position: relative;
    padding: 5px;
    border: 2px solid black;
    border-radius: 10px;
    background-color: white;
}

.default-pop-up__close-btn {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 4px;
    right: 6px;
    z-index: 1;
    border: none;
    border-radius: 50%;
    background-color: black;
    font-weight: bold;
    color: white;
    cursor: pointer;
    pointer-events: auto;
}

.close-btn__shadow__green{
    box-shadow: 0px 0px 5px 3px #d2e7d6;
}