.c-modal-wrap {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    min-width: 500px;
    max-height: calc(100vh - 30px);
    z-index: 1003;
    overflow: auto;
    padding: 2rem;
    background: var(--color-white);
}
.c-modal-wrap.sm {
    max-width: 500px;
    min-width: 300px;
}
.c-modal-wrap.md {
    max-width: 500px;
    min-width: 500px;
}
.c-modal-wrap.lg {
    max-width: 800px;
    min-width: 800px;
}
.c-modal-wrap.xl {
    max-width: 1140px;
    min-width: 1140px;
}
.c-modal-wrap.xxl {
    max-width: 1360px;
    min-width: 1360px;
}

.c-modal-wrap.position-middle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.c-modal-header {
    position: relative;
    margin-bottom: 2rem;
}

.c-modal-close {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.c-modal-close svg {
    width: 30px;
    height: 30px;
    color: var(--color-btngray);
}