@charset "UTF-8";
/* CSS Document */

/*    Download CV button    */
.btn-on-right{
	display: inline-block;
	float:right;
		}

.btn-style {
	padding: 4px 12px 3px 12px;
	border: 1px solid var(--my-hovered-sub-header-color);
	color: var(--my-font-color);
	font-size: 100%;
	font-weight: bold;
	-webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-decoration: none;
}

.btn-style:hover {
	border-color: var(--my-emph-color);
    color: var(--my-emph-color);
}


/*    Buttons on papers    */
#bs-collapse .panel-heading .btn-group.dropdown a:before
{
	display: none;
}

.btn-pos{
    float:right;
	width: auto;
	}

.btn-size {	
	display:inline-block;
	padding: 0px 7px 1px 7px;
	background-color: var(--my-light-grey);
	border-radius: 5px;
}


.dropbtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
	font-family: 'Material Icons';
	font-size: 80%;
	margin: 0px 0px; 
	padding: 0px 3px;
}

.dropdown:hover .dropbtn {
	color: var(--my-emph-color);
	transition: 0.3s;
	
}

.dropdown-content {
	background: var(--my-sub-header-bg-color);
/*	border-bottom: 1px dashed white;*/
    display: none;
    position: absolute;
    right: 0;
    min-width: 65px;
	border: none;
}

.dropdown-content a {
    color: var(--my-sub-header-font-color);
    padding: 3px 10px;
    display: block;
	font-size: 75%;
}

.dropdown-content a:hover {
	background-color: var(--my-hovered-sub-header-color);
	text-decoration: none;
	color: var(--my-sub-header-font-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

