@import '_content/AnnnyBloxComponents/AnnnyBloxComponents.pgbo12vg1m.bundle.scp.css';
@import '_content/SharedFrontendComponents/SharedFrontendComponents.9y5kb08691.bundle.scp.css';
@import '_content/SignatureUtilities/SignatureUtilities.5lhi8hmlpi.bundle.scp.css';

/* /Components/DocumentEditorCanvas.razor.rz.scp.css */
.canvas-container[b-wjdmjor0vq] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.canvas-relative-container[b-wjdmjor0vq] {
    position: relative;
}

.background-container[b-wjdmjor0vq] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.main-container[b-1nzsyzbxvw] {
    width: 100vw;
    height: 100vh;
}
/* /Pages/Home.razor.rz.scp.css */
.blur-overlay[b-home] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.loading-message[b-home] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-light);
    color: var(--bs-dark);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 20px var(--bs-light);
}

.generic-message[b-home] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-light);
    color: var(--bs-dark);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 20px var(--bs-light);
}

.value-editor-container[b-home] {
    background-color: var(--bs-light);
    color: var(--bs-dark);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 20px var(--bs-light);
}

.project-properties-container[b-home] {
    background-color: var(--bs-light);
    color: var(--bs-dark);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 20px var(--bs-light);
}

.generic-dialog-container[b-home] {
    background-color: var(--bs-light);
    color: var(--bs-dark);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 20px var(--bs-light);
    max-width: calc(100% - 60px);
    max-height: calc(100% - 60px);
    overflow: auto;
}

.main-editor-container[b-home] {
    display: grid;
    grid-template-columns: 250px 1fr 350px;
    grid-template-rows: 60px 1fr 20px;
    grid-template-areas:
    'header header header'
    'left main right'
    'footer footer footer';
    align-items: stretch;
    justify-items: stretch;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: var(--bs-dark);
}

.editor-container[b-home] {
    grid-area: main;
    width: 100%;
    height: 100%;
    max-width: calc(100vw - 250px - 350px);
    max-height: calc(100vh - 60px - 20px);
    overflow: scroll;
}

.sidebar-container[b-home] {
    grid-area: left;
    background-color: var(--bs-gray-700);
    padding: 20px;
    box-shadow: -20px 0 45px var(--bs-light);
    overflow: auto;
    max-height: calc(100vh - 60px - 20px);
}

.properties-objects-container[b-home] {
    grid-area: right;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    background-color: var(--bs-gray-700);
    box-shadow: 20px 0 45px var(--bs-light);
}

.properties-container[b-home] {
    height: 50%;
    max-height: 50%;
    padding: 20px;
    overflow: auto;
    color: var(--bs-light);
}

.objects-container[b-home] {
    height: 50%;
    max-height: 50%;
    overflow: auto;
}

.object-container[b-home] {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background-color: var(--bs-gray-800);
    color: var(--bs-light);
    cursor: pointer;
}

.object-container-active[b-home] {
    background-color: var(--bs-primary);
    cursor: default;
}

.object-container-disabled[b-home] {
    background-color: var(--bs-gray-800);
    color: var(--bs-light);
    cursor: default;
}

.object-text[b-home] {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.move-object-button[b-home] {
    width: 20px;
    height: 20px;
    color: var(--bs-light);
    text-align: center;
    line-height: 20px;
    vertical-align: middle;
    cursor: pointer;
}

.eye-button[b-home] {
    width: 20px;
    height: 20px;
    color: var(--bs-light);
    text-align: center;
    line-height: 20px;
    vertical-align: middle;
    cursor: pointer;
}

.general-property[b-home] {
    margin: 5px;
}

.header-container[b-home] {
    grid-area: header;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00624A;
    padding: 7px;
    box-shadow: 0 -8px 20px var(--bs-light);
}

.footer-container[b-home] {
    grid-area: footer;
    background-color: var(--bs-gray-200);
    padding: 2px;
    box-shadow: 0 8px 20px var(--bs-dark);
    font-size: 0.8rem;
}

.tools-container[b-home] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}

