* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-y: scroll;
}
a {
  font-weight: bold;
  color: #50b3ef;
  text-decoration: none;
}
a.disabled {
  color: #808080;
  text-decoration: none !important;
}
a:hover,
a:active {
  text-decoration: underline;
}
.header-container {
  position: relative;
  background: black;
  color: white;
  font: 15pt 'Arial Black', 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
}
@media screen and (max-width: 899px) {
  .header-container {
    /* mobile only*/
  }
  .header-container .center {
    padding: 0px;
  }
}
.header-container div.header {
  padding-left: 20px;
  box-sizing: border-box;
  font-size: 15pt;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-bottom: 1px solid #333333;
}
.header-container div.header a {
  color: white;
  text-decoration: none;
}
@media screen and (min-width: 900px) {
  .header-container div.header {
    font-size: 22pt;
    height: 80px;
    line-height: 80px;
    width: 340px;
    border-bottom: 0px;
    border-right: 1px solid #333333;
    margin-right: 15px;
  }
}
.header-container #navmenu-label {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 0;
  border: 1px solid #333333;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
  transition: background 0.1s ease 0.1s;
}
.header-container #navmenu-label > span {
  display: block;
  position: absolute;
  top: 17px;
  left: 4px;
  right: 4px;
  height: 5px;
  background: white;
  transition: background 0s 0.2s;
}
.header-container #navmenu-label > span:before,
.header-container #navmenu-label > span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: white;
  content: "";
  transition-duration: 0.2s, 0.2s;
  transition-delay: 0.2s, 0s;
}
.header-container #navmenu-label > span:before {
  top: -10px;
  transition-property: top, transform;
}
.header-container #navmenu-label > span:after {
  bottom: -10px;
  transition-property: bottom, transform;
}
@media screen and (min-width: 900px) {
  .header-container #navmenu-label {
    display: none;
  }
}
.header-container #navmenu {
  display: none;
}
@media screen and (max-width: 899px) {
  .header-container #navmenu:checked ~ nav {
    /* mobile only*/
    display: block;
  }
}
.header-container #navmenu:checked ~ #navmenu-label {
  background: #262626;
}
.header-container #navmenu:checked ~ #navmenu-label > span {
  background: none;
}
.header-container #navmenu:checked ~ #navmenu-label > span:before,
.header-container #navmenu:checked ~ #navmenu-label > span:after {
  transition-delay: 0s, 0.2s;
}
.header-container #navmenu:checked ~ #navmenu-label > span:before {
  top: 0;
  transform: rotate(45deg);
}
.header-container #navmenu:checked ~ #navmenu-label > span:after {
  bottom: 0;
  transform: rotate(-45deg);
}
.header-container nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header-container nav {
    display: inline-block;
  }
}
.header-container nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-container nav ul li {
  display: block;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  height: 40px;
  line-height: 36px;
}
.header-container nav ul li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  width: 100%;
}
.header-container nav ul li a span {
  position: relative;
}
.header-container nav ul li a span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #50b3ef;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.header-container nav ul li.active a span,
.header-container nav ul li a:hover span {
  color: #50b3ef;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.header-container nav ul li.active a span:before,
.header-container nav ul li a:hover span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
@media screen and (min-width: 900px) {
  .header-container nav ul li {
    display: inline-block;
    width: 120px;
    height: 80px;
    line-height: 76px;
  }
  .header-container nav ul li a {
    display: inline-block;
  }
}
.center {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0px 10px;
}
.center.narrow {
  max-width: 900px;
}
@media screen and (min-width: 1200px) {
  .center {
    max-width: 1500px;
  }
}
@media screen and (min-width: 900px) {
  .center .main {
    box-sizing: border-box;
    display: inline-block;
    width: 70%;
    vertical-align: top;
    padding-right: 10px;
  }
  .center .side {
    box-sizing: border-box;
    display: inline-block;
    width: 30%;
    vertical-align: top;
  }
}
.social-media {
  display: block;
  list-style: none;
  margin: 10px 0px;
  padding: 0px;
  background: black;
  color: white;
  font-size: 15pt;
  font-family: 'Arial Black', 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
}
.social-media li {
  border-bottom: 1px solid #333333;
}
.social-media li:last-of-type {
  border-bottom: 0px;
}
.social-media li a {
  display: block;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  height: 100%;
  color: white;
  text-decoration: none;
}
.social-media li a:hover {
  background: #1a1a1a;
}
.social-media li a:active {
  background: #333333;
}
.social-media li a img {
  width: 48px;
  height: 48px;
  vertical-align: middle;
  margin-right: 10px;
}
.post-header {
  position: relative;
  text-align: center;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}
.post-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.post-header > div.alert {
  position: absolute;
  top: 4px;
  left: 50%;
  color: red;
  font-size: 14pt;
  font-weight: bold;
  transform: translate(-50%, 0);
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  animation: animScale 0.5s forwards 2s;
}
.post-header > div.post-title {
  position: relative;
  top: 80px;
}
.post-header > div.post-title > a {
  font-size: 25pt;
}
.post-header > div.post-title > div {
  color: #cccccc;
}
.post-header > div.post-title > input {
  font-weight: bold;
  color: #50b3ef;
  font-size: 25pt;
  text-decoration: underline;
  width: 100%;
  border: 0px;
  margin: 0px;
  padding: 0px;
  background: none;
  text-align: center;
}
.post-header > div.post-title > div > input {
  border: 0px;
  margin: 0px;
  padding: 0px;
  background: none;
  color: #cccccc;
  text-align: center;
}
.post-header > div.post-controls {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 10px;
  text-align: left;
  color: #cccccc;
  background: rgba(0, 0, 0, 0.3);
}
.post-header > div.post-header-image-change {
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 10px;
  text-align: right;
  color: #cccccc;
  background: rgba(0, 0, 0, 0.3);
  font-weight: bold;
}
.post-header > div.post-header-image-change #post-header-image-edit {
  display: none;
}
.post-header > div.post-header-image-change #post-header-image-edit:checked ~ label {
  color: #ffffff;
}
.post-header > div.post-header-image-change #post-header-image-edit:checked ~ div {
  display: inline-block;
}
.post-header > div.post-header-image-change > div {
  display: none;
}
.post-content {
  font-size: 14pt;
  text-align: justify;
}
.post-content img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.ptop {
  padding-top: 10px;
}
.blog {
  padding-bottom: 10px;
}
.blog .post {
  margin-top: 10px;
  background: #f2f2f2;
}
.blog .post .post-title {
  padding: 10px 0px 0px 10px;
}
.blog .post .post-title > a {
  font-size: 25pt;
}
.blog .post .post-title > div {
  margin-top: 8px;
  color: #1a1a1a;
}
.blog .post .post-title .tags {
  margin-left: 8px;
}
.blog .post .post-content {
  padding: 10px;
}
.blog .post .continue-reading {
  padding: 0px 20px 10px 20px;
}
.tag {
  font-weight: 600;
  font-size: 90%;
  display: inline-block;
  padding: 0px 4px;
  margin: 0px 2px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #333333 !important;
}
#editor {
  width: 100%;
  min-height: 400px;
}
@keyframes animScale {
  0% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale3d(1, 1, 1);
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, -40px, 0) scale3d(0.1, 0.2, 1);
  }
}
.page-wrapper {
  min-height: 100%;
  margin-bottom: -68px;
}
.footer-container {
  background: black;
  color: white;
  padding: 10px;
  text-align: right;
}
.footer-container .social-media-footer {
  display: block;
  list-style: none;
  padding: 0px;
  background: black;
  color: white;
  font-size: 15pt;
  font-family: 'Arial Black', 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
}
.footer-container .social-media-footer li {
  display: inline-block;
}
.footer-container .social-media-footer li a {
  display: block;
  width: 100%;
  height: 100%;
  color: white;
  text-decoration: none;
}
.footer-container .social-media-footer li a:hover img {
  opacity: 0.7;
}
.footer-container .social-media-footer li a:active img {
  opacity: 0.9;
}
.footer-container .social-media-footer li a img {
  width: 48px;
  height: 48px;
  vertical-align: middle;
  opacity: 0.5;
}
code {
  display: inline-block;
  background: #e6e6e6;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 1px;
}
pre code {
  padding: 4px;
  width: 100%;
  overflow-x: auto;
}
.post-content ul > li > a {
  font-size: 11pt;
  word-wrap: break-word;
  word-break: break-word;
}
@media screen and (min-width: 900px) {
  #twitter {
    min-height: 900px;
  }
}
.nav-links {
  margin-top: 10px;
  text-align: center;
}
.nav-links > a {
  margin: 0px 20px;
}
.config-button {
  height: 34px;
  margin-left: 4px;
  padding: 4px 10px;
  border: none;
  background: #eee;
  outline: none;
}
.config-button:hover {
  background: #ddd;
  cursor: pointer;
}
.config-button:active {
  position: relative;
  top: 1px;
}
.config-button.save {
  background: #007fff;
  color: white;
}
.config-button.save:hover {
  background: #0066cc;
}
.config-button.reset {
  background: #f22;
  color: white;
}
.config-button.reset:hover {
  background: #ee0000;
}
.config {
  margin: 10px 0px;
}
.config > .title {
  background: #ccc;
  min-height: 50px;
  text-align: right;
}
.config > .title > h1 {
  font-size: 25px;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0px;
  line-height: 30px;
  float: left;
}
.config > .title .config-controls {
  display: inline-block;
  vertical-align: middle;
  margin-top: 8px;
  margin-right: 8px;
}
.config > .title .config-controls > input {
  height: 34px;
  margin-left: 4px;
  padding: 4px 10px;
  border: none;
  background: #eee;
  outline: none;
}
.config > .title .config-controls > input:hover {
  background: #ddd;
  cursor: pointer;
}
.config > .title .config-controls > input:active {
  position: relative;
  top: 1px;
}
.config > .title .config-controls > input.save {
  background: #007fff;
  color: white;
}
.config > .title .config-controls > input.save:hover {
  background: #0066cc;
}
.config > .title .config-controls > input.reset {
  background: #f22;
  color: white;
}
.config > .title .config-controls > input.reset:hover {
  background: #ee0000;
}
.config .section-list {
  background: #d8d8d8;
}
@media screen and (min-width: 900px) {
  .config .section-list {
    display: inline-block;
    vertical-align: top;
    width: 20%;
  }
}
.config .section-list ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.config .section-list ul li {
  height: 50px;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  box-sizing: border-box;
  padding: 5px;
}
.config .section-list ul li a {
  color: black;
  text-decoration: none;
}
.config .section-list ul li:hover {
  background: #c0c0c0;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .config .section-list ul li {
    border-bottom: 1px solid #d0d0d0;
  }
}
.config .sections {
  border: 1px solid #d0d0d0;
}
@media screen and (min-width: 900px) {
  .config .sections .sections-container {
    border-left: 1px solid #d0d0d0;
  }
}
@media screen and (min-width: 900px) {
  .config .sections .sections-container {
    display: inline-block;
    vertical-align: top;
    width: 80%;
  }
}
.section > .title {
  background: #e5e5e5;
}
.section > .title > h1 {
  font-size: 25px;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0px;
  line-height: 30px;
}
.section > .fields > .field {
  border-bottom: 1px solid #ddd;
}
.section > .fields > .field:last-of-type {
  border-bottom: none;
}
.section > .fields > .field > .info {
  padding: 10px;
}
.section > .fields > .field > .info > h2.title {
  font-size: 20px;
  margin-top: 0px;
}
.section > .fields > .field > .info > .subtitle {
  font-size: 15px;
}
@media screen and (min-width: 900px) {
  .section > .fields > .field > .info {
    display: inline-block;
    vertical-align: top;
    width: 25%;
  }
}
.section > .fields > .field > .container {
  padding: 10px;
}
@media screen and (min-width: 900px) {
  .section > .fields > .field > .container {
    display: inline-block;
    vertical-align: top;
    width: 75%;
  }
}
@media screen and (min-width: 900px) {
  .section > .fields > .field > .container {
    padding-left: 0px;
  }
}
