::after, ::before, * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

p {
    margin: 0 0 10px;
}

#editor{
    overflow: visible;
    background-color: white;
    display:flex;
}

#toolbar{
    position: fixed;
    z-index: 101;
    width:100%;
    height:auto;
}

body{
    font-family: 'Nunito', sans-serif !important;
    user-zoom: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    font-size: 14px;
    line-height: 1.42857143;
}

div:focus-visible{
    outline: 0px;
    border-radius: 0px;
}

select{
    background-color: #262e35;
    color: white;
    border-radius: 5px;
    padding: 5px;
    min-width: 50px;
}

#closeSave, #close, #save{
    float: left;
    margin-left: 10px;
    margin-top: 10px;
}

.toolbar-button{
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:5px;
    min-width:30px;
    text-align: center;
    color: white;
    cursor:pointer;
    margin-left:10px;
    transition: background-color ease 0.25s, color ease 0.25s;
    border-radius: 5px;
    background-color: #262e35;
}

.toolbar-button:hover{
    background-color: #ddd;
}

.hidden{
    display:none !important;
}

#images{
    /*width:100%;
    height:100%;*/

    background-color: #ccc;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex: 1;
}

.image-left{
    height:auto;
    width:50%;
}

.frames-div{
    z-index: 2;
    float: left;
    position: relative;
}

.pages{
    /*height: 95%;
    position: absolute;
    top: 2.5%;
    width:99%;
    display: flex;
    justify-content: center;*/

    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
}

.frames{
    /*position: absolute;
    top: 2.5%;
    display: flex;
    justify-content: center;*/

    position: absolute;
    z-index: 2;
    
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
}

.image-div{
    /*background-size: 100% 100% !important;
    height:100%;
    position:relative;*/

    position: relative;
    background-size: 100% 100% !important;
    height: 100%;
    display: flex;
}

.image{
    height: 100%;
    width: auto;
}

.image-div img{
    visibility: hidden;
    pointer-events: none !important;
}

.image-row{
    /*width: 100%;
    height: 100%;
    background-color: #ccc;
    border-bottom: 3px solid #aaa;*/

    display: flex;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
    border-bottom: 3px solid #aaa;
    padding: 30px;
}

.frame{
    position: absolute;
}

.show-paragraphs p{
    border: 1px dashed #ccc;
    margin: 5px !important;
    padding: 5px;
}

.show-frame{
    border:1px dashed rgb(0, 117, 255);
}

.frame-overflows{
    border:1px solid red !important;
}

.selected, .frame:hover, .selected .frame-corner, .hovered, .selected .story-frame-sign{
    border:1px solid blue;
    display: unset;
}

.selected-dashed, .group-frame:hover{
    border:1px dashed blue !important;
    display: unset;
}

.frame-corner{
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: white;
    display:none;
    z-index: 1000;
}

.frame-corner-top-left{
    top: -4px;
    left: -4px;
    cursor: nwse-resize;
}

.frame-corner-top-center{
    top: -4px;
    left: calc(50% - 4.5px);
    cursor: ns-resize;
}

.frame-corner-top-right{
    top: -4px;
    left: calc(100% - 3px);
    cursor: nesw-resize;
}

.frame-corner-center-left{
    top:calc(50% - 4.5px);
    left:-4px;
    cursor: ew-resize;
}

.frame-corner-center-right{
    top:calc(50% - 4.5px);
    left:calc(100% - 3px);
    cursor: ew-resize;
}

.frame-corner-bottom-left{
    top:calc(100% - 3px);
    left: -4px;
    cursor: nesw-resize;
}

.frame-corner-bottom-center{
    top:calc(100% - 3px);
    left: calc(50% - 4.5px);
    cursor: ns-resize;
}

.frame-corner-bottom-right{
    top:calc(100% - 3px);
    left: calc(100% - 3px);
    cursor: nwse-resize;
}

.story-frame-sign{
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: white;
    display:none;
    z-index: 1000;
}

