
.modal-open-body {
    margin: 0;
    min-height: 100vh;
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.modal .content {
    position: relative;
    padding: 10px;
    width: max-content;
    height: max-content;
    max-height: 60%;
    background-color: #fff;
    box-shadow: rgba(112, 128, 175, 0.2) 0px 16px 24px 0px;
    transform: scale(0);
    transition: transform 300ms cubic-bezier(0.57, 0.21, 0.69, 1.25);
}

.modal .close {
    position: absolute;
    top: -11px;
    right: -16px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: 1px solid red;
    border-radius: 50%;
    background-color: #ff0000;
    clip-path: polygon(0 10%, 10% 0, 50% 40%, 89% 0, 100% 10%, 60% 50%, 100% 90%, 90% 100%, 50% 60%, 10% 100%, 0 89%, 40% 50%);
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal.open .content {
    transform: scale(1);
}

.container.blur {
    filter: blur(5px);
}


