@font-face {
    font-family: "Salesforce Sans";
    font-weight: 300;
    font-style: normal;
    font-display: auto;
    src: URL('./fonts/webfonts/SalesforceSans-Light.ttf') format('truetype')
}

@font-face {
    font-family: "Salesforce Sans";
    font-weight: 400;
    font-style: normal;
    font-display: auto;
    src: URL('./fonts/webfonts/SalesforceSans-Regular.ttf') format('truetype')
}

@font-face {
    font-family: "Salesforce Sans";
    font-weight: 700;
    font-style: normal;
    font-display: auto;
    src: URL('./fonts/webfonts/SalesforceSans-Bold.ttf') format('truetype')
}

@font-face {
    font-family: 'MonsieurLaDoulaise';
    src: URL('./fonts/monsieur-la-doulaise/MonsieurLaDoulaise-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'MrsSaintDelafield';
    src: URL('./fonts/mrs-saint-delafield/MrsSaintDelafield-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'pwsignaturetwo';
    src: URL('./fonts/pwsignaturetwo/PWSignaturetwo.ttf') format('truetype');
}

@font-face {
    font-family: 'rochestersignature';
    src: URL('./fonts/rochester-signature/Rochester\ Signature\ Regular.ttf') format('truetype');
}

maven-pdf-prepare, maven-pdf-sign, maven-wrapper, maven-pdf-manage, maven-dashboard, maven-toasts {

    font-family: 'Salesforce Sans', Arial, sans-serif !important;

}

::-webkit-scrollbar {
    width: 1px;
}

::-webkit-scrollbar:horizontal {
    height: 1px;
}

::-webkit-scrollbar-track {
    background: transparent
}

::-webkit-scrollbar-thumb {
    background: #ababab; 
}

::-webkit-scrollbar-thumb:hover {
    background: #bcbcbc; 
}

html, body {
    height: 100%;
}

body.is-commenting-mode,
body.is-commenting-mode * {
  cursor: url('../icons/comment-cursor.svg') 2 23, auto;
}

.comment-editor {
    position: absolute;
    width: 300px;
    background-color: #ffffff;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,.10);
    z-index: 9001;
    display: flex;
    flex-direction: column;
    border: none; 
}

.comment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    z-index: 9000;
    display: flex;
}

.comment-editor::after {
    content: '';
    position: absolute;
    top: -9px; 
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    filter: drop-shadow(0 -1px 1px rgba(0,0,0,.10));
}

.comment-editor.is-flipped::after {
    left: auto;
    right: 20px;
}

.comment-editor-textarea {
    width: 100%;
    min-height: 100px;
    padding: .5rem;
    border: none;
    border-bottom: 1px solid #dddbda;
    font-size: 14px;
    resize: vertical;
}

.comment-visibility-control {
    position: relative;
    display: flex;
    align-items: center;
}

.comment-visibility-menu {
    position: absolute;
    top: 100%;
    left: 80px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 9002;
    padding: 0.25rem 0;
    display: flex; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.comment-visibility-control:hover .comment-visibility-menu {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.1s;
}

.comment-visibility-menu ul {
    width: 100%;
}

.comment-editor-textarea:focus {
    outline: none;
}

.comment-editor-footer {
    display: flex;
    justify-content: space-between;
    padding: .5rem;
    background-color: #f3f2f2;
}

.visibility-checkmark-icon {
    visibility: hidden;
    color: #f15e32;
    fill: #f15e32
}

.mm-slds-listbox__item.is-selected {
    background-color: #f3f2f2;
}

.mm-slds-listbox__item.is-selected .visibility-checkmark-icon {
    visibility: visible;
}

.comment-item {
    list-style: none;
    padding: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.comment-header {
    display: flex;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: bold;
    font-size: 14px;
    display: block;
}

.comment-timestamp {
    font-size: 10px;
    color: #555;
    display: block;
}

.comment-body p {
    margin: 0;
    font-size: 14px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.comment-footer {
    margin-top: 0.5rem;
    text-align: right;
}

.no-comments-message {
    list-style: none;
    padding: 2rem 1rem;
    text-align: center;
    color: #555;
}

.mm-slds-panel__body.comments-panel-body {
    width: 15rem;
}

.inline-reply-editor {
    margin-top: 0.5rem;
}
.inline-reply-textarea {
    width: 100%;
    min-height: 60px;
    border: 1px solid #ccc;
    padding: .25rem;
    outline: none;
}
.inline-reply-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.comment-reply {
    border-left: 2px solid #f0f0f0;
}

.comment-pin {
    position: absolute;
    width: 48px;
    height: 48px;
    background-color: #f15e32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.comments-panel-is-open .comment-pin {
    opacity: 0.9;
    visibility: visible;
}

.comment-pin:hover,
.comment-pin.is-highlighted {
    transform: scale(1.3);
}

@keyframes wiggle {
    0%, 100% { 
        transform: translateX(0); 
    }
    25% { 
        transform: translateX(-3px);
    }
    75% { 
        transform: translateX(3px);
    }
}

.comment-item.is-pulsing {
    animation: wiggle 0.5s ease-out forwards;
}

.mm-slds-tabs_default__item.header-tab-item[id="home"] {
    height: 100%;
    width: 3rem;
    padding: 0;
}

.mm-slds-tabs_default__item.header-tab-item[id="home"]::after {
    display: none;
}


.home-logo-icon {
    height: 1.75rem;
    width: 1.75rem;
}

.home-logo-icon:hover {
    filter: brightness(0.9);
    cursor: pointer;
}

.pdf-container {

    height: 100%;

}

.pdf-center-area {

    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    overflow: auto;

}

.pdf-content-area {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: calc(100% - 15rem);
}

.pdf-inner-content {
    display: flex;
    flex-direction: row;
    height: calc(100% - 4rem);
}

.pdf-pages-container {

    width: 100%;
    height: 100%;
    overflow: auto;
    position: relative;
    background-color: #f8f8f8;
    user-select: none;
    outline: none !important;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.pdf-canvas-container {

    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    user-select: none;
    outline: none !important;
    transform-origin: top left;
    transition: scale 150ms ease-in-out;

}

.pdf-canvas {

    user-select: none;
    border: 1px solid rgb(220 220 220);

}

.pdf-canvas-sidebar {

    margin: 8% auto;
    cursor: pointer;
    border: 1px solid rgb(220 220 220);

}

.documents-panel-item {

    position: relative;
    margin: 0.75rem auto;
    width: fit-content;
    user-select: none;

}

.documents-panel-item::before {

    content: '';
    position: absolute;
    top: 0; 
    right: 0;
    border-top: 20px solid white;
    border-left: 20px solid rgb(220 220 220);
    width: 0px;

}

.documents-panel-item:has(>.pdf-canvas-preview:hover)::before{
    border-left: 20px solid #faa389;
}

.documents-panel-item:has(>.pdf-canvas-preview.selected)::before{
    border-left: 20px solid #f15e32;
}

.pdf-canvas-preview {

    width: 102px;
    height: 130px;
    cursor: pointer;
    border: 1px solid rgb(220 220 220);  

}

.pdf-canvas-sidebar:hover,
.pdf-canvas-preview:hover {

    border-color:#faa389;

}

.pdf-canvas-sidebar.selected,
.pdf-canvas-preview.selected {

    border-color: #f15e32;
    border-width: 2px;

}

.document-under-preview {

    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.75;
    padding: 0.25rem;

}

.document-under-preview:last-child {
    margin-bottom: 0.75rem;
}

.document-name-preview {
    height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 0.25rem;
}

.documents-panel .document-under-preview .mm-slds-button {
    width: 16px;
    height: 16px;
}

.pdf-canvas-overlay {

    margin-right: 6rem;
    position: relative;

}

.pdf-canvas-overlay+.pdf-canvas-overlay {
    margin-top: 6rem;
    margin-bottom: 6rem; 
}

.pdf-canvas-overlay:last-child {
    margin-bottom: 6rem;
}

.pdf-under-page {
    display: flex;
    justify-content: space-between;
    opacity: 0.5;
    padding: 0.25rem;
    font-size: 2rem;
}

.pdf-sidebar-under-page {
    text-align: center;
    width: 100%;
    opacity: 0.75;
}

.pdf-canvas-overlay.dropzone {

    opacity: 0.5;

}

.pdf-canvas-overlay.dropzone-highlight {

    opacity: 1;

}

.pdf-overlay-element {

    position: absolute;
    border: 2px dashed rgba(241, 94, 50, 0.75);
    background-color: rgba(0, 0, 0, 0.03);
    cursor: pointer;
    overflow: hidden; 
    max-width: 100%;
    max-height: 100%;
    font-family: Helvetica;
    word-wrap: break-word;
    text-align: left;
    padding: 0.3%;

}

.pdf-overlay-element-sign {
    background-color: rgba(0, 0, 0, 0.03);
}

.pdf-overlay-element-sign.guided-field {
    background-color: rgba(241, 94, 50, 0.33);
}


.pdf-overlay-element.pdf-overlay-element-edit {
    
    width: 100px;
    height: 35px;
    cursor: grab;    
    resize: both;       

}

.pdf-overlay-element.pdf-overlay-element-edit:has(input[type="radio"]),
.pdf-overlay-element.pdf-overlay-element-edit:has(input[type="checkbox"]),
.pdf-overlay-element-checkbox,
.pdf-overlay-element-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px !important;
}

.pdf-overlay-element-attachment {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px !important;
}

.pdf-overlay-element-checkbox-input {

    min-width: 50%;
    min-height: 50%;

}

.pdf-overlay-element-radio-input {

    min-width: 50%;
    min-height: 50%;

}

.pdf-overlay-element-actions {

    position: absolute;

}

.pdf-component-container {

    display: flex;
    flex-direction: column;
    height: 100%;

}

.pdf-component-header {

    padding: 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgb(220 220 220);
    height: 2.5rem;

}

.module-header {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 1px solid rgb(220 220 220);
    height: 4rem;
    min-height: 4rem;
    padding: 0.75rem;

}

.module-header-icon {
    background-color: #f15e32;
    height: 2.5rem;
    width: 2.5rem;
    margin-right: 0.5rem;

    display: flex;
    justify-content: center;
    align-items: center;
}

.module-header-icon-container .mm-slds-media__body {
    height: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.module-header-title {
    display: block;
    color: #080707;
    font-size: 1.125rem;
    font-weight: 700;
    overflow: hidden;
}

.module-header-subtitle {
    display: block;
    height: 13px;
    line-height: 13px;
    color: #3e3e3c;
}

.module-header-icon svg {
    fill: #ffffff;
    padding: 4px;
}

.pdf-component-header .mm-slds-tabs_default__nav {

    height: 2.5rem;
    border-bottom: none;

}

.pdf-component-footer {

    background-color: #f9f9f9;
    border-top: 1px solid rgb(220 220 220);
    padding: 10px;

}

.pdf-header-actions {

    display: flex;
    justify-content: center;
    align-items: center;

}

.pdf-header-actions .mm-slds-col {
    padding-left: .75rem;
    padding-right: .75rem;
}    

.action-divider {
    background: #5e5e5e;
    opacity: 0.4;
    height: 50%;
    width: 1px;
    margin-left: 8px;
    margin-right: 8px;
}

.action-divider.horizontal {
    height: 1px;
    width: 50%;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.pdf-header-actions .mm-slds-button.main-action {
    position: absolute;
    z-index: 10;
    top: 0.75rem;
    right: 2rem;

    height: 3.5rem;
    width: 3.5rem;

    border-radius: 100%;

    background-color: #e45125;
}

.pdf-header-actions .mm-slds-button.main-action:hover {

    filter: brightness(0.9);

}

.pdf-header-actions .main-action svg,
.pdf-header-actions .main-action:active svg,
.pdf-header-actions .main-action:focus svg,
.pdf-header-actions .main-action:hover svg {

    fill: #ffffff;
    height: 1.5rem;
    width: 1.5rem;

}

.pdf-header-actions .mm-slds-button.main-action:disabled,
.pdf-header-actions .mm-slds-button.main-action:disabled:hover {
    background-color: var(--mm-sds-c-button-brand-color-background-disabled, #c9c7c5);
    filter: none;
}

.pdf-header-actions .mm-slds-button.main-action:disabled svg {
    fill: #ffffff;
}


.pdf-header-actions .mm-slds-button.user-button {
    position: absolute;
    z-index: 10;
    top: 0.25rem;
    right: 0.5rem;

    height: 1.5rem;
    width: 1.5rem;

    border-radius: 100%;

    background-color: #706e6b;
}

.pdf-header-actions .mm-slds-button.user-button:hover {

    filter: brightness(0.9);

}

.pdf-header-actions .user-button svg,
.pdf-header-actions .user-button:active svg,
.pdf-header-actions .user-button:focus svg,
.pdf-header-actions .user-button:hover svg {

    fill: #ffffff;
    height: 1rem;
    width: 1rem;

}

.pdf-header-actions .mm-slds-button.settings-button {
    position: absolute;
    z-index: 10;
    top: 0.5rem;
    right: 6rem;

    height: 1.5rem;
    width: 1.5rem;

    border-radius: 100%;

    background-color: white;
}

.pdf-header-actions .mm-slds-button.settings-button:hover {

    filter: brightness(0.9);

}

.pdf-header-actions .settings-button svg,
.pdf-header-actions .settings-button:active svg,
.pdf-header-actions .settings-button:focus svg,
.pdf-header-actions .settings-button:hover svg {

    fill: #706e6b;
    height: 1rem;
    width: 1rem;

}

.user-button-dropdown {
    display: none;
}

.user-button-dropdown.mm-slds-is-open {
    position: absolute;
    top: 1rem;
    right: 1rem;
    left: unset;
    transform: none;
    -webkit-transform: none;
    width: 200px;
    display: block !important;
}


.pdf-header-actions .mm-slds-button.mm-slds-button_icon:focus,
.pdf-header-actions .mm-slds-button.mm-slds-button_icon:active {
    border: none;
    box-shadow: none;
    color: #706e6b;
}

.pdf-url-file-input {

    width: initial;

}

.pdf-file-selector {

    width: 200px;

}

.pages-panel, .signatures-panel, .attachments-panel, .comments-panel {

    position: absolute;
    right: 2.5rem;
    height: calc(100% - 6.5rem);
    border-left: 1px solid rgb(220 220 220);

}

.pages-panel.mm-slds-is-open,
.signatures-panel.mm-slds-is-open,
.attachments-panel.mm-slds-is-open,
.comments-panel.mm-slds-is-open {

    display: flex;
    flex-direction: column;

}

.comments-panel-body {
    padding: 0px;
}

.signatures-panel .mm-slds-panel__header,
.attachments-panel .mm-slds-panel__header {
    height: 40px;
}

.signatures-panel .mm-slds-panel__body,
.attachments-panel .mm-slds-panel__body {
    height: 100%;
    overflow: scroll;
}

.attachments-panel .mm-slds-panel__body {
    padding: 0;
}
.signatures-panel .module-no-results,
.attachments-panel .module-no-results {
    width: 15rem;
    height: 100%;
}

.edit-field-panel.mm-slds-is-open {

    display: flex;
    flex-direction: column;

}

.toolbox.mm-slds-is-open {
    display: flex;
    flex-direction: column;
}

.pages-panel .mm-dropdown,
.toolbox .mm-dropdown {
    width: 100%;
}

.pages-panel .mm-slds-panel__header,
.toolbox .mm-slds-panel__header {
    padding: 0px;
    height: 2.5rem;
}

.pages-panel .mm-slds-panel__header input,
.toolbox .mm-slds-panel__header input {
    background-color: unset;
}

.mm-slds-input.documents-selected-name,
.mm-slds-input.documents-selected-name:active,
.mm-slds-input.documents-selected-name:focus,
.mm-slds-input.signer-dropdown-selected-value,
.mm-slds-input.signer-dropdown-selected-value:active,
.mm-slds-input.signer-dropdown-selected-value:focus {
    padding: 0.75rem;
    padding-right: 2rem;
    min-height: unset;
    line-height: unset;
    border: none !important;
    box-shadow: none !important;
    text-overflow: ellipsis;
}

[role=combobox] input[readonly].signer-dropdown-selected-value {
    padding-left: 2.5rem;
}

.pages-panel-body, .signatures-panel-body, .attachments-panel-body, .comments-panel-body {

    overflow: auto;
    height: 100%;
    scrollbar-width: none;

}

.pages-panel-body::-webkit-scrollbar,
.signatures-panel-body::-webkit-scrollbar,
.attachments-panel::-webkit-scrollbar,
.comments-panel-body::-webkit-scrollbar {
  display: none;
}

.edit-field-panel-body {
    overflow: auto;
    height: 100%;
}

.signature-image {

    min-width: 100%;
    min-height: 100%;
    contain: strict;
    user-select: none;

}

.font-signature-input {
    width: 100%;
    border-radius: 0px;
    height: 40px;
}

.font-inputs-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
    width: 800px;
}

.font-text-input-container {
    width: 50%;
    margin-right: 4px;
}

.signature-pad-container .mm-dropdown {
    width: 50%;
}

.signature-pad-container .mm-slds-form-element__control {
    height: 100%;
}

.signature-pad-container .mm-slds-combobox_container {
    height: 100%;
}

.signature-pad, .font-pad, .file-pad, .saved-pad {

    border: 1px solid;
    height: 300px;
    width: 800px;
    max-width: unset;

}

.signature-pad-container {

    display: flex;
    flex-direction: column;
    align-items: center;

}

.signature-confirm-modal-container>section {

    z-index: 9999999;

}

.drawing-image {

    min-width: 100%;
    min-height: 100%;
    contain: strict;
    user-select: none;

}

.drawing-pad {

    border: 1px solid;

}

.drawing-pad-container {

    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;

}

.text-align-center {

    display: flex;
    align-items: center;

}

.full-width {

    width: 100%;

}

.no-select {

    user-select: none;

}

.no-border {

    border: unset;

}

.dragging {

    opacity: 0.5;

}

.pdf-file-name {

    display: flex;
    align-items: center;
    justify-content: center;

}

.inline-flex {

    display: inline-flex;

}

.edit-field-panel, .signers-panel, .documents-panel, .toolbox {

    width: 15rem;
    border-right: 1px solid rgb(220 220 220);

}

.toolbox .mm-slds-pill+.mm-slds-pill {
    margin-left: unset;
}

.toolbox .mm-slds-pill {
    padding: 0.75rem;
    border-radius: 0px;
    border: none;
    cursor: grab;
}

.toolbox .mm-slds-pill--link .mm-slds-pill__icon_container, .mm-slds-pill_link .mm-slds-pill__icon_container {
    left: unset;
}

.toolbox .mm-slds-panel__header {
    padding: 0px;
}

.toolbox .mm-slds-panel__body {
    padding: 0px;
}

.selected-signer-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    bottom: 50%;
}

.html-content-viewer .mm-slds-button.pdf-add-document-button,
.html-content-sign .mm-slds-button.pdf-add-document-button {
    display: none;
}

.html-content-viewer .signers-bottom-options,
.html-content-sign .signers-bottom-options{
    pointer-events: none
}

.html-content-viewer .pdf-add-signer-button,
.html-content-viewer .pdf-add-group-button {
    display: none;
}

.status-icon {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
}

.mandatory-icon {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
}

.mandatory-icon svg {
    fill: #ff9900;
}

.add-group-modal-container .mm-slds-form-element.mandatory-container,
.add-signer-modal-container .mm-slds-form-element.mandatory-container,
.add-group-modal-container .mm-slds-form-element.mfa-container,
.add-signer-modal-container .mm-slds-form-element.mfa-container {
    padding-top: 0.5rem !important;
    display: flex;
    align-items: center;
}

.mfa-modal-container section {
    z-index: 9999;
}

.mm-slds-button.pdf-add-signer-button,
.mm-slds-button.pdf-add-document-button,
.mm-slds-button.pdf-add-group-button,
.mm-slds-button.add-comment-button {
    padding: 0.5rem;
    width: 100%;
    height: 2.5rem;

    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid rgb(220 220 220);
}

.mm-slds-button.pdf-add-signer-button,
.mm-slds-button.pdf-add-document-button,
.mm-slds-button.pdf-add-signer-button:active,
.mm-slds-button.pdf-add-document-button:active,
.mm-slds-button.pdf-add-signer-button:focus,
.mm-slds-button.pdf-add-document-button:focus,
.mm-slds-button.pdf-add-group-button,
.mm-slds-button.pdf-add-group-button:active,
.mm-slds-button.pdf-add-group-button:focus,
.mm-slds-button.add-comment-button,
.mm-slds-button.add-comment-button:active,
.mm-slds-button.add-comment-button:focus {
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid rgb(220 220 220);

    box-shadow: none;
}

.mm-slds-button.pdf-add-group-button {
    margin-left: 0px !important;
}

.small-add-svg {
    width: 8px; 
    height: 8px; 
    margin-right: 2px
}

.documents-panel .mm-slds-panel__body,
.signers-panel .mm-slds-panel__body {
    padding: 0px;
    display: flex;
    flex-direction: column;
    height: 100%
}

.signers-panel-list {
    user-select: none;
}

.signers-panel .mm-slds-box {
    border: none;
}

.signers-bottom-options {
    width: 15rem;
    height: 3rem;
    padding: 0.5rem;
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: auto;
    border-top: 1px solid rgb(220 220 220);
}

.pdf-view-panel {

    width: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-left: 1px solid rgb(220 220 220);
    border-radius: 0px !important;
    overflow: visible;

}

.pdf-view-panel .mm-slds-button.mm-slds-button_icon {
    border: none;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0.25rem;
}

.pdf-view-panel .mm-slds-button.mm-slds-button_icon:focus,
.pdf-view-panel .mm-slds-button.mm-slds-button_icon:active {
    border: none;
    box-shadow: none;
    color: #706e6b;
}

.pdf-view-panel-top, .pdf-view-panel-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pdf-view-panel-top, .pdf-view-panel-bottom .mm-slds-button:last-child {
    margin-bottom: 0.25rem;
}

.selected-field-type,
.selected-field-type:focus,
.selected-field-type:active,
.selected-field-type:hover {
    background-color: #e8eaec;
}

.field-error {
    border: 2px solid red;
}

.align-button-group {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.mm-slds-modal .pdf-url-file-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.mm-slds-modal .pdf-url-file-input {

    width: 79%;

}

.mm-slds-modal .pdf-url-file-button {

    width: 20%;

}

.mm-slds-file-selector__dropzone {
    min-height: 200px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

.mm-slds-file-selector__dropzone.dragover-active {
    border-color: #f15e32;
}

.edit-field-panel .mm-slds-form-element {
    margin-bottom: 4px;
}

input[type="color"] {
	width: 32px;
	height: 32px;
    padding: 0px;
}
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}
input[type="color"]::-webkit-color-swatch {
	border: none;
}

.edit-field-panel .edit-field-panel-top-buttons .mm-slds-button,
.edit-field-panel .edit-field-panel-top-buttons .mm-slds-button:active,
.edit-field-panel .edit-field-panel-top-buttons .mm-slds-button:focus {
    width: 100%;
    height: 2.5rem;
    padding: 0.5rem;

    border-bottom: 1px solid rgb(220 220 220);
    border-right: none;
    border-left: none;
    border-top: none;

    box-shadow: none;
}

.mm-slds-panel .mm-slds-button.active-button {

    background-color: #e45125;
    border-color: #e45125;
    
}

.mm-slds-panel .mm-slds-button.active-button svg {

    fill: #ffffff;
    
}

.mm-slds-modal__title.mm-slds-hyphenate {
    white-space: initial;
}

.module-no-results {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #f8f8f8 !important;
}
.module-no-results .mm-slds-illustration.mm-slds-illustration_large {
    max-width: 400px;
}
.module-no-results button {
    margin-top: 24px;
}
.module-no-results .mm-slds-illustration__svg {
    opacity: 0.8;
}
.module-no-results .mm-slds-illustration__header {
    margin-bottom: 10px;
}
.module-no-results .mm-slds-illustration__header,
.module-no-results .mm-slds-text-body_regular {
    opacity: 0.6;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.module-no-results .mm-slds-illustration .mm-slds-illustration__stroke-secondary {
    stroke: #dddddd !important;
}
.module-no-results .mm-slds-illustration .mm-slds-illustration__stroke-primary {
    stroke: #bebebe !important;
}
.module-no-results .mm-slds-illustration .mm-slds-illustration__fill-primary {
    fill: #bebebe !important;
}
.module-no-results .mm-slds-illustration .mm-slds-illustration__fill-secondary {
    fill: #dddddd !important;
}

.add-overlay-element-button {
    position: absolute;
    top: 2%;
    right: 2%;
}

.add-overlay-element-button svg,
.mm-slds-button.add-overlay-element-button:hover svg,
.mm-slds-button.add-overlay-element-button:active svg,
.mm-slds-button.add-overlay-element-button:focus svg {
    fill: #7a7a7a;
}

.header-tabs .mm-slds-tabs_default__item {
    width: 7.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header-tabs .tab-icon {
    display: none;
}

.font-templates-dropdown .mm-slds-dropdown {
    max-height: calc(((1rem * 1.5) + 1.5rem) * 5);
}

.font-templates-dropdown .mm-slds-listbox__item {
    height: 3.5rem;
}

.font-templates-dropdown .mm-slds-media {
    height: 100%;
}

.font-templates-dropdown .mm-slds-media__body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: large;
}

.signature-file-pad-container {
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.signature-upload-input-loaded-reset {
    margin-bottom: 0.25rem;
}

.mm-slds-collections .item_box {
    margin: 5px;
    border-radius: 0px;
    border: 1px solid #c9c7c5;
    padding: 8px;
    display: inline-block;
    min-width: 80%;
}

.mm-slds-collections .item-container-inner {
    display: flex;
    flex-direction: column;
}
.mm-slds-collections .item-container-inner>p:first-child {
    color: #212529b3 !important;
    white-space: break-spaces;
}

.mm-slds-collections .first-line {
    display: inline-flex;
}

.mm-slds-collections .first-line .queryObject {
    white-space: nowrap;
    width: 80%;
    font-weight: 600;
    font-size: 12px;
    margin-left: 4px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.mm-slds-collections .first-line .queryDesc {
    font-size: 12px;
    margin-left: 4px;
    flex-shrink: 0;
}

.mm-slds-collections .item-container {
    padding: 0.75rem;
    border-radius: 0px;
    cursor: pointer;
}

.mm-slds-collections .item-container:hover {
    background: #f4f6f9;
}

.mm-slds-collections .item-container:hover .item-delete {
    visibility: visible;
}

.mm-slds-collections .item-container:hover .item-edit {
    visibility: visible;
}

.mm-slds-collections .item-delete {
    position: absolute;
    visibility: hidden;
    top: 0px;
    right: 0px;
    width: 34px;
    height: 34px;
    box-shadow: none !important;
}

.mm-slds-collections .item-edit {
    position: absolute;
    visibility: hidden;
    top: 0px;
    right: 24px;
    width: 34px;
    height: 34px;
    box-shadow: none !important;
}

.mm-slds-collections .second-line {
    opacity: 0.7;
    margin-top: 4px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.mm-slds-collections ul li {
    margin-bottom: 8px;
}

.mm-slds-button.mm-slds-modal__close {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    color: #f15e32;
}


.mm-slds-button.mm-slds-modal__close:focus,
.mm-slds-button.mm-slds-modal__close:active {
    border: none;
    box-shadow: none;
}

.mm-slds-button.mm-slds-modal__close:hover {
    color: #e45125;
}

.download-pdf-list {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-pdf-item {
    width: 100%;
    margin: 0.25rem;
}

.download-pdf-item .mm-slds-col_bump-left {
    justify-content: flex-end;
    display: flex;
}

.download-envelope-modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 0.75rem 0 0.75rem;
}

.disclosure-modal-container .mm-slds-modal__content {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.disclosure-modal-container #mmcwTermsContainer {
    height: 300px;
    width: 100%;
    word-wrap: break-word;
    display: block;
    overflow: scroll;
}

.disclosure-modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.75rem;
}

.download-envelope-modal-footer .mm-slds-button,
.disclosure-modal-footer .mm-slds-button {
    width: 100%;
}

.disclosure-modal-container a {
    color: #f15e32;
}

.single-file-upload {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.25rem;
}

.file-upload-input-loaded,
.create-envelope-input-loaded {
    width: 100%;
    height: 140px;
    overflow-y: scroll;
}

.file-upload-input-loaded-file-name,
.create-envelope-input-loaded-file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    height: 16px;
    white-space: nowrap;
    text-align: center;
    margin: 0.5rem;
}

.top-bar {
    width: 100%;
    height: fit-content;
    margin: 0px;
    padding: 0px;
    max-width: none;
    position: relative;
    top: 0px;

}

.under-modal {
    height: 100%;
}

.top-bar .mm-slds-modal__header {
    padding: 0;
    border-bottom: 1px solid rgb(220 220 220);
}

.top-bar .mm-slds-modal__content {
    padding: 1rem 30%;
}

.top-bar .mm-slds-input {
    height: 2.5rem;
    font-size: 18px;
}

.top-bar .mm-slds-textarea {
    font-size: 18px;
}

.add-signer-modal-container .top-bar .mm-slds-modal__content {
    overflow: visible;
}

.add-group-modal-container .top-bar .mm-slds-modal__content {
    overflow: visible;
}

.add-signature-modal-container .top-bar .mm-slds-modal__content,
.add-digital-signature-modal-container .top-bar .mm-slds-modal__content,
.edit-signature-modal-container .top-bar .mm-slds-modal__content {
    padding: 0;
    overflow: visible;
}

.add-signature-modal-container .top-bar .mm-slds-tabs_default__content,
.add-digital-signature-modal-container .top-bar .mm-slds-tabs_default__content,
.edit-signature-modal-container .top-bar .mm-slds-tabs_default__content {
    height: 400px;
    padding: 1rem 0;
}

.add-signature-modal-container .top-bar .mm-slds-tabs_default__content#import,
.add-digital-signature-modal-container .top-bar .mm-slds-tabs_default__content#import,
.edit-signature-modal-container .top-bar .mm-slds-tabs_default__content#import {
    height: 400px;
    padding: 1rem 1rem;
}

.delete-confirm-modal-container .mm-slds-modal__content {
    text-align: center;
}

.document-signed-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    height: 100%; 
    background: #f8f8f8;
}

.document-signed-body {
    height: 300px; 
    width: 500px; 
    border: 1px solid #dcdcdc; 
    background: #ffffff; 
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.return-home-button, n {
    width: 100%;
    height: 2.5rem;
    color: #f15e32;
    background-color: #ffffff;
}

.return-home-button:hover,
.return-home-button:active,
.return-home-button:focus {
    color: #f15e32 !important;
    background-color: #f4f6f9 !important;
}

.next-document {
    margin: 3% 3% 0 3%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.next-document-button {
    width: 600px;
    height: 2.5rem;
    color: #f15e32;
    background-color: transparent;
}

.next-document-button:hover,
.next-document-button:active,
.next-document-button:focus {
    color: #f15e32 !important;
    background-color: transparent !important;
}

.mm-ds-logo {
    height: 50px;
    width: 246px;
}

.mm-logo-container {
    width: 500px;
    padding: 4px;
    justify-content: end;
    display: flex;
}

.mm-about-container {
    width: 500px;
    padding: 4px;
    color: #3e3e3c;
}

.mm-about-container a {
    color: #3e3e3c;
    text-decoration: underline;
}

.mm-logo {
    height: 30px;
    width: 100px;
}

.invalid-input {
    border: 1px solid red !important;
}

.resend-email {
    color: #f15e32 !important;
}

.sign-guide {
    position: absolute;
    background-color: transparent;
    height: 5.5rem;
    width: 2.5rem;
    left: 15.75rem;
    top: 7rem;
    z-index: 999;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    cursor: pointer;
    transition: top, width;
    transition-duration: 0.2s;

}

.sign-guide svg {
    fill: #ffffff
}

.guide-rectangle {
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    background-color: #f15e32;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.guide-rectangle.guide-edit {
    background-color: #c9c7c5;
    pointer-events: none;
}

.guide-rectangle:hover {
    background-color: #e45125;
}

.signature-pad-buttons {
    display: flex;
    flex-direction: row;
}

.pdf-zoom-slider-container {
    display: none;
}

.pdf-zoom-value {
    transform: rotate(180deg);
    padding: 0 0 0.25rem 0;
    font-size: 12px;
}


.pdf-zoom-slider-container.mm-slds-is-open {
    position: absolute;
    display: block;
    right: 3rem;
    bottom: 1rem;
    padding: 0.5rem;
    background-color: white;
    border: 1px solid rgb(220 220 220);
    z-index: 10;
    transform: rotate(180deg);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    width: 3rem;
}

.pdf-zoom-slider-input {
    writing-mode: vertical-lr;
    -webkit-appearance: none;
    appearance: none;
    height: 100px;
    width: 4px;
    background-color: transparent;
}

.pdf-zoom-slider-input::-webkit-slider-runnable-track {
    background: #f15e32;
    width: 4px;
    height: 100%;
    border-radius: 4px;
}

.pdf-zoom-slider-input::-webkit-slider-thumb {
    background: white;
    border: 1px solid #e45125;
    height: 12px;
    width: 12px;
    margin-left: -4px;
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.pdf-zoom-slider-input::-moz-range-track {
    background: #f15e32;
    width: 4px;
    height: 100%;
    border-radius: 4px;
}

.pdf-zoom-slider-input::-moz-range-thumb {
    background: white;
    border: 1px solid #e45125;
    height: 12px;
    width: 12px;
    margin-left: -4px;
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.certificate-badge-icon {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    display: flex;
}

.certificate-badge-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.certificate-tooltip {
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #7a7a7a;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 999;
    white-space: pre;
    display: block;
    opacity: 0;
    visibility: hidden;
    font-family: monospace;
}

.certificate-item {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgb(220 220 220);
}

.file-upload-modal-container .mm-slds-modal__content,
.add-attachment-modal-container .mm-slds-modal__content {
    padding: 2.5rem 1rem 1rem 1rem;
}

file-picker {
    height: 500px;
    width: 100%;
    display: block;
}

#import file-picker {
    height: 100% !important;
}

.pdf-overlay-element-attachment svg {
    width: 30%;
    height: 30%;
}

.attachment-item {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgb(220 220 220);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.attachment-item:hover {
    background: #f9f9f9;
}

.attachment-name {
    flex: 1 1 auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.875rem;
}

.download-attachment-icon {    
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion-content {
    display: flex;
    padding: 10px;
    border-top: none;
    flex-direction: column;
}
.accordion-button {
    cursor: pointer;
    padding: 10px;
    width: 100%;
    background-color: #f1f1f1;
    text-align: left;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    border-width: 0px !important;
}

/** SLDS OVERRIDES **/
.mm-slds-checkbox .mm-slds-checkbox__label .mm-slds-form-element__label {
    user-select: none;
}

.mm-slds-spinner--brand .mm-slds-spinner__dot-a:after,
.mm-slds-spinner--brand .mm-slds-spinner__dot-a:before,
.mm-slds-spinner--brand .mm-slds-spinner__dot-b:after,
.mm-slds-spinner--brand .mm-slds-spinner__dot-b:before,
.mm-slds-spinner--brand.mm-slds-spinner:after,
.mm-slds-spinner--brand.mm-slds-spinner:before,
.mm-slds-spinner_brand .mm-slds-spinner__dot-a:after,
.mm-slds-spinner_brand .mm-slds-spinner__dot-a:before,
.mm-slds-spinner_brand .mm-slds-spinner__dot-b:after,
.mm-slds-spinner_brand .mm-slds-spinner__dot-b:before,
.mm-slds-spinner_brand.mm-slds-spinner:after,
.mm-slds-spinner_brand.mm-slds-spinner:before {

    background-color: #f15e32;

}

.mm-slds-gutters {

    margin-right: initial;

}

.mm-slds-file-selector__input:focus~.mm-slds-file-selector__body>.mm-slds-file-selector__button {
    -webkit-box-shadow: 0 0 3px #f15e32;
    box-shadow: 0 0 3px #f15e32
}

.mm-slds-button:focus {

    box-shadow: 0 0 3px #f15e32;

}

.mm-slds-input:focus,
.mm-slds-input:active {

    border-color: #f15e32 !important;
    box-shadow: 0 0 3px #f15e32 !important;

}

.mm-slds-textarea:focus,
.mm-slds-textarea:active {

    border-color: #f15e32 !important;
    box-shadow: 0 0 3px #f15e32 !important;

}

.mm-slds-button_brand:enabled:hover,
.mm-slds-button_brand:enabled:focus,
.mm-slds-button_brand:enabled:active {

    background-color: #e45125;
    border-color: #e45125;

}

.mm-slds-checkbox
[type='checkbox']:checked
+ .mm-slds-checkbox__label
.mm-slds-checkbox_faux:after {
    border-bottom: 2px solid #e45125;
    border-left: 2px solid #e45125;
}

.mm-slds-checkbox
[type='checkbox']:focus
+ .mm-slds-checkbox__label
.mm-slds-checkbox_faux {
    border-color: #e45125;
    box-shadow: 0 0 3px #e45125;
}

table tbody td .mm-slds-checkbox .mm-slds-checkbox_faux {
    margin-right: 8px;
}

.mm-slds-checkbox
[type='checkbox']:indeterminate
+ .mm-slds-checkbox__label
.mm-slds-checkbox_faux:after {
    background: #e45125;
}

.mm-slds-checkbox [type=checkbox]:focus:checked+.mm-slds-checkbox__label .mm-slds-checkbox_faux {
    border-color: #e45125;
}

.mm-slds-tabs--default__item:hover:after, .mm-slds-tabs_default__item:hover:after {
    background-color: #f15e32;
}

.mm-slds-tabs_default__item.mm-slds-is-active:after {
    background-color: #f15e32;
}

.mm-slds-button_icon-brand {
    background-color: #f15e32;
    border-color: #f15e32;
    color: #fff
}

.mm-slds-button_icon-brand svg {
    fill: #fff;
}

.mm-slds-button_icon-brand:focus,
.mm-slds-button_icon-brand:hover {
    background-color: #e45125;
    border-color: #e45125;
    color: #fff
}

.mm-slds-modal__footer,
.mm-slds-modal__header,
.mm-slds-modal__content:last-child {
    border-radius: 0px !important;
}

.mm-slds-backdrop {
    background-color: rgba(8, 7, 7, .3);
}

.mm-slds-modal__title {
    text-align: center;
    vertical-align: middle;
    line-height: 40px !important;
}

.mm-slds-button {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 0;
}

.mm-slds-button span {
    text-overflow: ellipsis;
    overflow: hidden;
}

.mm-slds-button.mm-slds-button_icon,
.mm-slds-button.mm-slds-button_icon:hover,
.mm-slds-button.mm-slds-button_icon:focus,
.mm-slds-button.mm-slds-button_icon:active {
    border: none;
    box-shadow: none;
}

.mm-slds-input {
    border-radius: 0;
}

.mm-slds-input {
    border-radius: 0;
}

.mm-slds-textarea {
    border-radius: 0;
}

.envelope-message-input {
    height: 150px;
    min-height: 150px;
}

.mm-slds-checkbox_faux {
    border-radius: 0;
}

.mm-slds-modal.mm-slds-fade-in-open {
    display: flex;
    flex-direction: column;
}

.mm-slds-notify_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 0;
    margin: auto;
    left: 0;
    right: 0;
    pointer-events: none;
}

.mm-slds-notify_toast {
    border-radius: 0;
    width: 50%;
    min-width: 300px;
    pointer-events: auto;
}

.mm-slds-spinner--large, .mm-slds-spinner_large {
    width: 4rem;
}

.mm-slds-spinner_large.mm-slds-spinner::before {
    width: .725rem;
    height: .725rem;
}

.mm-slds-panel_docked.mm-slds-is-open {
    box-shadow: none;
}

.attachment-number {
    position: absolute;
    border-radius: 50%;
    height: 36px;
    width: 36px;
    font-size: 16px;
    color: white;
    background-color: #f15e32;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 8px;
    right: 8px;
}

@media only screen and (max-width: 768px) {
    
    .top-bar .mm-slds-modal__content {
        padding: 1rem;
    }

    .pdf-center-area {
        display: flex;
        flex-direction: column;
        height: calc(100% - 2.5rem);;
    }

    .pdf-content-area {
        height: calc(100% - 7.5rem);
        width: 100%;
    }

    .edit-field-panel.mm-slds-is-open + .pdf-content-area {
        height: 100%;
    }

    .pdf-inner-content {
        flex-direction: column;
        height: calc(100% - 4rem);
    }    

    .edit-field-panel, .signers-panel, .documents-panel, .toolbox {
        width: 100%;
        height: 7.5rem;
        overflow-y: visible;
        border-right: none;
        border-bottom: 1px solid rgb(220 220 220);
    }

    .edit-field-panel {
        width: 100%;
        position: absolute;
        height: fit-content;
        overflow-y: visible;
        border-right: none;
        border-bottom: 1px solid rgb(220 220 220);
        opacity: 0.9;
        top: 2.5rem;
        z-index: 10;    
    }

    .edit-field-panel::after {
        position: relative;
        width: 100%;
        height: 7.5rem;
    }
    
    .pages-panel, 
    .signatures-panel,
    .attachments-panel {
        width: 100%;
        height: 7.5rem;
        overflow-y: visible;
        border-right: none;
        border-top: 1px solid rgb(220 220 220);

        position: absolute;
        bottom: 2.5rem;
        left: 0px;
        right: 0px;
    }

    .pdf-view-panel {
        height: 2.5rem;
        width: 100%;
        border-top: 1px solid rgb(220 220 220);
        border-left: none;
        flex-direction: row;
        overflow-y: hidden;
    }

    .pdf-view-panel-top,
    .pdf-view-panel-bottom {
        flex-direction: row;
    }

    .pdf-view-panel .mm-slds-button.mm-slds-button_icon {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }

    .header-tabs {
        height: 100%;
    }

    .header-tabs .mm-slds-tabs_default__item {
        width: 3.75rem;
        height: 100%;
    }

    .header-tabs .mm-slds-tabs_default__link {
        display: none;
    }

    .header-tabs .tab-icon {
        display: block;
    }

    .mm-slds-collections .item-delete {
        visibility: visible;
    }

    .mm-slds-collections .item-edit {
        visibility: visible;
    }

    .toolbox .mm-slds-panel__body {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        height: 100%;
    }

    .toolbox .mm-slds-pill {
        margin-bottom: 0;
        padding: 0;
    }

    .mm-slds-pill__action.no-border {
        display: none;
    }

    .mm-slds-pill.full-width {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 20%;
    }

    .mm-slds-pill__icon_container.pill-icon {
        margin-right: 0px;
    }

    .mm-slds-button.pdf-add-signer-button,
    .mm-slds-button.pdf-add-document-button,
    .mm-slds-button.pdf-add-group-button,
    .mm-slds-button.add-comment-button {
        height: 36px;
    }

    .mm-slds-input.mm-slds-combobox__input {
        height: 36px;
    }

    .mm-slds-input.mm-slds-combobox__input.font-signature-input {
        width: 100%;
        border-radius: 0px;
        height: 40px;
    }    

    .pdf-canvas-sidebar {
        margin: auto 1.25% auto 3%;
        height: 80px;
        cursor: pointer;
        border: 1px solid rgb(220 220 220);
        width: 46px;
    }

    .pages-panel-body,
    .signatures-panel-body,
    .attachments-panel-body {
        display: flex;
        flex-direction: row;
        overflow-y: hidden;
        overflow-x: scroll;
    }

    .pdf-sidebar-under-page {
        text-align: center;
        width: fit-content;
        opacity: 0.75;
    }

    .mm-slds-dropdown_length-5 {
        max-height: calc(((1rem * 1.5) + 1rem) * 2.5)
    }


    .mm-slds-panel__body {
        padding: 0.5rem;
    }
    
    .signers-panel-list {
        display: flex;
        flex-direction: row;
        height: 100%;
        padding: 0.5rem;
        overflow-x: scroll;
    }

    .mm-slds-collections ul li {
        margin-bottom: 0px;
    }

    .mm-slds-collections .item-container {
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .signers-panel-list li {
        height: 100%;
        width: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .signer-icon .mm-slds-button__icon {
        height: 48px;
        width: 48px;
    }

    .first-line .queryObject {
        display: none;
    }

    .mm-slds-collections .second-line {
        display: none !important;
    }

    .signers-panel-list li .collection-item-delete {
        width: 16px;
        height: 16px;
    }

    .signers-panel-list li .collection-item-edit {
        width: 16px;
        height: 16px;
    }

    .mm-slds-panel .mm-slds-collections {
        overflow: hidden;
        height: 100%;
    }

    .documents-panel-list {
        height: 100%;
        overflow-x: scroll;

        display: flex;
        flex-direction: row;
    }
    
    .pdf-canvas-preview {
        width: 46px;
        height: 60px;
    }

    .documents-panel-item {
        margin: auto 0 auto 5%;
        height: 60px;
        width: 46px;

        display: flex;
        flex-direction: row;
    }

    .document-name-preview {
        height: unset;
        width: unset;
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }

    .document-under-preview {
        width: unset;
        height: 60px;
        margin: auto 0 !important;
        display: flex;
        flex-direction: column;
    }

    .documents-panel-item::before {

        border-top: 16px solid white;
        border-left: 16px solid rgb(220 220 220);
    
    }
    
    .documents-panel-item:has(>.pdf-canvas-preview:hover)::before{
        border-left: 16px solid #faa389;
    }
    
    .documents-panel-item:has(>.pdf-canvas-preview.selected)::before{
        border-left: 16px solid #f15e32;
    }

    .edit-field-panel .edit-field-panel-top-buttons .mm-slds-button,
    .edit-field-panel .edit-field-panel-top-buttons .mm-slds-button:active,
    .edit-field-panel .edit-field-panel-top-buttons .mm-slds-button:focus {
        height: 36px;
    }

    .edit-field-panel .mm-slds-form-element {
        margin-bottom: 0px;
    }

    .pdf-header-actions .mm-slds-col,
    .pdf-header-actions .mobile-col {
        padding-left: .75rem;
        padding-right: .75rem;
    }    

    .pdf-header-actions .mm-slds-button.main-action {
        position: relative;
        z-index: 10;
        top: unset;
        right: unset;
    
        height: 1.5rem;
        width: 1.5rem;    
    }
    

    .pdf-header-actions .main-action svg,
    .pdf-header-actions .main-action:active svg,
    .pdf-header-actions .main-action:focus svg,
    .pdf-header-actions .main-action:hover svg {

        fill: #ffffff;
        height: 0.75rem;
        width: 0.75rem;

    }
    
    .pdf-header-actions .main-action svg,
    .pdf-header-actions .main-action:active svg,
    .pdf-header-actions .main-action:focus svg,
    .pdf-header-actions .main-action:hover svg {
    
        height: 0.75rem;
        width: 0.75rem;
    
    }    

    .documents-dropdown .mm-slds-input-has-icon_right .mm-slds-input__icon {
        right: .75rem;
    }

    .font-inputs-container {
        width: 98%;
    }
    
    .font-pad, .file-pad, .saved-pad {
    
        border: 1px solid;
        height: 300px;
        width: 98%;
        max-width: unset;
    
    }

    .signature-pad {

        border: 1px solid;
        height: 300px;
        width: fit-content;
        max-width: unset;

    }

    .mm-slds-notify_toast {
        border-radius: 0;
        width: 80%;
        min-width: 300px;
    }

    .document-signed-page {
        height: 100%; 
        width: 100%;
    }
    
    .document-signed-body {
        height: fit-content; 
        width: 80%; 
        padding: 8px;
    }
    
    .mm-logo-container {
        width: 80%; 
    }
    
    .mm-about-container {
        width: 80%; 
    }

    .sign-guide {
        top: 14.25rem;
        right: 0.25rem;
        left: unset;
    }

    .mm-slds-button.pdf-add-signer-button, 
    .mm-slds-button.pdf-add-group-button {
        width: 50%;
    }

    .mm-slds-button.pdf-add-group-button {
        border-left: 1px solid rgb(220 220 220);
    }

    .signers-panel-add-buttons {
        display: flex;
        flex-direction: row;
    }

    .signers-bottom-options {
        width: 100%;
        padding: 0;
        padding-left: 0.5rem;
    }

    .mm-slds-collections .item-container {
        padding-right: 1.5rem;
    }

    .mm-slds-collections .item-edit {
        top: 24px;
        right: 0px;
    }

    .mm-slds-modal .pdf-url-file-button {
        width: 40%;
    }

    .mm-slds-modal .pdf-url-file-input {
        width: 59%;
    }

    .mandatory-icon {
        position: absolute;
        bottom: 2rem;
        right: 3.75rem;
    }

    .pdf-view-panel-bottom .mm-slds-button {
        margin-bottom: 0.25rem;
    }

    .next-document-button {
        width: 100%;
    }

    .pdf-zoom-slider-container.mm-slds-is-open {
        right: 1rem;
        bottom: 3rem;
        flex-direction: row-reverse;
        width: 10rem;
    }

    .pdf-zoom-slider-input {
        writing-mode: unset !important;
        direction: rtl;
        height: 4px;
        width: 100px;
    }

    .pdf-zoom-slider-input::-webkit-slider-runnable-track {
        width: 100px;
    }

    .pdf-zoom-slider-input::-webkit-slider-thumb {
        margin-left: unset;
        margin-top: -4px;
    }

    .pdf-zoom-value {
        padding: 0 0.25rem 0 0;
    }

    .pdf-zoom-in {
        order: 7
    }

    .pdf-zoom-out {
        order: 6
    }

    .pdf-screen-width {
        order: 8
    }

    .pdf-canvas-container {

        transition: none !important;

    }

}