/* --- General --- */
@import url("static/css/fonts.css");
@font-face {
    font-family: normal 1.21em KaTeX_Main, Times New Roman, serif;
    unicode-range: U+30-39;
}

:root {
  --scroll-bar-color: hsl(var(--hue-color), 15%, 85%);
  --scroll-thumb-color: hsl(var(--hue-color), 15%, 70%);
  --text-color-light: hsl(var(--hue-color), 10%, 65%);
}
::-webkit-scrollbar {
  width: 0.8rem;
  background-color: var(--scroll-bar-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}


/* Blogpost */

.blog-post {
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
.blog-post {
  padding-top: 15px;
  padding-left: 25px;
  padding-right: 25px;
  }
}

.container {
}
.popout-link {
  position: relative;
  color: #333;
}
a.external-link {
  color: blue;
  text-decoration: underline;
}


.popout-link:hover + .container,
.container:hover {
  display: block;
}
.popout-link {
  position: relative;
  color: #333;
}

.popout-container {
  display: none;
}

.popout-link:hover + .popout-container,
.popout-container:hover {
  display: block;
}

/* Body */

body {
  font-family: 'Merriweather', serif, Imperial, Georgia, 'Times New Roman', Times, serif;
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  position: relative;
  background: #FFF;
  display: flex;
  flex-flow: column;
  height: 100vh;
}



@media only screen and (max-width: 767px) {

body {
  font-size: 15px;
  }
}

.numbers {
  font-family: 'KaTeX_Main';
  overflow-x: auto;
  overflow-y: auto;
  font-size: 18px;
  font-variant-numeric: normal;
}


.numerals {
  font-family: 'KaTeX_Main';
  overflow-x: auto;
  overflow-y: auto;
  font-size: 18px;
  font-variant-numeric: normal;
}


sub,
sup  {

  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    font-size: 11px;
    line-height: 0;
    font-weight: 800;
    vertical-align: baseline;
}
sub a,
sup a {

  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    font-size: 11px;
    line-height: 0;
    font-weight: 800;
    color: orange;
    vertical-align: baseline;
}



/* Blockquote */

blockquote {
  font-family: 'Merriweather', serif, Imperial, Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  line-height: 1.4;
  background-color: #3f8f9b0D;
  opacity: 0.90;
  color: #111111;
  border-left: 1.5px solid #3f8f9b;
  padding-left: 25px;
  padding-top: 13px;
  padding-bottom: 21px;
  margin-top: 15px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {

blockquote {
  font-size: 12px;
  }

}


p {
  line-height: 2;
  margin: 6px 0;
}

p + p {
    margin: 24px 0 6px 0;
}

p a {
  /* text-decoration: underline */
  color: #4895abcc;
}

a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
}

a:hover, a:focus {
    background-size: 100% 2px;
}


h1,h2,h3,h4,h5,h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  text-align: center;
}


@media only screen and (max-width: 767px) {
h1,h2,h3,h4,h5,h6 {
  font-size: 22px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  text-align: center;
}
}
ol {
    display: block;
    list-style-type: decimal;
    padding-inline-start: 40px;
    opacity: 0.5;
}

ul {
    display: block;
    list-style-type: disc;
    padding-inline-start: 40px;

}

@media only screen and (max-width: 767px) {

ol {
    display: block;
    list-style-type: decimal;
    padding-inline-start: 25px;

}

ul {
    display: block;
    list-style-type: disc;
    padding-inline-start: 25px;

}
}

#references {
    font-size: 16px;
    padding-top: 3px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 25px;
    line-height: 4;
}



@media only screen and (max-width: 767px) {

#references {
    font-size: 12px;
    padding-left: 25px;
    padding-right: 15px;
    overflow-x: hidden;
}

}

a {
  color: #4895abcc;
}
a:hover,
a:focus {
  color: #4895abcc;
}

/* Container */

/* Normal */
.container[role=main] {
  margin-bottom:50px;
  padding-left: 125px;
  padding-right: 125px;
  flex: 1 0 auto;
  overflow-x: auto;
}

@media only screen and (min-width: 1450px) {
 .container[role=main] {
  margin-bottom:50px;
  padding-left: 75px;
  padding-right: 75px;
  flex: 1 0 auto;
  overflow-x: auto;
  }
}

@media only screen and (max-width: 767px) {

.container[role=main] {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0px;
  padding-right: 0px;
  overflow-x: hidden;
  }
}

#sidebar-style{
  border-left: 2px solid #eee;
  margin: auto;
  width: 200px;
  border-top: 2px solid #eee;
  border-right: 2px solid #eee;
  border-bottom: 2px solid #eee;
  padding: 20px;
}

.sidebar {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  padding: 7.5px;
}