.frame-previous{
    top: 12px;
    left: -4px;
}

.frame-next{
    top: calc(100% - 16px);
    left: calc(100% - 4px);
}

.arrow{
    border: solid blue;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 1px;
    top: 50%;
    left: 50%;
    position: absolute;
}

.arrow-right{
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}

.new-frame{
    border:1px solid darkblue;
}

.edit-text-frame{
    background-color: #fff;
    overflow-x:hidden;
    overflow-y:auto;
    position: fixed;
    z-index:100;
    border:1px solid #262e35;
    border-radius: 5px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity ease 0.25s;
    opacity: 0;
}

.edit-text-frame-big{
    width:70%;
    height:70%;
    top:15%;
    left:15%;
}

.edit-text-frame-small{
    width:30%;
    height:30%;
    top:35%;
    left:35%;
}

.edit-text-frame-toolbar{
    flex: 0 1 auto;
    width:100%;
    color:white;
    padding:10px;
    cursor: move;
    --menu-border: rgba(255, 255, 255, 0.2);
    --menu-bg: linear-gradient(
    90deg,
    rgba(10, 20, 28, 0.7) 0%,
    rgba(10, 20, 28, 0.9) 100%
    );
    background: var(--menu-bg);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
	max-height: 45px;
}

.edit-text-frame-toolbar p{
    width: 50%;
    float: left;
    margin: 0;
    height: 100%;
    font-size: 20px;
    pointer-events: none;
}

.edit-text-frame-content, .edit-text-frame-outter{
    width:100%;
    flex: 1 1 auto;
    padding:10px;
    overflow-y: auto;
    overflow-x: auto;
}

.edit-text-frame-orig{
    width:29%;
    padding:10px;
    overflow-y: auto;
    overflow-x: hidden;
    float:left;
    height:100%;
    border: 1px solid #ddd;
}

.edit-text-frame-content-orig{
    width:70%;
    padding:10px;
    overflow-y: auto;
    overflow-x: hidden;
    float:left;
    height:100%;
}

.edit-text-frame-content p{
    min-height:10px;
}

.edit-text-frame-buttons{
    flex: 0 1 auto;
    width: 100%;
    color: #262e35;
    border-top: 1px solid #262e35;
    padding: 10px;
    bottom: 0;
}

.edit-text-frame-buttons .button{
    float:right;
    padding:5px;
    min-width:100px;
    text-align: center;
    color: white;
    cursor:pointer;
    margin-left:10px;
    transition: background-color ease 0.25s, color ease 0.25s;
    border-radius: 5px;
    background-color: #262e35;
}

.edit-text-frame-buttons .button:hover{
    background-color: #ddd;
}

.edit-text-frame-toolbar-button{
    float:left;
    padding:5px;
    text-align: center;
    color:white;
    cursor:pointer;
    margin-right:10px;
    transition: background-color ease 0.25s, color ease 0.25s;
    border-radius: 5px;
    border:1px solid #aaa;
    min-width:30px;
    min-height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #262e35;
}

.edit-text-frame-toolbar-button div{
    border:1px dashed white;
}

.edit-text-frame-toolbar-selection-container{
    float:left;
    cursor:pointer;
    border-radius: 5px;
    border:1px solid #aaa;
    max-width:300px;
	min-width:100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    transition: background-color ease 0.25s, color ease 0.25s;
    margin-right: 10px;
    background-color: #262e35;
    color:white;
}

.edit-text-frame-toolbar-selection-container-small{
    width:150px;
}

.edit-text-frame-toolbar-selection-container div{
    padding: 5px 10px;
    min-height: 30px;
}

.edit-text-frame-toolbar-selection-container:hover{
    background-color: #ddd;
}

.edit-text-frame-toolbar-selection-icon{
    display:flex;
    justify-content: center;
    align-items: center;
}

