/*Loader*/
.allpage{
	position:absolute;
	display:table-cell;
	top:0;
	left:0;
    width:100%;
    height: auto;
	min-height:100%;
	background-color:rgba(0,0,0,0.7);
	text-align:center;
	vertical-align:middle;
	z-index:999999;
}
.loader{
	height: 10em;
    position: relative; 
}
.loader p {
    margin: 0;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
section.ldr {
	background: black;
	color: white;
	border-radius: 1em;
	padding: 1em;
	position: absolute;
	font-size:36px;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%) 
}

/*Page*/
section {
    background: rgba(245,245,245,0.7);
    border: 5px solid rgba(245,245,245,0.7);
    border-radius: 10px;
    max-width:800px; 
    margin:60px auto 0 auto;
    padding: 10px;
    z-index: 1;
    height: calc(100% - 60px);
    overflow-y: auto;
    position: relative;
}
header{
    background: whitesmoke;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    height: 50px;
    z-index: 200;
    opacity: 90%;
}
.logo {
    opacity: 100% !important;
    position: relative;
    display: inline-block;
    border: violet;
    height: 45px;
}

/*Posts in list*/
.post {
    opacity: 100% !important;
    margin-bottom: 40px;
}
.post:last-of-type{
    margin-bottom: 4px !important;
}
.post > .post-title {
    font-size: larger;
    font-weight: bold;
}
.post > .post-title:hover{
    color: yellowgreen;
}
.post-nav {
    text-decoration: solid;
    font-style: italic;
    font-variant: all-petite-caps;
}
.readmore {
    font-variant: small-caps;
    color: dimgrey;
}

/*Post page*/
.post-comment {
    background: #37b4ff52;
    border-radius: 10px;
    padding: 7px;
    margin-top: 10px;
}
.post-fullbody {
    background: #37b4ff52;
    border-radius: 7px;
    padding: 5px;
}
.post-comment > .comment-user {
    display: block;
}
.post-comment > .comment-body {
    display: block;
    background: #ffffffab;
    border-radius: 7px;
    padding: 5px;
}

/*User info*/
.userinfo {
    opacity: 100% !important;
    width: 100%;
}
.userinfo > .user-picture {
    display: inline-block;
    width: 300px;
    height: 300px;
    max-height: 50vw;
    max-width: 50vw;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    margin: 10px 0;
    border-radius: 50%;
}
.userinfo > .user-details {
    display: inline-block;
    width: calc(100% - min(305px, 51vw));
    vertical-align: top;
}
.user-posts {
    margin-top: 15px;
}
.userinfo > .user-name {
    font-size: 50px;
}
.userinfo > .user-picture > img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.user-post {
    display: block;
    width: 100%;
    border-bottom: 1px solid aliceblue;
}
.user-post:last-child {
    border: none;
}
.user-post-time {
    float: right;
    font-size: smaller;
    font-variant: small-caps;
    color: dimgrey;
}


/* Small screens */
@media screen and (max-width: 600px) {
    .userinfo > .user-picture {
        display: block;
        width: 94vw;
        height: 94vw;
        max-height: 94vw;
        max-width: 94vw;
        overflow: hidden;
        position: relative;
        background: rgba(0, 0, 0, 0.5);
        margin: 10px 0;
        border-radius: 50%;
    }
    .userinfo > .user-details {
        display: block;
        width: 100%;
    }
  }