@media only screen and (max-width: 767px) {
.sidebar {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 15px;
}
}


.scrollToTopBtn {
display: block;
    background-color: #d46c5b;
    opacity: 0.4;
    border: 1px solid;
    border-color: #666666;
    border-radius: 100%;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    line-height: 48px;
    width: 38px;
    height: 38px;
    position: fixed;
    bottom: 15px;
    right: 15px;
  /* also add a translate effect */
  transform: translateY(100px);
  /* and a transition */
  transition: all .20s ease
}

.showBtn {
  opacity: 0.40;
  transform: translateY(0);
  scroll-behavior: smooth;
   color: #ffffff;
}

@media only screen and (max-width: 767px) {
.scrollToTopBtn {
  position: fixed;
  width:  36px;
  height: 36px;
  cursor: pointer;
display: block;
  text-align: center;
  padding-top:-4px;
  padding-bottom: 12px;
 padding-right:3px;
  opacity: 0.4;
  /* also add a translate effect */
  transform: translateY(100px);
  /* and a transition */
  transition: all .20s ease
}

.showBtn {
  width: 36px;
  height: 36px;
  opacity: 0.40;
  transform: translateY(0)
}
}

hr.small {
  max-width: 100px;
  margin: 15px auto;
  border-width: 4px;
  border-color: #57a4ba;
  border-radius: 3px;
  opacity: 50%;
}

.main-content {
  padding-top: 80px;
}

@media only screen and (min-width: 768px) {
  .main-content {
    padding-top: 130px;
  }
}

.main-explain-area {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 15px inherit;
}

.hideme {
  display: none;
}

div.panel-body a.list-group-item {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-radius: 0;
  border: none;
}
div.panel-group .panel {
    border-radius: 0;
}
div.panel-group .panel+.panel {
    margin-top: 0;
}

div.panel-body a.list-group-item.view-all {
  font-weight: 600;
}

h4.panel-title {
   text-transform: capitalize;
   font-size: 23px;
}

::-moz-selection {
  color: white;
  text-shadow: none;
  background: #0085a1;
}
::selection {
  color: white;
  text-shadow: none;
  background: #99c7c7;
}
img::selection {
  color: white;
  background: transparent;
}
img::-moz-selection {
  color: white;
  background: transparent;
}

figure {
    margin: auto;

}

img {
  display: block;
  margin: auto;
  max-width: 100%;

}

figcaption {
    color: #666666;
    font-size: 12px;
    margin-top: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    background-color: #3f8f9b0D;
    opacity: 0.99;
    max-width: 100%;
    line-height: 1.85;
    border-width: 1px;
    border-color: #57a4ba;
    border-radius: 3px;
}

.img-title {
  height: 250px;
  width: 300px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {

figcaption {

  color: #888;
  font-size: 10px;
  margin-top: 7.5px;
  padding-top: 7.5px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}
}


#disqus_thread {
  margin-top: 30px;
  color: #444;
}

.comment-count {
  color: #888888;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .disqus-comments {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
.disqus-comments {
  margin-top: 30px;
  padding-left: 25px;
  padding-right: 25px;
}
}

/* --- Navbar --- */

.navbar-custom {
  background: #FFFFFF;
  border-bottom: 0.5px solid #EAEAEA;
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: gray;
}

.navbar-custom .nav li a,
.navbar-custom .nav selection {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;

}

@media only screen and (max-width: 767px) {

.navbar-custom .nav li a {
  font-size: 12px;
}

}

.navbar-custom .navbar-brand,
.navbar-custom .nav li a {
  font-weight: 500;
  color: #444444;

}

.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-brand:focus ,
.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus {
  background: #d46c5b;
  opacity: 0.6;
  color: #ffffff;
  transition: all 0.23s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
.navbar-logo {
left:100px;
}

}
.navbar-logo {
    width: 80px;
  height: 50px;
left:10px;
margin-bottom: -10px;
position: relative;
}

.navbar-custom .navbar-brand-logo {
  padding-top: 0;
  -webkit-transition: padding .5s ease-in-out;
  -moz-transition: padding .5s ease-in-out;
  transition: padding .5s ease-in-out;
}

.navbar-version {
    position: relative;
    display: block;
    padding: .3em .3em .3em .3em;
    font-size:85%;
    font-weight: bold;
    font-family: 'PT Serif', serif;
    line-height: 2;
    color: #dedede;
    border-radius: .25em;
    background-color: #d46c5b;
    opacity: 0.6;
    left: -300px;
    height: 30px;
}


.navbar-custom .navbar-version li a:hover,
.navbar-custom .navbar-version a:hover,
.navbar-custom .navbar-version li a:focus,
.navbar-custom .navbar-version a:focus{
   color: #ffffff;
   background: #ffffff;
}

