.bg-grey {
    background-color: rgba(244, 244, 244, 1);
}

.bg-jk {
    background: rgba(203, 16, 16, 1) !important;
}

.color-jk {
    color: rgba(203, 16, 16, 1) !important;
}

.color-grey {
    color: rgba(97, 85, 85, 1) !important;
}

.btn-jk{
    border: 2px solid rgba(203, 16, 16, 1) !important;
    border-radius: 10px;
}

.btn-jk:hover{
    border: 2px solid rgba(203, 16, 16, 1) !important;
    background-color: rgba(203, 16, 16, 1) !important;
    color: white !important;
    border-radius: 10px;
}

.sheet {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    visibility: visible;
    transition: opacity 0.5s, visibility 0.5s;
}

.sheet[aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sheet .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.5;
}

.sheet .contents {
    width: 107%;
    display: flex;
    flex-direction: column;

    border-radius: 1rem 1rem 0 0;

    background: var(--background);

    overflow-y: hidden;

    --default-transitions: transform 0.5s, border-radius 0.5s;

    transition: var(--default-transitions);
    transform: translateY(0);

    max-width: 70rem;
    max-height: 100vh;
    height: 30vh;

    box-sizing: border-box;
}

.sheet .contents:not(.not-selectable) {
    transition: var(--default-transitions), height 0.5s;
}

.sheet .contents.fullscreen {
    border-radius: 0;
}

.sheet[aria-hidden="true"] .contents {
    transform: translateY(100%);
}

.sheet .controls {
    display: flex;
}

.sheet .draggable-area {
    width: 80px;
    margin: auto;
    padding: 1rem;
    cursor: grab;
}

.sheet .draggable-thumb {
    margin-left: -17px;
    width: inherit;
    height: 0.25rem;
    background: var(--divider);
    border-radius: 0.125rem;
}

.sheet .close-sheet {
    border: none;
    padding: 0.7rem;
}

.sheet .body {
    flex-grow: 1;
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow-y: auto;
    gap: 1rem;

    /* padding: 1rem; */
    box-sizing: border-box;
}