.modal-highlights{
	position: absolute;
    width: 100%;
    z-index: 9;
    right: 0;
  /*  top: 60px;*/
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    transition: all 500ms linear;
    transform: translate(100vw,0);
	will-change: transform;
    background-color: transparent;
}
.modal-highlights.active {
    transform: translate(0vw,0vh);
	will-change: transform;
    opacity: 1;
	visibility: visible;	
}   
.android.landscape .modal-highlights {
	position: fixed;
    width: 35%;
    height: 100%;
	top:0;
	left: 0;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    transform: translate3d(-100vw,-4vh,0);
    background-color: transparent;
}
.android.landscape .modal-highlights.active {
	transform: translate3d(0vw,0vh, 0);
    display: inline-block;
}
.tablet.landscape .modal-highlights {
	width: 35%;
}
.modal-highlights .print{
	position: absolute;
    z-index: 3;
    right: 13px;
    top: 13px;
    height: 30px;
    width: 30px;
    background-size: 30px;
}
.modal-highlights .close{
	position: absolute;
    display: block;
    z-index: 3;
    right: 42px;
    top: 14px;
    cursor: pointer;
}
.modal-highlights .hightlights{
	margin-top: 0;
}
.modal-highlights .hightlights{
	position: relative;
    width: 100%;
    -webkit-box-shadow: 0 10px 10px 0 #7d7d7d;
    -moz-box-shadow: 0 10px 10px 0 #7d7d7d;
    box-shadow: 0 10px 10px 0 #7d7d7d;
    background-color: #2b445a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: var(--font-family);
    color: white;
    line-height: 1.5em;
    -webkit-overflow-scrolling: touch;
}
.hightlights:before {
    top: -10px;
    left: 0;
}
.hightlights:before, .hightlights:after {
    opacity: 1;
}
.modal-highlights .hlwrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #00000066;
    width: 100%;
    height: auto;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.modal-highlights .hlwrapper::-webkit-scrollbar  {
    display: block!important;
    width: 10px!important;
	height: 10px!important;
}
/* Track */
.modal-highlights .hlwrapper::-webkit-scrollbar-track  {
  box-shadow: inset 0 0 5px black; 
  border-radius: 10px;
}
/* Handle */
.modal-highlights .hlwrapper::-webkit-scrollbar-thumb {
  background: #738ca2; 
  border-radius: 10px;
}
/* Handle on hover */
.modal-highlights .hlwrapper::-webkit-scrollbar-thumb:hover {
  background: orange; 
}
.hightlights .items{
    margin-top: 0;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: margin .15s ease;
}
.hightlights .items ul{
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 1rem;
}
.hightlights .items ul li >div{
    background: #fff;
    border-left: 5px solid #ccc; /*var(--theme-border-color);*/
    color: #333;/*var(--theme-text-color);*/
    position: relative;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
    transition: all .3s cubic-bezier(.25,.8,.25,1);
	margin: 0.75rem 1rem;
	padding: 0.25rem 0.5rem 0.25rem 1rem;
	max-height: 5em;
    overflow-y: auto;
}

.hightlights .items ul li >div >div{
	display: flex !important;
	justify-content: space-between !important;
}

.hightlights .items ul li >div >div >div{
	width: 100%;
}
.hightlights .items h6{
	text-transform: uppercase;
    font-weight: bold;
}
.hightlights .items p {
    position: relative;
    transition: all .1s ease;
    width: 100%;
    padding-right: 1.25rem;
	-webkit-hyphens: auto;
    hyphens: auto;
    word-break: break-word;
	font-size: 14px;
    line-height: normal;
}
.hightlights .items .pageLink {
    cursor: pointer;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: calc(100% - 35px);
}