.navbar-version input[type="tooltip"]{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

.navbar-version:hover,
.navbar-version:focus,
.navbar-version li a:hover,
.navbar-version a:hover,
.navbar-version li a:focus,
.navbar-version a:focus{
  position: relative;
  font-family: 'PT Serif', serif;
  white-space: normal;
  cursor:pointer
  text-shadow: 5;
  z-index: 1070;
  border-width: 2px 2px 2px 2px;
  text-overflow: ellipsis;
  letter-spacing: normal;
  word-break: break-word;
  word-spacing: normal;
  word-wrap: normal;
  box-sizing: border-box;
  background-color: #d46c5b;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
    vertical-align: baseline;

}


.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.846;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: 1;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0;
}


.navbar-custom.top-nav-short .navbar-brand-logo {
  padding-top: 5px;
}
.navbar-custom.top-nav-short .navbar-brand-logo img {
  height: 40px;
}

@media only screen and (min-width: 768px) {
  .navbar-custom {
    padding: 0px 0;
    -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
    -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
    transition: background .5s ease-in-out,padding .5s ease-in-out;
  }

  .navbar-custom.top-nav-short {
    padding: 0;
  }
}

.navbar-custom .avatar-container {
  opacity: 1;
  position: absolute;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  left: 50%;
  width: 50px;
  margin-top: -25px;
}
.navbar-custom .avatar-container  .avatar-img-border {
  width: 100%;
  border-radius: 50%;
  margin-left: -50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .8);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
}
.navbar-custom .avatar-container  .avatar-img {
  width: 100%;
  border-radius: 50%;
  display: block;
}

.navbar-custom.top-nav-short .avatar-container{
  opacity: 0;
}

.navbar-custom.top-nav-expanded .avatar-container  {
  display: none;
}

@media only screen and (min-width: 768px) {
  .navbar-custom .avatar-container {
    width: 100px;
    margin-top: -50px;
  }

  .navbar-custom .avatar-container  .avatar-img-border {
    width: 100%;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
    -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
  }

  .navbar-custom .avatar-container  .avatar-img {
    width: 100%;
  }
}

/* Multi-level navigation links */
.navbar-custom .nav .navlinks-container {
  position: relative;
}
.navbar-custom .nav .navlinks-parent:after {
  content: " \25BC";
  opacity: 0.7;
}
.navbar-custom .nav .navlinks-children {
  width: 100%;
  background-color: white;
  display: none;
  word-break: break-word;
  opacity: 0.85;
}
.navbar-custom .nav .navlinks-container .navlinks-children a {
  border: .5px solid gray;
  display: block;
 background-color: white;
 opacity: 0.85;
  padding: 10px;
  padding-left: 30px;
  text-decoration: none !important;
  border-width: 0 .1px .1px .1px;
  font-weight: normal;


}

.navbar-custom .nav .navlinks-container .navlinks-children a:hover {
  background: #d46c5b;
  opacity: 0.6;
}

@media only screen and (max-width: 767px) {
  .navbar-custom .nav .navlinks-container.show-children {

  }
  .navbar-custom .nav .navlinks-container.show-children .navlinks-children {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .navbar-custom .nav .navlinks-container {
    text-align: center;
  }
  .navbar-custom .nav .navlinks-container:hover {
    background: #eee;
  }
  .navbar-custom .nav .navlinks-container:hover .navlinks-children {
    display: block;
  }
  .navbar-custom .nav .navlinks-children {
    position: absolute;
  }
  .navbar-custom .nav .navlinks-container .navlinks-children a {
    padding-left: 10px;
    border: .5px solid gray;
    border-width: 0 1px 1px;
  }
}

@media (min-width: 1450px) {
    .container-fluid {
        max-width: 1440px;
    }
}

/* --- Footer --- */

footer {
  padding: 20px 0;
  border-top: 1px #EAEAEA solid;
  margin-top: auto;
  font-size: 16px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


@media only screen and (max-width: 767px) {

footer {
  padding-left: 25px;
  padding-right: 25px;

}

#footer-text{
  font-size: 14px;
  color: #888888;
}

}

footer a {

  opacity: 0.60;
  transition: all 0.23s ease-in-out 0s;
}

footer a:hover {
  color: #777;
}

footer .list-inline {
  margin: 0;
  padding: 10px;
}
footer .copyright {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  footer {
    padding: 25px 0;
  }
  footer .footer-links {
    font-size: 18px;
  }
  footer .copyright {
    font-size: 16px;
  }
}

.hugo-logo{
  height: 100px;
  width:700px;

}

#footer-text{
  font-size: 16px;
  color: #888888;
}

