/* general */
html {
    font-size: 85%;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

p {
    line-height: normal;
    margin: 1rem 0;
}

em, strong {
    color: #d7bd94;
}

h1 {
    font-size: 2rem;
}

h2 {
    color: #d7bd94; 
}

blockquote {
    color: #bbbcbd; 
    border-left: 1px solid gray;
    padding: 0 10px;
} 

/* image item */
.imageitem {
    text-align: center;
}

.imageitem-title {
    font-weight: bold;
}

.imageitem-subtitle {
    font-style: italic;
    color: #bbbcbd;
}

.imageitem-image {
    margin: 3px;
    border-radius: 5px;
    border: 1px solid #d3d3d3;
    background-color: white;
    transition: transform .2s;
}

.imageitem-image:hover {
    transform: scale(1.05); 
}

.imageitem-description {
    text-align: left;
	color: #bbbcbd;
	font-size: 0.9rem;
	margin: 3px;
}

.square-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.person .imageitem-image {
    clip-path: circle();
    object-fit: cover; 
    position: absolute;
    width: 95%;
    height: 95%;
    left: 0px;
    border: 0;
}

.person .imageitem-description {
    text-align: center;
}

/* @media screen and (max-width: 576px) {
    .person .imageitem-image {
        width: 280px;
    } 
} */

/* publication item */
.publication p {
    margin: 3px;
}
 
.pubnum {
    text-align: center;
    font-size: 0.9rem;
    color: #bbbcbd;
}

.pub1col img {
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    margin: 3px;
    background-color: #ffffff;
    transition: transform .2s;
}

.pub1col img:hover {
    transform: scale(1.05);  
}

.honor-tag {
    color: #fed701;
}

.venue-tags {
    float: right;
}

.venue-tag {
    background-color: #027193;
	color: #fefefe;
	border-radius: 3px;
	padding: 1px 2px;
	margin: 2px; 
	font-size: 0.8rem;
	font-style: italic;
    width: fit-content;
    height: 1.25rem;
}

/* publication tab */
/* .pubcontainer .nav-tabs li a {
    border-color: transparent; 
    background-color: transparent;
}
 
.pubcontainer .nav-tabs a:hover, 
.pubcontainer .nav-tabs a.active {
    color: #ac900d;
    background-color: transparent;
    border-color: transparent;
    border-bottom-color: white;
    border-bottom-width: 2px;
} */

#pubtype-filter {
    color: #ac900d;
    background-color: transparent; 
}

.person .imageitem-image {
    background-color: transparent;    
}

.google-maps {
    position: relative;
    padding-bottom: 75%; // This is the aspect ratio
    height: 0;
    overflow: hidden;
}

.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}