.edit-text-frame-toolbar-selection-selector{
    display: flex;
    justify-content: start;
    align-items: center;
    max-height: 30px;
    flex: 1 1 auto;
    background-color:#fff !important;
    color:#333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.edit-text-frame-toolbar-selection-opener{
    display:flex;
    justify-content: center;
    align-items: center;
}

.edit-text-frame-toolbar-seleciton{
    position:absolute;
    background-color: #fff;
    height:0px;
    border:1px solid #262e35;
    overflow-x: hidden;
    overflow-y: auto;
    max-height:75%;
}

.edit-text-frame-toolbar-seleciton div{
    padding:5px 10px;
}

.edit-text-frame-toolbar-seleciton div:hover{
    background-color: #ddd;
}

.edit-text-frame-toolbar-button-active, .edit-text-frame-toolbar-button:hover{
    background-color: #ddd;
}

.edit-text-frame-toolbar-button-active div, .edit-text-frame-toolbar-button:hover div{
    border:1px dashed white;
}

.edit-text-frame-toolbar-close{
    float:right;
    text-align: center;
    color: #aaa;
    cursor:pointer;
    margin-right:5px;
    padding:5px;
    transition: color ease 0.25s;
}

.edit-text-frame-toolbar-close:hover{
    color: #000;
}

.frame p{
    padding:0;
    margin:0;
    min-height: 1rem;
}

.frame-mask, .frame-mask-image{
    position: absolute;
    border:1px solid brown;
    background-size: 100% 100% !important;
    visibility: visible !important;
}

.frame-mask-image{
    opacity: 0.5;
    width:100%;
    height:100%;
    border:0px solid brown !important;
}

.frame-mask .frame-corner{
    display: unset;
    border:1px solid brown !important;
}

.frame-set-mask{
    border:1px solid blue;
    position: absolute;
    z-index:100;
    overflow:hidden;
}

.frame-mask-background{
    background-color: white;
}

.frame-rotate{
    position:absolute;
    width:200%;
    height:200%;
}

.frame-rotate-top-left{
    top:-10px;
    left:-10px;
}

.frame-rotate-top-right{
    top:-10px;
    right:-10px;
}

.frame-rotate-bottom-left{
    bottom:-10px;
    left:-10px;
}

.frame-rotate-bottom-right{
    bottom:-10px;
    right:-10px;
}

.frame-rotate:hover{
    cursor: alias;
}

.tab{
    width: 2rem;
    display:inline-block;
}

table{
    border-spacing: 0px;
}

.pageItem{
    background-color: #ccc;
    border-radius: 3px;
    border: 1px solid #262e35;
    display: inline-block;
}

.overrides{
    background-color: rgba(0, 150, 255, 0.1);
}

#pagebar{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    z-index: 101;
}

div.line{
    position:absolute;
    transform-origin: 0 100%;
    height: 1px;
    background: #000;
    z-index: 100;
}

[contenteditable] span {
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    white-space: pre-wrap;
}

.sideBar{
    z-index: 2000;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    overflow:hidden;
    --menu-border: rgba(255, 255, 255, 0.2);
    --menu-bg: linear-gradient(
    45deg,
    rgba(10, 20, 28, 0.4) 0%,
    rgba(10, 20, 28, 0.9) 100%
    );
    background: var(--menu-bg);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 0 1px var(--menu-border), 0 2px 2px rgba(0, 0, 0, 0.03), 0 4px 4px rgba(0, 0, 0, 0.04), 0 10px 8px rgba(0, 0, 0, 0.05), 0 15px 15px rgba(0, 0, 0, 0.06), 0 30px 30px rgba(0, 0, 0, 0.07), 0 70px 65px rgba(0, 0, 0, 0.09);
}

#sideBarButton{
    position:fixed;
    top:0px;
    right:0px;
    padding: 10px 15px 10px 10px;
    cursor: pointer;
    z-index:2000;
    font-size: 25px;
    transition: color ease 0.25s;
}

#sideBarButton:hover{
    background-color: rgba(255, 255, 255, 0.3)
}