/* --- Post preview --- */

.post-preview {
  padding: 20px 0;
  border-bottom: 1px solid #eee;


}

@media only screen and (min-width: 768px) {
  .post-preview {
    padding: 35px 0;
  }
}

.post-preview:last-child {
  border-bottom: 0;
}

.post-preview a {
  text-decoration: none;

}

.post-preview a:focus,
.post-preview a:hover {
  text-decoration: none;
  color: #0085a1;
}

.post-preview .post-title {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 0;
}
.post-preview .post-subtitle {
  padding-top: 2px;
   font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  text-align: left;
}

/*Meta customization */

.category-label {
  text-transform: capitalize;
  color: #aabfc9;
  padding-top: 0px;
  display:inline;
}

.preview-meta {
  display: inline;
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color:#4895ab;
  text-transform: capitalize;
}

.post-preview .post-meta,
.post-heading .post-meta {
  color: #4895ab;
  font-size: 16px;
  padding-top: 5px;

}

.post-heading .post-meta {
  color: #888;
  font-size: 16px;
  opacity: 80%;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.post-heading .post-meta details {
  font-size: 14px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: all 0.23s ease-in-out 0s;

}
/* Mobile meta styling */

@media only screen and (max-width: 767px) {

.post-preview .post-title {
  text-align: left;
  font-size: 18px;
  margin-bottom: 5px;
  color: #4895ab;
}

.post-preview .post-subtitle {
  text-align: left;
  font-weight: 300;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #aabfc9;
}


  .post-preview .post-meta,
.post-heading .post-meta {
  font-size: 12px;
  text-align: left;
}

.post-heading .post-meta {
  font-size: 12px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.post-heading .post-meta details {
  font-size: 12px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: all 0.23s ease-in-out 0s;

}
}
.post-preview .post-meta a,
.post-heading .post-meta a {
  color:#4895ab;
  text-decoration: none;

}
.post-preview .post-entry {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  margin-bottom: 10px;
}
.post-entry-container {
  display: inline-block;
  width: 100%;
}
.post-entry {
  width: 100%;
  margin-top: 7.5px;
  line-height: 1.5;
  opacity: 0.8;
}
.post-image {
  float: left;
  height: 192px;
  width: 192px;
  margin-top: -35px;

}
.post-image:hover {
  filter: grayscale(90%);
}
.post-image img {
  border-radius: 100px;
  height: 192px;
  width: 192px;
}
.post-preview .post-read-more {
  font-family: 'Merriweather', serif, Imperial, Georgia, 'Times New Roman', Times, serif;
  text-transform: capitalize;
  font-size: 9px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 12.5px 10px;
  border-radius: 0;
  color: #888;
  float: right;
  border: 1px solid #ddd;
  transition: all 0.23s ease-in-out 0s;
}

#read-more a:hover,
#read-more a:focus {
  color: #FFF;
  background: #d46c5b;
  opacity: 0.75;
  border: 1px solid #d46c5b;
}


/* --- Archives --- */

.archive {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.3em;
  text-align: center;
}

@media only screen and (min-width: 768px) {
.archive {
  position: relative;
  right: 30px;

}
}

.archive-title {
  font-size: 30px;
  margin-top: 20px;
  color: #4895ab;
}

.archive-item {
  margin: 5px 0 15px;
  padding: 0;
}

.archive-item-date {
  color: #ccc;
  font-size: 15px;
  padding: 5px 0;
  margin-top: 5px;
  display: block;
}

.archive-item-link {
  display: inline-block;
  text-decoration: none;
  font-size: 24px;
  color: #4b4b4b;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

.archive-item-link:hover {
  border-bottom-color: #222;
}

@media only screen and (max-width: 767px) {

  .archive-title {
  font-size: 18px;
  margin-top: 20px;
  color: #666;
}

  .archive-item-link {
  display: inline-block;
  text-decoration: none;
  font-size: 20px;
  color: #4b4b4b;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

}

/* --- Tags --- */

.blog-tags {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #999;
  font-size: 14px;
  margin-bottom: 30px;
}

.blog-tags:before {
  content: "Tags: ";
  color: #999999;
}

.blog-tags a {
  color: #999999;
  text-decoration: none;
  padding: 3px 5px;
  background-color: #d46c5b55;
  border-radius: 3px 3px 3px 3px;
  border: 1px solid;
}

.blog-tags a:before {
  content: "";
}

.blog-tags a:hover {
  border-radius: 2px;
  color: #999999;
  background-color: #CCC;
}

.post-preview .blog-tags {
  margin-top: 0px;
  margin-bottom: 0px;
  text-decoration: none;
  padding: 3px 5px;
  border-radius: 3px 3px 3px 3px;

}

@media only screen and (max-width: 1203px) {
  .blog-tags {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #999;
  font-size: 12px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 3px 5px;

}
}

@media only screen and (min-width: 768px) {

  .post-preview .blog-tags {
    margin-top: 5px;
      color: #999999;
  text-decoration: none;
  padding: 3px 5px;

  }
}

@media only screen and (max-width: 500px) {
  .post-image, .post-image img {
    height: 100px;
    width: 100px;
  }

  .post-image {
    width: 100%;
    text-align: center;
    margin-top: 0;
    float: left;
  }
}
/* --- Post and page headers --- */

.intro-header {
  margin: 50px 0 0px;
  position: relative;
}
.intro-header.big-img {
  background: no-repeat center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  -o-background-size: contain;
  margin-top: 51px; /* The small navbar is 50px tall + 1px border */
  margin-bottom: 35px;
  width: 75%;
  height: 75%;
}

.intro-header.big-img  .big-img-transition {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: no-repeat center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  -o-background-size: contain;
  -webkit-transition: opacity 1s linear;
  -moz-transition: opacity 1s linear;
  transition: opacity 1s linear;
}
.intro-header .page-heading,
.intro-header .tags-heading {
  text-align: center;
}
.intro-header.big-img .page-heading,
.intro-header.big-img .post-heading {
  padding: 50px 0;
  color: #FFF;
  text-shadow: 1px 1px 3px #000;
}
.intro-header .page-heading h1,
.intro-header .tags-heading h1 {
  margin-top: 20px;
  font-size: 40px;
}
.intro-header .post-heading h1 {
  margin-top: 40px;
  font-size: 40px;
}

@media only screen and (max-width: 767px) {
.intro-header .page-heading h1,
.intro-header .tags-heading h1 {
  margin-top: 20px;
  font-size: 27px;
}
.intro-header .post-heading h1 {
  margin-top: 30px;
  font-size: 26px;
  opacity: 0.85;
}

.intro-header .post-heading h2 {
  margin-top: 30px;
  font-size: 24px;
}


.intro-header .page-heading .page-subheading,
.intro-header .post-heading .post-subheading {
  font-size: 20px;

}

}

.intro-header .page-heading .page-subheading,
.intro-header .post-heading .post-subheading {
  color: gray;
  line-height: 1.1;
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  margin: 10px 0 0;
}


@media only screen and (max-width: 768px) {
  .intro-header .page-heading .page-subheading,
.intro-header .post-heading .post-subheading {
  font-size: 20px;
  font-family: 'Lato', sans-serif;
}
}

.intro-header .post-heading .post-subheading {
  margin-bottom: 20px;

}
.intro-header.big-img .page-heading .page-subheading,
.intro-header.big-img .post-heading .post-subheading {
  font-weight: 400;

}
.intro-header.big-img .page-heading hr {
  box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  -moz-box-shadow: 1px 1px 3px #000;
}
.intro-header.big-img .post-heading .post-meta {
  color: #EEE;
}
.intro-header.big-img .img-desc {
  background: rgba(30, 30, 30, 0.6);
  position: absolute;
  padding: 5px 10px;
  font-size: 11px;
  color: #EEE;
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  right: 0;
  bottom: 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  .intro-header {
    margin-top: 70px;
  }
  .intro-header.big-img {
    margin-top: 70px;  /* Full navbar is small navbar + 20px padding on each side when expanded */
  }
  .intro-header.big-img .page-heading,
  .intro-header.big-img .post-heading  {
    padding: 0px 0;
  }
  .intro-header .page-heading h1,
  .intro-header .tags-heading h1 {
    font-size: 40px;
  }
  .intro-header .post-heading h1 {
    font-size: 38px;
  }
  .intro-header.big-img .img-desc {
    font-size: 14px;
  }
}

.header-section.has-img .no-img {
  margin-top: 0;
  background: #FCFCFC;
  margin: 0 0 40px;
  padding: 20px 0;
  box-shadow: 0 0 5px #AAA;
}
/* Many phones are 320 or 360px, so make sure images are a proper aspect ratio in those cases */
.header-section.has-img .intro-header.no-img {
  display: none;
}
@media only screen and (max-width: 365px) {
  .header-section.has-img .intro-header.no-img {
    display: block;
  }
  .intro-header.big-img {
    width: 100%;
    height: 150px;
  }
  .intro-header.big-img .page-heading,
  .intro-header.big-img .post-heading {
    display: none;
  }
  .header-section.has-img .big-img {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 325px) {
  .intro-header.big-img {
    height: 150px;
  }
}

.caption {
  text-align: center;
  font-size: 14px;
  padding: 10px;
  font-style: italic;
  margin: 0;
  display: block;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

/* --- Pager --- */

.pager li a {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  padding: 12.5px 8px;
  background: #FFF;
  border-radius: 0;
  color: #4b4b4b;
  opacity:0.75;
  transition: all 0.23s ease-in-out 0s;
}

@media only screen and (max-width: 1203px) {
  .pager li a {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: capitalize;
  font-size: 10px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  padding: 12.5px 8px;
  background: #FFF;
  border-radius: 0;
  color: #4b4b4b;
  opacity:0.75;
  transition: all 0.23s ease-in-out 0s;
}
}

@media only screen and (min-width: 768px) {
  .pager li a {
    padding: 15px 10px;
    opacity:0.75;
  }
}
.pager li a:hover,
.pager li a:focus {
  color: #FFF;
  background: #d46c5b;
  border: 1px solid #d46c5b;
  opacity:0.75;
}

.pager {
  margin: 10px 0 0;
  opacity:0.75;
}

.pager.blog-pager {
  margin-top:10px;
}

h4.panel-title > span.badge {
    float: right;
}

@media only screen and (min-width: 768px) {
  .pager.blog-pager  {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {

.pager {
  padding-left: 25px;
  padding-right: 25px;
}

.pager.blog-pager {
  padding-left: 25px;
  padding-right: 25px;
}
}

/* --- Tables --- */
  th {
  text-align: center;
  }
table {
  font-size: 16px;
  margin: auto;
  padding: 5px;
}

table tr th{
   background-color: transparent;
}
table tr td {
   background-color: transparent;
}

@media only screen and (max-width: 767px) {

  t body {
  font-size: 11px;
}
  th {
  text-align: center;
  font-size: 11px;
}
table {
  font-size: 11px;
  overflow: auto;
}
table tr th{
   font-size: 11px;
}
table tr td {
   font-size: 11px;
}
.table {
  font-size: 11px;
  overflow: auto;

    padding-top: 150px;
}
}

tbody tr:hover {
  background: #d46c5b;
  opacity: 0.5;
}

#lviazvgdqd .gt_table {
color: #777777;
background: transparent;
opacity: 95%;
}

#tipfdqglsr .gt_table {
  display: table;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  background: transparent;
  width: auto;
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: #A8A8A8;
  border-right-style: none;
  border-right-width: 2px;
  border-right-color: #D3D3D3;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #A8A8A8;
  border-left-style: none;
  border-left-width: 2px;
  border-left-color: #D3D3D3;
}

table tr td {
  color: #777777;
  background: transparent;
  opacity: 95%;
}
/* --- Social media sharing section --- */

#social-share-section {
  margin-bottom: 30px;
}

/* --- Search Engine Popup --- */
#modalSearch table tr, #modalSearch table tr td, #modalSearch table tr th {
  border:none;
}
.reset-box-sizing, .reset-box-sizing *, .reset-box-sizing *:before, .reset-box-sizing *:after,  .gsc-inline-block {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input.gsc-input, .gsc-input-box, .gsc-input-box-hover, .gsc-input-box-focus, .gsc-search-button {
  box-sizing: content-box;
  line-height: normal;
}


/* --- Citation Popup --- */
#modalCite table tr, #modalCite table tr td, #modalCite table tr th {
  border:none;
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;

}





.modal-title {
  font-size: 18px;
  text-align: center;
  margin-top:20px;


}

.modal-body {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  margin-right:10px;
    padding-right:10px;
      margin-left:10px;
    padding-left:10px;
}

.reset-box-sizing, .reset-box-sizing *, .reset-box-sizing *:before, .reset-box-sizing *:after,  .gsc-inline-block {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input.gsc-input, .gsc-input-box, .gsc-input-box-hover, .gsc-input-box-focus, .gsc-search-button {
  box-sizing: content-box;
  line-height: normal;
}

@media only screen and (max-width: 1203px) {

  .modal-header {
    width: 100%;
  }

  .modal-title {
  font-size: 18px;
  text-align: center;
}

  .modal-body {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
}
}

@media only screen and (max-width: 768px) {

  .modal-header {
    width: 100%;
  }

  .modal-title {
  font-size: 12px;
  text-align: center;
}

  .modal-body {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  top: -15px;
  text-align: left;
}
}

/* IPython split style */
div.splitbox {width:100%; overflow:auto;}

div.splitbox div.left {
               width:48%;
               float:left;}
div.splitbox div.right {
               width:48%;
               float:right;}

@media only screen and (max-width: 600px) {
div.splitbox div.left {
               width:100%;
               float:left;}
div.splitbox div.right {
               width:100%;
               float:left;}
}

/* Delayed Disqus */

.disqus-comments {
  color: #777;
}

.disqus-comments button {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: capitalize;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 5px;
  background: #d46c5b;
  border-radius: 5;
  color: #777;
}
@media only screen and (min-width: 768px) {
  .disqus-comments button {
    padding: 15px 25px;
  }
}
.disqus-comments button:hover,
.disqus-comments button:focus {
  color: #777;
  background: #0085a1;
  border: 1px solid #0085a1;
}

/* Related posts */
h4.see-also {
  margin-top: 20px;
}

/* Sharing */
 ul.share {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
 ul.share li {
  display: inline-flex;
  margin-right: 5px;
}
 ul.share li:last-of-type {
  margin-right: 0;
}
 ul.share li .fab {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  text-align: center;
  transition: all 150ms ease-in-out;
  color: #fff;
}
 ul.share li a {
  background-color: #b5c6ce;
  display: block;
  border-radius: 50%;
  text-decoration: none !important;
  margin: 0;
}
 ul.share li:hover .fab {
  transform: scale(1.4)
}

#contact-button{
  color:#d46c5b ;
  border-color: #d46c5b;
}

.main-content {
  padding-bottom: 50px;
}

footer.footer-min {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 3px;
  background-color: #f5f5f5;
  border-top: 1px solid #eeeeee;
  text-align: center;
}

/*Algolia*/



.poweredby {
  position: relative;
  top: 8px;
  left: 105px;
}

#stats {
  position: relative;
  top: 10px;
  padding: 10px;
}

.algolia-button {
  background-color: #d46c5b;
  border-color: #d46c5b;
  border-radius: 3px;
  color: #fafafa;
  font-size: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  height: 35px;
  opacity: .50;
  border: 0px;
}

#search-highlight em {
  background-color: rgba(212, 108, 91, 0.3);
}

.search-meta {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #777;
  padding-top: 3px;
  padding-bottom: 3px;
}

.search-description {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #777;
}

.search-tags {
  color:#999;
  font-size: 13px;
  padding-top: 5px;
}

@media only screen and (max-width: 1203px) {
.search-meta {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #777;
}

.search-description {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #777;
}

.search-tags {
  color:#999;
  font-size: 11px;
  padding-top: 5px;
}

}

/* Patreon */

.patreon {
 height: 40px;
}

/* Recent */

.recentposts {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 30px;
  text-align: center;
}

.recent-container {
  padding-left: 30px;
  padding-right: 30px;
  display: inline-grid;
  grid-template-columns: auto auto;
  column-gap: 7.5%;
}

@media only screen and (max-width: 1203px) {
.recent-container {
  padding-left: 0px;
  padding-right: 0px;
  display: inline-grid;
  grid-template-columns: auto;
  column-gap: 10%;
}
}

.recent-image {
  float:right;
  display:inline;
  height:100px;
  width:100px;
}

.recent-title {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  display: block;
  line-height: 1.3;
}

.recent-meta {
  text-transform: capitalize;
  display: inline;
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #999999;
}

.recent-summary {
  line-height: 1.5;
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  display: block;
  padding-top: 5px;
}

@media only screen and (max-width: 1203px) {

  .recent-title {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  display: block;
  line-height: 1.3;
}

.recent-meta {
  text-transform: capitalize;
  display: inline;
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: #999999;
}

.recent-summary {
  line-height: 1.5;
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  display: block;
  padding-top: 5px;
}
}


/* MailChimp */

#mc_embed_signup{

  clear:left;
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  width:100%;
  font-weight:normal;
  opacity: 0.6;
}

#mc_embed_signup form {
  text-align:center;
  padding:10px 0 10px 0;
}
.mc-field-group {
  display: inline-block;
}
/* positions input field horizontally */
#mc_embed_signup input.email {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  text-align: center;
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #777;
  background-color: #fff;
  box-sizing:border-box;
  height:32px;
  padding: 0px 0.4em;
  display: inline-block;
  margin: 0;
  width:300px;
  vertical-align:top;
}



