.razor-modal {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.razor-modal.show {
    display: flex;
    opacity: 1;
}

.razor-modal-lock-container {
    position: absolute;
    right: 40px;
    top: 30px;
}

.razor-modal-lock-container i {
    color: rgba(54, 102, 153, 0.7);
}

.razor-modal-content {
    position: relative;
    width: 80%;
    max-width: 600px;
    max-height: 90%;
    background-color: white;
    border-radius: 0px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.razor-modal-content::-webkit-scrollbar {
    display: none;
}

.razor-modal-content .close {
    position: absolute;
    display: inline-block;
    top: -40px;
    right: 5px;
    cursor: pointer;
    font-size: 30px;
    color: rgb(232, 232, 232);
}

.razor-modal-content .close svg {
    fill: currentColor;
    transform: rotate(0) scale(0.8);
    transition: 0.1s ease-out;
}

.razor-modal-content .close:hover svg {
    color: white;
    transform: rotate(90deg) scale(1);
}

.razor-no-frame {
    padding: 0 !important;
    max-height: none !important;
    max-width: none !important;
    width: auto;
    height: auto;
}