.tool-button[b-home] {
    border-radius: 3px;
    background-color: var(--bs-dark);
    border: 1px solid var(--bs-light);
    color: var(--bs-light);
    padding: 3px;
    width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
    margin: 3px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.tool-button :hover[b-home] {
    background-color: var(--bs-light);
    color: var(--bs-dark);
}

.pages-container[b-home] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.small-page-container[b-home] {
    position: relative;
    padding: 20px;
    cursor: pointer;
    width: 166px;
}

.small-page-container-active[b-home] {
    background-color: var(--bs-primary);
}

.small-page-preview[b-home] {
    width: 126px;
    height: 178px;
}

.small-page-title[b-home] {
    width: 100%;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--bs-light);
    text-align: center;
}

.small-page-action-item[b-home] {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--bs-dark);
    color: var(--bs-light);
    border-radius: 15px;
    text-align: center;
    line-height: 30px;
    vertical-align: middle;
    cursor: pointer;
    z-index: 100;
}

.small-page-action-up[b-home] {
    left: -10px;
    top: 70px;
}

.small-page-action-down[b-home] {
    left: -10px;
    top: 110px;
}

.small-page-action-delete[b-home] {
    right: -10px;
    top: -10px;
}

.small-page-action-add[b-home] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 126px;
    height: 178px;
    background-color: var(--bs-primary);
    color: var(--bs-light);
    cursor: pointer;
    margin: 20px;
    font-size: 1.2rem;
}

.no-page-selected-error[b-home] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--bs-light);
    font-size: 1.4rem;
    font-weight: bold;
}

.small-page-file-input[b-home] {
    position: absolute;
    left: -10px;
    top: -10px;
    max-width: 30px;
    max-height: 30px;
    width: 30px;
    height: 30px;
    z-index: 100;
    color: transparent;
}

.small-page-file-input[b-home]::-webkit-file-upload-button {
    visibility: hidden;
}

.small-page-file-input[b-home]::before {
    content: "\f42a";
    display: block;
    width: 30px;
    height: 30px;
    background-color: var(--bs-dark);
    color: var(--bs-light);
    border-radius: 15px;
    text-align: center;
    line-height: 30px;
    vertical-align: middle;
    cursor: pointer;
    border: 0;
    outline: none;
    -webkit-user-select: none;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dropdown-menu-file-input[b-home] {
    max-width: 200px;
    max-height: 32px;
    color: transparent;
}

.dropdown-menu-file-input[b-home]::-webkit-file-upload-button {
    visibility: hidden;
}

.dropdown-menu-file-input[b-home]::before {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: var(--bs-dark);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    outline: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.dropdown-menu-file-input:hover[b-home]::before {
    color: #1e2521;
    background-color: #EEEEEE;
}

.dropdown-menu-file-input-open[b-home]::before {
    content: 'Open Project';
}

.dropdown-menu-file-input-import[b-home]::before {
    content: 'Import PDF';
}

.dropdown-li[b-home] {
    max-height: 32px;
    cursor: pointer;
}

.user-info-container[b-home] {
    padding: 5px;
}

.user-info[b-home] {
    color: var(--bs-light);
    background-color: rgba(var(--bs-light-rgb), .1);
    border-radius: 5px;
    padding: 5px;
}

.loading-dual-ring[b-home] {
    color: var(--bs-primary);
}

.loading-dual-ring[b-home], .loading-dual-ring[b-home]:after {
    box-sizing: border-box;
}

.loading-dual-ring[b-home] {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.loading-dual-ring[b-home]:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid currentColor;
    border-color: currentColor transparent currentColor transparent;
    animation: loading-dual-ring-b-home 1s linear infinite;
}

@keyframes loading-dual-ring-b-home {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
