.blog-card {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5em;
  background: #fff;
  line-height: 1.4;
  font-family: sans-serif;
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
  float:left;
}
.blog-card-side {
    display:inline-block;
    position:relative;
    overflow: hidden;
    width:100%;
    box-shadow: 0 3px 7px -1px rgba(14, 15, 21, 0.52);
    margin-bottom: 0.5em;
    background: #fff;
    border-radius: 5px;
}
.blog-card-side:before{
    content: "";
    display: block;
    padding-top: 50%;
}
.blog-post-title-side {
    background: #1e354bb2;
    color: aliceblue;
    font-size:1.3em;
    z-index:14;
    position:absolute;
    bottom:0;
    width:100%;
}
.blog-card-side-cover,
.square-content {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: #000000;
    text-align: center;
}

.blog-card-side-cover {
    background-size: cover;
    flex:fit-content;
    background-origin: content-box;
    background-repeat: no-repeat;
    background-position: top;
}

.post h1 {
    font-size:4.4em;
}
.superem {
    transform: rotate(3deg);
    display: block;
    font-size: 112%;
    font-weight: bold;
}

@media (max-width: 1199px) {
    #sidebar {
        display:block;
        clear:left;
        padding-left:0px;
    }
    .sidebar-knocked {
        margin-top:-1em;
    }
    .note-video-clip {
        max-width:97%;
    }
}
@media (min-width: 1200px) {
    .sidebar-knocked {
        margin-top:-6em;
    }
}

#sidebar h4,
#side-box h4 {
    text-shadow: -1px -1px yellow, 1px 1px orange, 2px 2px orange;
    color: blue;
    font-weight: bold;
    font-size: 2em;
    transform: rotate(-5deg);
    line-height: 1.2em;
    margin: 0 0 16px 0;
}

.blog-card a {
  color: inherit;
}
.blog-card a:hover {
  color: #5acfd6;
}
.blog-card:hover .photo {
  transform: scale(1.3) rotate(3deg);
}
.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}
.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}
.blog-card .details,
.blog-card .details ul {
  margin: auto;
  padding: 0;
  list-style: none;
}
.blog-card .details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  margin: auto;
  transition: left 0.2s;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  width: 100%;
  font-size: 0.9rem;
}
.blog-card .details a {
  -webkit-text-decoration: dotted underline;
          text-decoration: dotted underline;
}
ul.tags li,
.blog-card .details ul li {
    display: inline-block;
}
.blog-card .details .author:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "";
}
.blog-card .details .date:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "";
}
.blog-card .details .tags ul:before {
  font-family: FontAwesome;
  content: "";
  margin-right: 10px;
}
.tags li,
.blog-card .details .tags li {
  margin-right: 2px;
}
.blog-card .details .tags li:first-child {
  margin-left: -4px;
}
.blog-card .description {
  padding: 1rem;
  background: #fff;
  color:#232323;
  position: relative;
  z-index: 1;
}
.blog-card .description h1,
.blog-card .description h2 {
  font-family: Poppins, sans-serif;
}
.blog-card .description h1 {
  line-height: 1.5;
  margin: 0;
  font-size: 2rem;
}
.blog-card .description h2 {
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-top: 5px;
}
.blog-card .description .read-more {
  text-align: right;
}
.blog-card .description .read-more a {
  color: #26d5ec;
  display: inline-block;
  position: relative;
}
.blog-card .description .read-more a:after {
  content: "";
  font-family: FontAwesome;
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition: margin 0.3s, opacity 0.3s;
}
.blog-card .description .read-more a:hover:after {
  margin-left: 5px;
  opacity: 1;
}
.blog-card p {
  position: relative;
  margin: 1rem 0 0;
}
.blog-card p:first-of-type {
  margin-top: 1.25rem;
}
.blog-card p:first-of-type:before {
  content: "";
  position: absolute;
  height: 6px;
  background: #eaeaea;
  min-width: 20%;
  max-width: 134px;
  width: 8em;
  top: -0.75rem;
  border-radius: 9px;
}
.blog-card:hover .details {
  left: 0%;
}
@media (min-width: 640px) {
    .blog-card {
        flex-direction: row;
        max-width: 49%;
        margin-right: 6px;
    }
    .blog-card .meta {
        flex-basis: 40%;
        height: auto;
    }
    .blog-card .description {
        flex-basis: 60%;
    }
    .blog-card .description:before {
        transform: skewX(-3deg);
        content: "";
        background: #fff;
        width: 30px;
        position: absolute;
        left: -10px;
        top: 0;
        bottom: 0;
        z-index: -1;
    }
    .blog-card.alt {
        flex-direction: row-reverse;
    }
    .blog-card.alt .description:before {
        left: inherit;
        right: -10px;
        transform: skew(3deg);
    }
    .blog-card.alt .details {
        padding-left: 25px;
    }
}

.tags-bottom:before, .tags:after {
  content: '';
  display: table;
}

.tags-bottom:after {
  clear: both;
}

.tags-bottom li {
    position: relative;
    float: left;
    margin: 0 0 8px 12px;
	list-style:none;
}
.tags-bottom li:active {
  margin-top: 1px;
  margin-bottom: 7px;
}