.sideBar #sideBarCropper{
    position: relative;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: rgba(10,10,10,0.5);
    cursor: col-resize;
}

.sideBar #sideBarInner{
    position: absolute;
    width: calc(100% - 5px);
    height: 100%;
    top: 0;
    left: 5px;
    overflow-x:hidden;
    overflow-y:auto;
}

.sideBarElement{
    width:100%;
    height:auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.sideBarElementLabel{
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    margin: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sideBarElementLabel:hover{
    background-color: rgba(255, 255, 255, 0.3)
}

.selectedElement{
    background-color: rgba(20,20,20,0.75);
}

.sideBarElementChild{
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: height 0.5s;
}

.sideBarElementButton{
    background-color: rgba(20,20,20,0.25);
    width: calc(100% - 10px);
    height:auto;
    padding: 10px;
    cursor: pointer;
    color: white;
    white-space: nowrap;
    border-radius: 5px;
    margin: 5px;
    display: flex;
    align-items: center;
}

.sideBarElementButton:hover{
    background-color: rgba(255, 255, 255, 0.3)
}

.sideBarElementButtonMenu{
    min-width: 200px;
    position:fixed;
    z-index:1000;
    max-height:230px;
    overflow-y:auto;
    overflow-x:hidden;
    --menu-border: rgba(255, 255, 255, 0.2);
    --menu-bg: linear-gradient(
    45deg,
    rgba(10, 20, 28, 0.4) 0%,
    rgba(10, 20, 28, 0.9) 100%
    );
    background: var(--menu-bg);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.info-box{
    position:fixed;
    bottom: 30px;
    left:-200px;
    width:200px;
    max-height:400x;
    height:auto;
    color:white;
    z-index: 1000;
    border-radius: 0 5px 5px 0;
    transition: left ease 0.5s;
    border:1px solid #262e35;
    --menu-border: rgba(255, 255, 255, 0.2);
    --menu-bg: linear-gradient(
    45deg,
    rgba(10, 20, 28, 0.4) 0%,
    rgba(10, 20, 28, 0.9) 100%
    );
    background: var(--menu-bg);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 0 1px var(--menu-border), 0 2px 2px rgba(0, 0, 0, 0.03), 0 4px 4px rgba(0, 0, 0, 0.04), 0 10px 8px rgba(0, 0, 0, 0.05), 0 15px 15px rgba(0, 0, 0, 0.06), 0 30px 30px rgba(0, 0, 0, 0.07), 0 70px 65px rgba(0, 0, 0, 0.09);
}

.info-box-icon{
    position: absolute;
    height: 80px;
    width: 80px;
    border-radius: 80px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid white;
    top: -40px;
    background-color: #262e35;
}

.info-box-icon-content{
    position:absolute;
    width:100%;
    height:100%;
    font-size: 7.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-box-content{
    width: 100%;
    padding: 50px 10px 40px 10px;
    overflow:auto;
    text-align: center;
}

.isLoading{
    border: 1px solid rgb(230, 230, 230);
}

.disabled{
    background-color: rgba(200,200,200,0.75) !important;
    color:rgb(230,230,230) !important;
    cursor: unset !important;
    text-decoration: line-through;
}

.disabled:hover{
    background-color: rgba(200,200,200,0.75) !important;
}

.specialChar:hover, .translation:hover{
    color:#ccc;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
}

.image-item {
    margin: 10px;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0);
    box-shadow: 1px 1px 5px #888;
    height: 200px;
}

.image-item-selected {
    margin: 10px;
    cursor: pointer;
    border: 1px solid blue !important;
}

.image-item-div{
    position: relative;
    display: inline-block;
    height: 200px;
    margin-bottom: 20px;
}

.image-item-name{
    position: absolute;
    bottom: 0;
    left: 10px;
    width: calc(100% - 20px);
    height: 25px;
    background-color: rgba(0,0,0,0.3);
    border-top: #262e35;
    padding: 5px;
    margin-bottom: -10px;
    display:flex;
    justify-content: start;
    align-items: center;
    color: white;
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide any overflowing content */
    text-overflow: ellipsis; /* Display ellipsis (...) for overflowed content */
}

.ruler{
    position: fixed;
    background-color: rgba(0,0,0,0.5);
    overflow:hidden;
}

.ruler-corner{
    left:0;
    top: 0px;
    width:15px;
    height:15px;
    overflow:visible;
    z-index:1001;
}

.ruler-top{
    top: 0px;
    left:15px;
    height:15px;
    width: calc(100%  - 15px);
    border-bottom:1px solid black;
    z-index:1000;
}

.ruler-left{
    top: calc(0px + 15px);
    height: calc(100% - 0px - 15px);
    width:15px;
    border-right:1px solid black;
}

.ruler-point{
    position: absolute;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ruler-top .ruler-point{
    padding-left: 3px;
    height:15px;
    top:0;
    border-left:1px solid white;
}

.ruler-left .ruler-point{
    padding-top: 2px;
    width:15px;
    left:0;
    border-top:1px solid white;
}

.magnetic-line{
    position:fixed;
    background-color: cyan;
}

.magnetic-line-top{
    height: calc(100% - 0px);
    width:2px;
    top:0px;
}

.magnetic-line-left{
    height: 2px;
    width:100%;
    left:0;
}

#colorPickerContainer {
    width: 200px;
    height: 200px;
    position: fixed;
    top:10%;
    left:5%;
    z-index:100000;
}

#colorPicker {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    cursor: crosshair;
}

#char-count, #pages{
    float: left;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 5px;
}

#pages{
    margin-left: 30px;
}