#mc_embed_signup label {
  display:block;
  font-size:22px;
  padding-bottom:10px;
  position: relative;
  right: 30px;
}

@media only screen and (max-width: 1203px) {
#mc_embed_signup label {
  display:block;
  font-size:17px;
  padding-bottom:10px;
  position: relative;
  right: 30px;
}

/* positions input field horizontally */
#mc_embed_signup input.email {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  text-align: center;
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #777;
  background-color: #fff;
  box-sizing:border-box;
  height:32px;
  padding: 0px 0.4em;
  display: inline-block;
  margin: 0;
  width:300px;
  vertical-align:top;
}
}

#mc_embed_signup .clear {
  display: inline-block;
}
  /* positions button horizontally in line with input */
#mc_embed_signup .button {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: .03em;
  color: #fff;
  background-color: #d46c5b;

  box-sizing:border-box;
  height:32px;
  line-height:32px;
  padding:0 18px;
  display: inline-block;
  margin: 0;
  transition: all 0.23s ease-in-out 0s;
}

@media only screen and (max-width: 1203px) {
    /* positions button horizontally in line with input */
#mc_embed_signup .button {
  font-family: 'Lato', sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 8px;
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: .03em;
  color: #fff;
  background-color: #d46c5bcc;
  opacity: 0.6;
  box-sizing:border-box;
  height:32px;
  line-height:32px;
  padding:0 18px;
  display: inline-block;
  margin: 0;
  transition: all 0.23s ease-in-out 0s;
}
}