.tags-all li:after {
  content: '';
  z-index: 2;
  position: absolute;
  top: 10px;
  right: -2px;
  width: 5px;
  height: 6px;
  opacity: .95;
  background: #eb6b22;
  border-radius: 3px 0 0 3px;
  -webkit-box-shadow: inset 1px 0 #99400e;
  box-shadow: inset 1px 0 #99400e;
}

.tags a, .tags-all span {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tags a {
  height: 26px;
  line-height: 23px;
  padding: 0 9px 0 8px;
  font-size: 12px;
  color: #555;
  text-decoration: none;
  text-shadow: 0 1px white;
  background: #fafafa;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: #dadada #d2d2d2 #c5c5c5;
  border-radius: 3px 0 0 3px;
  background-image: -webkit-linear-gradient(top, #fcfcfc, #f0f0f0);
  background-image: -moz-linear-gradient(top, #fcfcfc, #f0f0f0);
  background-image: -o-linear-gradient(top, #fcfcfc, #f0f0f0);
  background-image: linear-gradient(to bottom, #fcfcfc, #f0f0f0);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.tags-bottom a {
	border-width: 1px 1px 1px 1px;
	border-radius: 3px 3px 3px 3px;
}

.tags-bottom a:hover span {
  padding: 0 7px 0 6px;
  max-width: 40px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 1px 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.tags-bottom span {
  position: absolute;
  top: 1px;
  left: 100%;
  z-index: 2;
  overflow: hidden;
  max-width: 0;
  height: 24px;
  line-height: 21px;
  padding: 0 0 0 2px;
  color: white;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.3);
  background: #eb6b22;
  border: 1px solid;
  border-color: #d15813 #c85412 #bf5011;
  border-radius: 0 2px 2px 0;
  opacity: .95;
  background-image: -webkit-linear-gradient(top, #ed7b39, #df5e14);
  background-image: -moz-linear-gradient(top, #ed7b39, #df5e14);
  background-image: -o-linear-gradient(top, #ed7b39, #df5e14);
  background-image: linear-gradient(to bottom, #ed7b39, #df5e14);
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: padding, max-width;
  -moz-transition-property: padding, max-width;
  -o-transition-property: padding, max-width;
  transition-property: padding, max-width;
}

.green li:after {
  background: #65bb34;
  -webkit-box-shadow: inset 1px 0 #3a6b1e;
  box-shadow: inset 1px 0 #3a6b1e;
}

.green span {
  background: #65bb34;
  border-color: #549b2b #4f9329 #4b8b27;
  background-image: -webkit-linear-gradient(top, #71ca3f, #5aa72e);
  background-image: -moz-linear-gradient(top, #71ca3f, #5aa72e);
  background-image: -o-linear-gradient(top, #71ca3f, #5aa72e);
  background-image: linear-gradient(to bottom, #71ca3f, #5aa72e);
}

.blue li:after {
  background: #56a3d5;
  -webkit-box-shadow: inset 1px 0 #276f9e;
  box-shadow: inset 1px 0 #276f9e;
}

.blue span {
  background: #56a3d5;
  border-color: #3591cd #318cc7 #2f86be;
  background-image: -webkit-linear-gradient(top, #6aaeda, #4298d0);
  background-image: -moz-linear-gradient(top, #6aaeda, #4298d0);
  background-image: -o-linear-gradient(top, #6aaeda, #4298d0);
  background-image: linear-gradient(to bottom, #6aaeda, #4298d0);
}

.post {
    background-color: #fff;
    border-radius: 6px;
    padding: 1px 0 0 0;
    margin: 0;
	color:#232323;
}
.note-editable hr,
.post hr {
    margin-top: -3px;
    height: 5px;
    border: none;
    z-index: 999;
    position: relative;
    background-color: #000;
    padding: 0;
    clear: both;
}
.note-editable h1,
.post h1 {
    margin: 0 0 0 20px;
}
.note-editable ol,
.post ol {
    padding-left:0.8em;
}
.note-editable li,
.post li {
    padding:0.2em;
}
.note-editable p,
.post p {
    padding:0 0 0 0.1em;
    font-size:14px;
    text-indent: 0.5em;
}
p.no-indent, .post p.no-indent {
    text-indent: 0;
}
.post p.cover {
    padding:0; text-align:center;
}
p.cover img {
    padding:0;width:100%;
}
.note-editable p.no-padding,
.post p.no-padding {
    padding:0;
}

figure {
    background-color:#000000;
    padding:1px;
    color: #d9dfdf;
    text-align: center;
}
figure.align-left {
    float:left;
    margin-right:0.2em;
    text-align: right;
}
figure.align-right {
    float:right;
    margin-left:0.2em;
    text-align: left;
}
figure.align-center {
    float:none;
    margin:0 auto;
    text-align: center;
    clear:both;
}
figcaption {
    background-color:#000000;
    color: #d9dfdf;
    text-align: center;
}
.floatCenter {
	display:block;
	margin:0 auto;
}

.error {
    color: #ff1c1c;
    padding: 0.5em;
    background-color: #f4eaea;
    text-align: center;
    width: 100%;
}