.found-text{
    border:1px solid greenyellow;
}

.outerNotes{
    --menu-border: rgba(255, 255, 255, 0.2);
    --menu-bg: linear-gradient(
    45deg,
    rgba(10, 20, 28, 0.4) 0%,
    rgba(10, 20, 28, 0.9) 100%
    );
    color:white;
    min-width:200px;
    max-width:250px;
    min-height:300px;
    border:1px solid #262e35;
    position:fixed;
    display:flex;
    flex-direction: column;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border-radius: 10px;
    padding: 10px;
    z-index:10000;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    background: var(--menu-bg);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 0 1px var(--menu-border), 0 2px 2px rgba(0, 0, 0, 0.03), 0 4px 4px rgba(0, 0, 0, 0.04), 0 10px 8px rgba(0, 0, 0, 0.05), 0 15px 15px rgba(0, 0, 0, 0.06), 0 30px 30px rgba(0, 0, 0, 0.07), 0 70px 65px rgba(0, 0, 0, 0.09);
}

.headlineNotes{
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.headlineNotes div{
    flex-basis: 50%;
}

.headlineNotesText{
    font-size:2rem;
}

.closeNotes{
    display:flex;
    justify-content: end;
    align-items: center;
}

.contentNotes{
    flex-grow: 1;
    padding: 10px;
}

.contentNotes div{
    padding:5px;
}

.nameNotes{
    font-weight: bold;
}

.valueNotes{
    margin: 0 0 10px 0;
}

.dateNotes{
    font-size: 0.75rem;
    font-style: italic;
}

.doneNotes{
    display:flex;
    flex-direction: row;
    align-items: center;
    gap:10px;
}

.doneNotes input{
    margin:0;
}

.buttonsNotes{
    display:flex;
    flex-direction: row;
}

.buttonsNotes div{
    flex-basis: 50%;
    text-align: center;
    cursor:pointer;
}

.buttonLeftNotes{
    transform: scaleX(-1);
}

.buttonsNotes div:hover, .closeNotes:hover{
    color:#262e35;
}

.hasNotes:before {
    content: "\1F4AC";
    position: absolute;
    z-index:1000;
    top: -15px;
    left: -15px;
    font-size: 2rem;
    background-color: yellow;
}


/* Helper */

/* margin 0 */
.mx-0 {
    margin: 0px;
  }
  
  .mt-0 {
    margin-top: 0px;
  }
  
  .mr-0 {
    margin-right: 0px;
  }
  
  .ml-0 {
    margin-left: 0px;
  }
  
  .mb-0 {
    margin-bottom: 0px;
  }
  
  /* margin 0.5rem */
  .mt-0-5 {
    margin-top: 0.5rem;
  }
  
  .mr-0-5 {
    margin-right: 0.5rem;
  }
  
  .ml-0-5 {
    margin-left: 0.5rem;
  }
  
  .mb-0-5 {
    margin-bottom: 0.5rem;
  }
  
  /* margin 1rem */
  .mt-1 {
    margin-top: 1rem;
  }
  
  .mr-1 {
    margin-right: 1rem;
  }
  
  .ml-1 {
    margin-left: 1rem;
  }
  
  .mb-1 {
    margin-bottom: 1rem;
  }
  
  /* margin 2rem */
  .mt-2 {
    margin-top: 2rem;
  }
  
  .mr-2 {
    margin-right: 2rem;
  }
  
  .ml-2 {
    margin-left: 2rem;
  }
  
  .mb-2 {
    margin-bottom: 2rem;
  }
  
  /* margin 3rem */
  .mt-3 {
    margin-top: 3rem;
  }
  
  .mr-3 {
    margin-right: 3rem;
  }
  
  .ml-3 {
    margin-left: 3rem;
  }
  
  .mb-3 {
    margin-bottom: 3rem;
  }
  
  .pt-1 {
    padding-top: 1rem;
  }
  
  .pr-0-5 {
    padding-right: 0.5rem;
  }
  
  .pl-0-5 {
    padding-left: 0.5rem;
  }

  /* Helper */
.clss_all{
    color: #0088ff !important;
    font-style: normal !important;
    margin-left: -1px;
    margin-right: -1px;
    position: relative;
    top: 1px;
    left: 1px;
}

.clss_n:before{
    content: "\00AC";
}

.clss_u0007:before{
    content: "\2020";
}

.clss_u0018:before{
    content: "P";
}

.clss_u0019:before{
    content: " ";
}

.clss_u0004:before{
    content: "#";
}

.clss_u0003:before{
    content: "\\";
}

.clss_u200C:before{
    content: "\2304";
}

.clss_u200C{
    top: -5px;
}

.clss_u200B:before{
    content: "|";
}

.clss_u00A0:before{
	content: "\2303";
}

.clss_u00A0{
    top: 5px;
}

.clss_u202F:before{
	content: "\2303";
}

.clss_u202F{
    top: -5px;
}

.clss_u2008:before{
	content: "!";
}

.clss_u2007:before{
	content: "#";
}

.clss_u2001:before{
	content: "\223F";
}

.clss_u2001{
    top: -5px;
}

.clss_column_break:before{
    content:"\02EF";
}

.clss_frame_break:before{
    content: "\02EF" "\A" "\02EF";
    white-space: pre;
    position: absolute;
    top: 2px;
    left: 0;
    line-height: 5px;
}

.clss_page_break:before{
    content: "\2022" "\A" "\02EF";
    white-space: pre;
    position: absolute;
    top: 10px;
    left: 0;
    line-height: 0px;
}

.clss_page_break_odd:before{
    content: "\0307" "\A" "\02EF";
    white-space: pre;
    position: absolute;
    top: 10px;
    left: 2px;
    line-height: 0px;
}

.clss_page_break_even:before{
    content: "\0308" "\A" "\02EF";
    white-space: pre;
    position: absolute;
    top: 10px;
    left: 2px;
    line-height: 0px;
}

.clss_page_number:before{
    content: "#P#";
}

.clss_next_page_number:before{
    content: "#P";
}

.clss_previous_page_number:before{
    content: "P#";
}

.clss_tab:before{
    content: ">>";
}

.clss_tab{
    left: 45px;
    width: 100px;
    display: inline-block;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.75);
  border-right: 1.1em solid rgba(255, 255, 255, 0.75);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.75);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.outer-loader{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loaderLazyLoading{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:100%;
  height:100%;
  z-index:3;
  display:flex;
  justify-content: center;
  align-items: center;
}

.loaderLazyLoading div{
  border: 10px solid rgba(0, 0, 0, 0.1);
  border-top: 10px solid #333;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spinLazyLoadin 1s linear infinite;
}

@keyframes spinLazyLoadin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.contextMenu {
--menu-border: rgba(255, 255, 255, 0.2);
--menu-bg: linear-gradient(
45deg,
rgba(10, 20, 28, 0.4) 0%,
rgba(10, 20, 28, 0.9) 100%
);
--item-border: rgba(255, 255, 255, 0.22);
--item-color: #fff;
--item-bg-hover: rgba(255, 255, 255, 0.3);
height: 0;
overflow: hidden;
background: var(--menu-bg);
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
position: fixed;
top: 0px;
left: 0px;
-webkit-animation: menuAnimation 0.4s 0s both;
animation: menuAnimation 0.4s 0s both;
transform-origin: left;
list-style: none;
margin: 4px;
padding: 0;
display: flex;
flex-direction: column;
z-index: 999999999;
box-shadow: 0 0 0 1px var(--menu-border), 0 2px 2px rgba(0, 0, 0, 0.03), 0 4px 4px rgba(0, 0, 0, 0.04), 0 10px 8px rgba(0, 0, 0, 0.05), 0 15px 15px rgba(0, 0, 0, 0.06), 0 30px 30px rgba(0, 0, 0, 0.07), 0 70px 65px rgba(0, 0, 0, 0.09);
}
.contextMenu-item {
padding: 4px;
}
.contextMenu-item[data-divider=top] {
border-top: 1px solid;
}
.contextMenu-item[data-divider=bottom] {
border-bottom: 1px solid;
}
.contextMenu-item[data-divider=top-bottom] {
border-top: 1px solid;
border-bottom: 1px solid;
}
.contextMenu-item[data-divider] {
border-color: var(--item-border);
}
.contextMenu-button {
color: var(--item-color);
background: 0;
border: 0;
white-space: nowrap;
width: 100%;
border-radius: 4px;
padding: 6px 24px 6px 7px;
text-align: left;
display: flex;
align-items: center;
font-size: 14px;
width: 100%;
-webkit-animation: menuItemAnimation 0.2s 0s both;
animation: menuItemAnimation 0.2s 0s both;
font-family: "Inter", sans-serif;
cursor: pointer;
}
.contextMenu-button:hover {
background-color: var(--item-bg-hover);
}
.contextMenu[data-theme=light] {
--menu-bg: linear-gradient(
45deg,
rgba(255, 255, 255, 0.45) 0%,
rgba(255, 255, 255, 0.85) 100%
);
--menu-border: rgba(0, 0, 0, 0.08);
--item-border: rgba(0, 0, 0, 0.1);
--item-color: rgb(10, 20, 28);
--item-bg-hover: rgba(10, 20, 28, 0.09);
}
.contextSubMenu{
max-height: 200px;
overflow-y: auto;
overflow-x: hidden;
}
@-webkit-keyframes menuAnimation {
0% {
opacity: 0;
transform: scale(0.5);
}
100% {
height: var(--height);
opacity: 1;
border-radius: 8px;
transform: scale(1);
}
}

@keyframes menuAnimation {
0% {
opacity: 0;
transform: scale(0.5);
}
100% {
height: var(--height);
opacity: 1;
border-radius: 8px;
transform: scale(1);
}
}
@-webkit-keyframes menuItemAnimation {
0% {
opacity: 0;
transform: translateX(-10px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
@keyframes menuItemAnimation {
0% {
opacity: 0;
transform: translateX(-10px);
}
100% {
opacity: 1;
transform: translateX(0);
}
} 