/*
Single Post Specific Styling.
*/
/*
Global Variables

@import this file at the top of each page
template file to make variables available.
*/
/*
Mixins

Add mixins to any css page using @include

e.g.
.element{
	@include transition( background .2s ease-out )
}
*/
#single-post {
  padding-top: 20px;
}

.blog-content {
  max-width: 850px;
  margin: 0 auto;
  margin-top: 80px;
}
@media screen and (max-width: 1700px) {
  .blog-content {
    max-width: 650px;
  }
}
@media screen and (max-width: 1400px) {
  .blog-content {
    margin: 40px auto 0px 180px;
  }
}
@media screen and (max-width: 900px) {
  .blog-content {
    margin: 30px auto 30px auto;
  }
}

.blog-title {
  max-width: 850px;
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 1700px) {
  .blog-title {
    max-width: 650px;
  }
}
@media screen and (max-width: 1400px) {
  .blog-title {
    margin: 0px auto 30px 180px;
  }
}
@media screen and (max-width: 900px) {
  .blog-title {
    margin: 0px auto 30px auto;
  }
}
.blog-title #breadcrumbs {
  padding-left: 0px;
}
.blog-title .post-date {
  font-size: 14px;
}

.post-content {
  display: flex;
  flex-wrap: wrap;
}

.sticky-wrap {
  position: sticky;
  top: 0px;
  height: 1px;
}
@media screen and (max-width: 900px) {
  .sticky-wrap {
    position: relative;
    height: auto;
    order: 4;
    width: 100%;
  }
}
.sticky-wrap .sticky-inner {
  padding-top: 80px;
  max-width: 170px;
}
@media screen and (max-width: 1400px) {
  .sticky-wrap .sticky-inner {
    padding-top: 40px;
  }
}
@media screen and (max-width: 900px) {
  .sticky-wrap .sticky-inner {
    padding-top: 0px;
  }
}

.post-img {
  border-radius: 35px;
  background: #EFEDED;
  overflow: hidden;
}
.post-img img {
  display: block;
  margin: 0 auto;
}

#array-share ul {
  display: flex;
  padding: 10px 0px;
  margin-left: -8px;
}
#array-share ul li a {
  padding: 8px;
}
#array-share ul li a path, #array-share ul li a rect, #array-share ul li a circle {
  -webkit-transition: fill 0.2s ease-out;
  -moz-transition: fill 0.2s ease-out;
  -ms-transition: fill 0.2s ease-out;
  -o-transition: fill 0.2s ease-out;
  transition: fill 0.2s ease-out;
}
#array-share ul li a:hover path, #array-share ul li a:hover rect, #array-share ul li a:hover circle {
  fill: #236092;
}

/*# sourceMappingURL=single.css.map */