#mc_embed_signup .button:hover {
  background-color:#777;
  cursor:pointer;
}

#mc_embed_signup div#mce-responses {
  float:left;
  top:-1.4em;
  padding:0em .5em 0em .5em;
  overflow:hidden;
  width:90%;
  margin: 0 5%;
  clear: both;
}

#mc_embed_signup div.response {
  margin:1em 0;
  padding:1em .5em .5em 0;
  font-weight:bold;
  float:left;
  top:-1.5em;
  z-index:1;
  width:80%;
}

#mc_embed_signup #mce-error-response {
  display:none;
}

#mc_embed_signup #mce-success-response {
  color:#529214;
  display:none;
}

#mc_embed_signup label.error {
  display:block;
  float:none;
  width:auto;
  margin-left:1.05em;
  text-align:left;
  padding:.5em 0;
}

@media (max-width: 768px) {

    #mc_embed_signup label {
     position: relative;
     left: 0px;
    }

    #mc_embed_signup input.email {
      width:90%;
      margin-bottom:15px;
    }

    #mc_embed_signup .clear {
      display: block;
      width: 100%
    }

    #mc_embed_signup .button {
      width: 25%;
      margin:0;

    }
}

@media only screen and (max-width: 1203px) {
.fa-lg {
  font-size: 1.1em;
  line-height: 1.95em;
}
}

