.notes{
    margin: auto;
    width: 100%;
    /* max-width: 210mm; */
    max-width: 8.5in;
    box-shadow:  var(--shadow-small);
    background: white;
    border-radius: 5px;
    margin-bottom: 15px;

}
#notes{
    padding-top: 20px;
}
.page{
    height: 297mm;
    max-height: 297mm;
    /* height: 1h056px;
    max-height: 1056px; */
    overflow: auto;
    padding:0.5in 0.75in;
    white-space: wrap;
    font-family:'Arial', 'Tahoma', "Google Sans",sans-serif;
    font-size: 12.5pt;
    position: relative;
}
.page-content{
    border: none;
    height: 100%;
    max-height: calc(297mm - 1.5in);
    outline: none;
    background: white;
}
.dynamic-response-pallet .page-content{
    padding: 5px 10px;
}
.page.landscape{
    height: 11in;
    /* height: 210mm; */
    /* max-height: 210mm; */
    max-height: 11in;
    /* max-width: 297mm; */
    max-width: 8.5in;
    /* min-width: 297mm; */
    /* size: 8.5in 11in; */

}
.page.mobile-view{
    min-width: unset;
    height:unset;
    min-height:11in;
    /* min-height:297mm; */
    /* size: 8.5in 11in; */
    max-height:unset;
}
.notes h1, .notes h2{
    /*color: rgb(0, 132, 255);*/
    /* box-shadow: var(--shadow-small); */
    /*text-align: center;*/
    padding: 1px;
    background: whitesmoke;
    margin: 1px;
}
.notes h2,
.notes h3{
    text-align: left;
    font-size: 98%;
    width: fit-content;
    color: default;
}
.notes p,
.notes li{
    margin-bottom: 2px;
    line-height: 25px;
}
.notes ol,
.notes ul{
    margin-top: 0px;
    margin-left: 20px;
    margin-bottom: 2px;
}
.note ol li{
    margin: 10px;
}
.notes .item{
    color: rgba(0, 0, 0, 0.881);
    font-weight: 600;
}
.canvas{
    transform: translateX(0%);
    transition: all 0.6s ease-in-out;
}
.scale-off{
    transform: translateX(-500%);
    position: absolute;
}
.formula{
    position: relative;
}
.valence{
    position: absolute;
    /* top: var(0px, --right); */
    top: 0;
    color: black;
    padding: 0;
    line-height: 10px;
    font-size: 10px;
    left: calc(100% + 1px);
    white-space: nowrap;
}
.formula sub{
    font-size: 10px;
}
sub+.valence{
    color: black;
    left: calc(100% + var(--right));
}

.softumba-mark{
    position: absolute; 
    background: white; 
    bottom: 0px; 
    right: 0px; 
    padding: 5px; 
    color: red;
}
/* Document Ruler */
    .ruler-container {
        top: 0;
        z-index: 50;
        margin: auto;
        position: sticky;
        width: calc(100% - 165px);
        max-width: calc(8.5in - 100px);
    }

    .ruler {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ccc;
    }
.indent-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 20px;
  background: #c45f5f10;
  cursor: ew-resize;
  z-index: 2;
}
.indent-marker::after {
    content: '';
    bottom: -1px;
    position: absolute;
    height: 10px;
    width: 100%;
    background: #545353;
    transform: rotate(-45deg);
    border-radius: 0px 0px 0 10px;
    border: 1px solid dodgerblue;
}
.editor {
  position: relative;
  top: 20px;
  left: 0;
  width: 100%;
  height: 300px;
  padding: 10px;
  border: 1px solid #ccc;
  overflow-y: auto;
} 
.markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
}

.marker {
  position: absolute;
  top: 1px;
  width: 1px;
  height: 5px;
  background-color: #666;
}
.marker.big-tick{
  height: 10px;
    background-color: dodgerblue;
} 
.page::after{
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    border-left: 1px dashed red;
    width: 1px;
    bottom: 0;
    left:var(--left, 85px);
    display: none;
}
.page.active::after{
    display: block;
}