html,body{
	margin: 0px;
}
#account{
  	font-family: 'Roboto', sans-serif;
	display: flex;
	align-items: center;
	margin-right: 8px;
}
#account>*{
	padding-left: 8px;
}
#userImage{
	border-radius: 100%;
	width: 32px;
}
#content{
	display: flex;
    flex-direction: column;
    height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
}
@media (max-width: 900px) {				
	#content{
		margin-top: 0vh;
	}
	#list{
		height: 95vh;
	}
}

@media (max-width: 300px) {		
	#list{
		height: 85vh;
	}
}
#title{
	margin-bottom: 24px;
	text-align: center;
    font-size: 2em;
    margin-block-start: 0px;
    margin-block-end: 0px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
@media (max-width: 1443px){
	#title {
	    font-size: 1.5em;
	}	
}
#shares{
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow: auto;
    align-items: center;
}
#shares svg{
	fill:white;
}
.share.card{
	display: flex;
	flex-direction: column;
	cursor: pointer;
	align-items: start;
	margin: 8px;
	background-color: rgba(214, 114, 14 ,0.7);
	min-height: 80px;
	color: white;
}
.share.public{
	border: 5px solid black;
}
.share>.info{	
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 16px;
}

.share .infoTop{
	display: flex;
	align-items: center;
	font-size: 130%;
}
.share .infoBottom{
	display: flex;
	align-items: center;
	font-size: 70%;
}
.share .infoBottom svg{    
	width: 16px;
	height: 16px;
}
.share .infoBottom svg:hover{
	fill: white;
}
.share .infoBottom>*, .share .infoTop>*{
	padding: 4px;
}
.share>.info>.type{
	margin-right: 4px;
}
.share>.info>.name{
	font-size: 130%;
}
.share>.options{
	border-top: 1px solid #E0E0E0;
	padding: 16px;
    display: flex;
	flex-direction: column;
	width: 100%;
}
.share.editing>.options.settings{
	flex-grow: 1;
}
.share.previewing>.options.preview{
	flex-grow: 1;
	overflow-y: auto;
}
.optionsPreview{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.previewContent{
	flex-grow: 1;
	margin: 8px;
}
.share>.options.delete{
	flex-shrink: 1;	
}
.optionDescription{
	flex-grow: 1;
	display: flex;	
}
.share.editing, .share.previewing{
	position: absolute;
	z-index: 100;
    width: 80vw;
    height: 80vh;
	top: 48px;
}
.share textarea{
	width: 100%;
}
.optionsEdit{
    display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.options .optionSaveEdit{
	align-self: flex-end;
}
.editButtons{				
	display:flex;
	flex-direction: row;
	justify-content: flex-end;
}
.editButtons>*{				
	margin-right: 8px;
}
.share>.options .selection:hover{
	color: #ffd180;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.card {
  background: #546e7a;
  border-radius: 20px;
  display: inline-block;
  margin: 1rem;
  position: relative;
	  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  width: 18em;
}
.card:hover{
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.shareGroup{
	width: 100%;
	display: flex;
	justify-content: center;
	max-width: 60em;
}
.shareGroupTitle{
	margin-left: 32px;
	color: black;
}
.groupList{
	align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
}
.stat{
	display: flex;
}
.error{
	color: red;
}
input{
  color: red;
}
.tagSuggestions{
	color: black;
}
tags{
	background-color: white;
	color: black;
}
.info .type{
	position: absolute;
    top: 8px;
    right: 8px;
    font-size: 60%;
}
.info .tags{
	font-size: 75%;
}
/* .info .tags::before{
	content: "Tags: ";
} */
.share.Profile{
	background-color: rgb(248, 102, 77);
}
.share.Task{
	background-color: #f7b634;
}
.share.Project{
	background-color: #8284f7;
}
#filter{
	padding-left: 3em;    
	height: 3em;
    background-image: url(/img/filter.svg);
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-position-x: 1em;
    background-size: 1em;
    background-color: #eeeeee;
    border-radius: 0.4em;
    color: black;
    text-decoration: underline;
    flex-grow: 1;
	margin: 16px;
}
#loadMoreContainer{
	display: flex;
    justify-content: center;
}
.toggles{
	display: flex;
}

#navigationBar{
	display: flex;
	align-items: center;
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 4px 1px;
	width: 100%;
}
#navigationBar img{
	height: 48px;
	width: 48px;
}

#menu{
	background-color:white;
	position: fixed;
	top: 52px;
	right: 8px;
	padding: 8px;
	border: 1px solid #808080c7;
	z-index: 1000;
}
#menu h3{
	margin-top: 0px;
}
#menu div{
	margin: 4px;
}
#imageLogo{
	cursor: pointer;
}
#userImage{
	cursor: pointer;
}