.headroom {
  will-change: transform;
  transition: transform 200ms linear;
}
.headroom--pinned {
  transform: translateY(0%);
}
.headroom--unpinned {
  transform: translateY(-100%);
}





.responsive {
  position: relative;
  padding-bottom: 56.2%;
  height: 0;
  margin: 10px 0;
  overflow: hidden;
}

.responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cite-button {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.5;
    text-decoration: none;
    padding: 5px 5px;
    border-radius: 3px 3px 3px 3px;
    border: 1px solid #999;
    text-align: left;
}


.box{
    display: none;
    width: 100%;
}

a:hover + .box,.box:hover{
    display: block;
    position: relative;
    z-index: 100;
}



::before, ::after {

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}
element {

}
.nested-blockquote blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1em;
  /*margin: 0;*/
}


.mw-90 {
  max-width:90%;
}
/* purgecss end ignore */

.header-link:after {
  position: relative;
  left: 0.5em;
  opacity: 0;
  font-size: 0.8em;
  -moz-transition: opacity 0.2s ease-in-out 0.1s;
  -ms-transition: opacity 0.2s ease-in-out 0.1s;
}
h2:hover .header-link,
h3:hover .header-link,
h4:hover .header-link,
h5:hover .header-link,
h6:hover .header-link {
  opacity: 1;
}

