/* Import Ubuntu font (300 & 400) */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400&display=swap');

.instilogo {
    height: 50px;
    filter: grayscale(20%);
}

a:hover {
    text-decoration: none;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    color: #444;
}

a.nocolor {
	color: inherit;
}

.noter {
    font-size: 9pt;
}

.tagsep {
    padding: 4px;
}

.tag {
    padding-right: 2px;
}

.itemwhere {
	padding-bottom: 4px;
    font-weight: 500;
    color: black;
}

.item {
    border-left: 1px solid #ddd;
}

.profile {
    width: 150px;
}

@media (min-width: 768px) {
    .fixed-posi {
        /* width: 50%;
           margin-left: 50%;
           min-height:100%; */
        position: fixed;
    }
}

@media only screen and (max-width: 900px) {
    .allstuff {
        padding-top: 0px !important;
    }

    .allstuffp {
        padding-top: 0px !important;
    }

    .profilepic {
        width: 90px;
        border-radius: 40%;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        /* filter: grayscale(100%); */
    }

    .menur {
        padding-top: 18px !important;
    }
}

body {
    font-family: Ubuntu;
    color: #777;
    font-weight: 300;
    font-size: 12pt;
    background-color: #fff;
}

a {
    color: #a00;
    text-decoration: none;
}
 
.menulink {
    color: #777;
    font-size: 14pt;
    text-decoration: none;
	margin-left: 10px;
}
.menulink span {
	color: #a00;
}

.menulink:hover {
    color: #a00;
}

.loadMore {
	cursor: pointer;
}

.loadMore a{
	color: #a00;
}

.icon {
  width: .8em;
  height: .8em;
  vertical-align: middle;
  fill: #a00;
}

.pdf {
	width: 1.2em;
	height: 1.2em;
}

.header {
    color: #a00;
    font-size: 18pt;
    text-decoration: none;
}

.name {
    color: #111;
    font-size: 23pt;
    margin: 0;
    font-weight: inherit;
    line-height: inherit;
}

.name span {
	color: #a00;
}

.itemtitle {
    color: #000;
    font-size: 12pt;
    font-weight: 300;
    text-decoration: none;
	font-style: oblique 5deg;
    font-erestyle: normal;
}

.itemyear {
    color: #a00;
}

.me {
    color: #000;
    font-weight: 300;
    text-decoration: none;
    font-style: normal;
}

.institution {
    color: #111;
    font-size: 12px;
}

.smallcaps {
  font-variant: small-caps;
}

.years {
    color: #a00;
    font-size: 11px;
}

.panel {
	text-align: center;
}

#email {
	cursor: pointer;
	color: inherit;
	text-decoration: line-through;
}

#lock {
	cursor: pointer;
}

/* Fullscreen loader overlay */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Example spinner */
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #a00;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}