@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.6em;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
    cursor: pointer;
}

/* utils */

.semibold {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
}

.container {
    width: 1200px;
    max-width: 100%;
}

/* nav */

nav {
    height: 50px;
    display: flex;
    padding: 0.9em 2em;
    justify-content: space-between;
    align-items: center;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(7,180,226,1) 0%, rgba(104,70,245,1) 100%);
}


nav .logo {
    display:flex;
    height: 37px;
    width: 45px;
}

nav .row {
    display:flex;
}

nav a {
    text-decoration: none;
    color:white;
    padding-top: 5px;
    padding-left: 12px;
}

nav button {
    background-color: transparent;
    border: none;
    font-size: 2em;
    color: white;
    margin-right: 0.5em;
}

/* content */

#content {
    display: flex;
    height: calc(100vh - 50px);
}

/* Aside */

aside {
    padding: 1em 0px;
    width: 280px;
    background-color: #D4D9F2;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: transparent;
    position: absolute;
    left: 0px;
    top: 50px;
    height: calc(100vh - 50px);
}

aside > div {
    margin-bottom: 1.5em;
}

aside > div .semibold {
    padding: 0em 1rem;
    font-size: 1.375em;
    margin-bottom: 0.5em;
}

aside > div a {
    padding: 0.25em 1em;
    text-decoration: none;
    color: #485870;
    display: block;
    font-size: 0.9em;
}

aside > div a:hover, aside > div a:active {
    background-color: rgba(34,35,120,0.04);
    border-right: 2px solid #FF0844;
}

aside > div a.active {
    background-color: rgba(34,35,120,0.04);
    border-right: 4px solid #FF0844;
}

aside .item-title {
    display: flex;
    justify-content: space-between;
    padding-right: 8px;
    cursor: pointer;
}

aside .item-title i {
    margin-top: 8px;
}

/* main */

main {
    transition-duration: 0.3s;
    /* transition-timing-function: ease-in-out; */
    width: calc(100% - 280px);
    transform: translate(280px);
    background-color: white;
}

.sidebar-hidden main {
    width: 100%;
    transform: translate(0);
}

main .page {
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
}

main .page h1 {
    padding: 20px 20px 0px 20px;
    font-size: 2.5em;
    line-height: 1.2em;
    height: 116px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

main .page .pages {
    display: flex;
    overflow-x: auto;
    padding: 0em 20px 20px 20px;
    scrollbar-width: thin;
    scrollbar-color: transparent;
    align-items: start;
    justify-content: start;
}

main .page .pages img {
    max-height: 700px;
}

/* footer */

main footer {
    display: block;
    height: 50px;
    background-color: #ADADAD;
    border-top: 2px solid #3B6CF7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main footer > div > div {
    margin: 0 0.25em;
}

main footer .left {
    padding-left: 12px;
}

main footer .right {
    display: flex;
    justify-content: end;
    align-items: center;
}

main footer .right > button {
    background-color: transparent;
    border: none;
}

/* responsive */

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    nav {
        padding: 0.5em 12px;
    }

    #page-indicator {
        display: none;
    }

    footer #st-1 {
        display: none;
        white-space: nowrap;
        overflow: hidden;
    }

    .sidebar-hidden footer #st-1 {
        display: block;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .dl-title {
        display: none;
    }
    main .page h1 {
        font-size: 1.8em;
        height: 92px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {

}

/* scrollbar */

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 255, 255, 0.2);
}

/* ng */
.ng-cloak,.ng-hide:not(.ng-hide-animate),.x-ng-cloak,[data-ng-cloak],[ng-cloak],[ng\:cloak],[x-ng-cloak]{display:none!important}ng\:form{display:block}.ng-animate-shim{visibility:hidden}.ng-anchor{position:absolute}