#lviazvgdqd .gt_col_heading {

  font-size: 14px;
}
@media only screen and (max-width: 768px) {

#lviazvgdqd .gt_col_heading {

  font-size: 12px;
}
}
.label-default {
  background-color: #d46c5b;
}

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* ? ================== SCroll Bar Section ================== */
:root {
  --scroll-bar-color: hsl(var(--hue-color), 15%, 85%);
  --scroll-thumb-color: hsl(var(--hue-color), 15%, 70%);
  --text-color: hsl(var(--hue-color), 10%, 40%);
}
::-webkit-scrollbar {
  width: 0.8rem;
  background-color:"red";
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: "red";
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: "red";
}
.bottom-panel {
  position: fixed;
  font-size: 0.9rem;
  bottom: 0;
  left: 0;
  right: 0;
}

.popup-wrapper {
  display: none;
  max-width: 560px;
  margin: 0 auto;
  background-color: white;
  border-top: 3px solid black;
}

#popup-index {
  padding: 1.25rem 0 0 1.25rem;
}

#popup-close {
  padding: 1.25rem;
  margin-left: auto;
  cursor: pointer;
}

#popup-close:hover {
  background-color: #fdfdfd;
}

#popup-content {
  max-width: 500px;
  text-align: left;
  padding: 1.25rem 0 1.25rem 0.9rem;
}

