/*************************************************
 *  Hugo Academic: an academic theme for Hugo.
 *  Designed by @GeorgeCushen.
 *  https://github.com/gcushen/hugo-academic
 **************************************************/

/*************************************************
 *  Core
 **************************************************/

*,
*::after,
*::before {
  box-sizing: border-box;
}

.row:after,
.row:before {
  content: " ";
  display: table;
}

html {
  /* font-family: 'Merriweather', serif; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-family: 'Open Sans', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: rgba(26, 25, 25, 0.8);
  line-height: 1.65;
}
@media screen and (min-width: 58em) {
  
  html {
    font-size: 20px;
  }
}

body {
  font-family: inherit;
  font-size: 1rem;
  line-height: inherit;
  color: inherit;
  margin-top: 71px; /* Offset body content by navbar height. */
  padding-top: 0;
  counter-reset: captions;
  background-image: url("../img/background_tile.png"), radial-gradient(#fff, #8ED4FF);
  /* background-image: url("../img/background_tile.png"), radial-gradient(#D0D0D0, #3E5868); */
  background-blend-mode: multiply;
  background-attachment: fixed;
}


/* Body text */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Lists */
ul, ol, dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Navigation bar text */
.navbar-default {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.25;
  text-rendering: optimizeLegibility;
}

.view-all {
  float: right;
  color: #74858d;
  margin-right: 30px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  /* text-align: left; */
  margin-bottom: .5rem;
  line-height: 1.25;
  color: #313131;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: 2.25rem;
  color: #305d86;
}
h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #41719e;
}
h3 {
  color: #5485b3;
  font-weight: 700;
  margin-top: 1.5rem;
  font-size: 1.25rem;
}
h4, h5, h6 {
  font-weight: 700;
  margin-top: 1rem;
  font-size: 1rem;
}

a {
  color: rgb(68, 126, 160);
  text-decoration: none;
  transition: color 0.6s ease;
}

h3.article-title a:hover {
  color: #43a3db;
  text-decoration: none;
  transition: color 0.6s ease;
}

a:hover,
a:focus {
  color: #43a3db;
}

img,
video {
  height: auto;
  max-width: 100%;
  display: block;
}

.img-responsive {
  /* Extend Bootstrap declaration with centering. */
  margin: 0 auto;
  
}

figcaption:before {
  font-weight: 700;
  text-transform: uppercase;
  content: "Screenshot " counter(captions) ": ";
}

figcaption {
  display: block;
  color: #6e7680;
  margin-top: 0.75em;
  line-height: 1.25;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  font-family: 'Lato', sans-serif;
  counter-increment: captions;
}

figcaption h4 {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

pre,
code {
  font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
}

pre {
  margin: 0 0 1rem 0;
  overflow: auto;
}

/* Quotes */
blockquote {
  padding: .5rem 1rem;
  margin: .8rem 0;
  color: #7a7a7a;
  background-color: #dfe4e9;
  border-left: .25rem solid #a1c0da;
  font-size: 0.8rem;
  quotes: "\201C""\201D""\2018""\2019";
}

blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

blockquote p {
  display: inline;
}

blockquote p:last-child {
  margin-bottom: 0;
}
@media (min-width: 30em) {
  blockquote {
    padding-right: 5rem;
    padding-left: 1.25rem;
  }
}

.space-below {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  
  .space-below {
    margin-bottom: 10px;
  }
}

.universal-wrapper {
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}
@media only screen and (min-width: 1001px) {

  .universal-wrapper {
    width: 1000px;
  }
}

/*************************************************
 *  Home Sections
 **************************************************/

@keyframes intro {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* STYLE 1 */
/* .home-section {
  background-color: #a3bac5;
  padding: 30px 0px 10px 0px;
  animation: intro 0.3s both;
  animation-delay: 0.15s;
} */

/* STYLE 2 */
.home-section {
  /* background-color: #a3bac5; */
  /* background-image: url("../img/background_tile.png"); */
  
  padding: 10px 0px 0px 0px;
  animation: intro 0.3s both;
  animation-delay: 0.15s;
}

/* STYLE 1 */
/* .container {
  background-color: #ffffff;
  max-width: 900px;
  padding-bottom: 20px;
  margin-bottom: 0px;
  border-radius: 5px;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0,0,0,.3)
} */

/* STYLE 2 */
.container {
  background-color: #ffffff;
  max-width: 900px;
  /* padding-bottom: 20px; */
  padding-right: 30px;
  padding-left: 30px;
  margin-bottom: 0px;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0,0,0,.3); 
}



.container-allpost {
  background-color: #ffffff;
  max-width: 1020px;
  margin: 0 auto 0 auto;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-bottom: 0px;
  border-radius: 5px;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0,0,0,.3);
}



@media screen and (max-width: 768px) {
  .home-section:first-of-type {
    padding-top: 0px;
  }
}

.section-heading h1 {
  margin: 0px 0 20px 0;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 0px 0px 0px 0px;
  margin: 10px 20px 30px 55px;
  color: #5FA7D1;
  /* border-left: .25rem solid #5FA7D1; */
  border-bottom: 3px solid #D3E8FF;
}

.home-section-logo {
  float: left;
  margin-top:5px;
  margin-right: 10px;
  margin-left: -15px;
  color: #5FA7D1;
}

.section-heading p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #b2b2b2;
}

/*************************************************
 *  Landing page
 **************************************************/

#landing-container {
  
  padding: 0px 0px;
  width: 100%;
  height: 100%;
  
}

#landing-content { 
  width:100%;
  height: 600px;
}

#landing .background {
  
  background-image: url('../img/cover-logo.jpg');
  width: 100%;
  height: 500px;
  
  margin: auto;
  
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  
  -webkit-background-size: cover;
  -moz-background-size: cover;
}

#landing .portrait-title h2 {
  font-size: 1.75em;
  font-weight: 300;
  color: #000000;
  margin: 20px 0 10px 0;
}

#landing .portrait-title h3 {
  font-size: 1.13em;
  font-weight: 300;
  color: #AAAAAA;
  margin: 0px 0 10px 0;
}

#landing ul.social-icon {
  display: block;
  /* flex-direction: row; */
  /* flex-wrap: wrap; */
  list-style: none;
  width:100%;
  text-align: center;
  margin-left: auto;
  padding: 0;
  margin-top: auto;
  position: absolute;
  /* left:-40%; */
  /* top:0%; */
  bottom:0%;
  /* right:3%; */
}

#landing li {
  display: inline;
  cursor: pointer;
  vertical-align: middle;
}

#landing .social-icon a {
 /* padding: 5px;
  border-radius: 5px; */ 
  margin-right: 10px;
  color: #9A155D;
  font-size: 1.1rem;
  
}

/* #landing .social-icon li:last-of-type {
  margin-right: 0;
} */

#landing .social-icon li:hover {
  transform: scale(1.1);
}
#landing .social-icon a:hover {
  transform: scale(1.2);
  color: rgb(194, 108, 154);
}

/*************************************************
 *  Biography
 **************************************************/

#profile {
  text-align: center;
  padding: 30px 10px;
  position: relative;
}

#profile .portrait {
  background-image: url('../img/portrait.jpg');
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
}

#profile .portrait-title h2 {
  font-size: 1.75em;
  font-weight: 300;
  color: #000000;
  margin: 20px 0 10px 0;
}

#profile .portrait-title h3 {
  font-size: 1.13em;
  font-weight: 300;
  color: #AAAAAA;
  margin: 0px 0 10px 0;
}

#profile ul.social-icon {
  
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

#profile .social-icon li {
  margin-right: 10px;
}

#profile .social-icon li:last-of-type {
  margin-right: 0;
}

#profile .social-icon li:hover {
  transform: scale(1.2);
}

.big-icon {
  font-size: 2rem;
}

ul.ul-interests li {
  font-size: 0.9rem;
}

ul.ul-edu {
  list-style: none;
}

ul.ul-edu li {
  position: relative;
  padding: 0px 15px 4px 3px;
}

ul.ul-edu li .description p {
  margin: 0;
}

ul.ul-edu li .description p.course {
  font-size: 0.9rem;
}

ul.ul-edu li .description p.institution {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.6);
}

/*************************************************
 *  Sharing
 **************************************************/

.share-box {
  float: right;
}

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 .fa {
  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 .fa {
  transform: scale(1.4)
}

/*************************************************
* Screenshot Albums 
 *************************************************/
/*Eliminates padding, centers the thumbnail */


/* Styles the thumbnail */

a.lightbox img {
box-shadow: 2px 2px 4px rgba(0,0,0,.3);
margin: 0px 0px 20px 0px;
}

/* Styles the lightbox, removes it from sight and adds the fade-in transition */
.lightbox-target {
position: fixed;
top: -100%;
left:0%;
width: 100%;
background: rgba(0,0,0,.7);
width: 100%;
opacity: 0;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
overflow: hidden;
}

/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */

.lightbox-target img {
margin: auto;
position: absolute;
top: 0;
left:0;
right:0;
bottom: 0;
max-height: 0%;
max-width: 0%;
border: 3px solid white;
box-shadow: 0px 0px 8px rgba(0,0,0,.3);
box-sizing: border-box;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}

/* Styles the close link, adds the slide down transition */

a.lightbox-close {
display: block;
width:50px;
height:50px;
box-sizing: border-box;
background: white;
color: black;
text-decoration: none;
position: absolute;
top: -80px;
right: 0;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:before {
content: "";
display: block;
height: 30px;
width: 1px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(45deg);
-moz-transform:rotate(45deg);
-o-transform:rotate(45deg);
transform:rotate(45deg);
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:after {
content: "";
display: block;
height: 30px;
width: 1px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(-45deg);
-moz-transform:rotate(-45deg);
-o-transform:rotate(-45deg);
transform:rotate(-45deg);
}

/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */

.lightbox-target:target {
opacity: 1;
top: 0;
bottom: 0;
}

.lightbox-target:target img {
max-height: 100%;
max-width: 100%;
}

.lightbox-target:target a.lightbox-close {
top: 7%;
}
  

/*************************************************
 *  Blog Articles
 **************************************************/

article {
  animation: intro 0.3s both;
  animation-delay: 0.15s;
  font-size: 1rem;
  /* background-color: #a3bac5; */
}

.side-note {
  padding: 10px;
  position: absolute;
  cursor: pointer;
  font-size: 0.9rem;
  transform: translateX(290%);
  top: auto; /* default */
  width: 300px;
  border-radius: 5px;
  color: #fff;
  background-color: #467f99; /* Material LightBlue500 */
  border-color: #bce8f1;
  box-shadow: 3px 3px 3px #647183;
}

.side-note:hover {
  z-index: 10;
}

.side-collapsible:before {
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 1.2rem;
  content: "\f06a";
}

.side-collapsible {
  background-color:#2e6179;; 
  color: white;
  cursor: pointer;
  padding-left: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 0.8rem;
}

.side-collapsible:hover {
  background-color:#63acce;; 
}



.side-content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #467f99;;
}


.article-container {
  max-width: 900px;
  padding: 1rem 2.5rem 2.5rem 2.5rem;
  margin: 0 auto 0 auto;
  background-color: #ffffff;
  text-align: justify;
  text-justify: inter-word;
}

.article-container li {
  text-align: left;
}

.article-container-large {
  max-width: 1100px;
  padding: 1rem 2.5rem 2.5rem 2.5rem;
  margin: 0 auto 0 auto;
  background-color: #ffffff;
  text-align: justify;
  text-justify: inter-word;
}

.article-container h1 {
  text-align: left;
}

.article-header {
  position: relative;
  clear: both;
}

.article-comment {
  max-width: 900px;
  padding: 1rem 2.5rem 2.5rem 2.5rem;
  margin: 0 auto 0 auto;
  background-color: #ffffff;
}

hr { 
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: auto;
  max-width: 800px;
  margin-right: auto;
  border-style: inset;
  border-width: 1px;
} 

.pager {
  max-width: 900px;
  margin: 0 auto 0 auto;
  padding-left: 0rem;
  padding-right: 1rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  background-color: #ffffff;
}

.pager h3 {
  text-align: center;
}

.article-banner {
  width: 100%;
  height: auto;
  background-size:cover;
  max-width: 900px;
  /* padding: 1rem 20px 0 20px; */
  margin: 0 auto 0 auto;
}

.article-banner h1 {
  color:#ffffff;
  margin-left:20px;
  padding-top:40px;
  font-size: 4rem;
  text-shadow: 0 4px 4px rgba(0,0,0,0.7);
}

.article-header-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  padding: 2px 5px;
  color: #fff;
  font-size: .7em;
  background: #000;
  text-align: right;
  z-index: 5;
  opacity: 0.65;
  border-radius: 5px 0 0 0;
}
@media (min-width: 64em) {
  .article-header-caption {
    padding: 5px 10px;
  }
}

.article-header-caption a {
  color: #fff;
  text-decoration: none;
}

.article-title {
  margin-top:0px;
  font-size: 1rem;
  color: #03396c;
}

.article-title a {
  color: #74858d;
  font-size: 0.8rem;
  transition: color 0.6s ease;
}

.article-metadata {
  margin-bottom: 20px;
  line-height: 30px; /* Match share bar line height. */
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #888;
}

.article-metadata a {
  color: #888;
}

.article-metadata a:hover {
  color: #43a3db;
}

.article-thumbnail {
  background-image: url('./../img/banner_tile.png');
  margin: 0px 0px 10px 0px;
  padding: 0px 0px 0px 0px;
  height: 150px;
  /* width: 245px; */
  width: 100%;
  max-width: 250px;
  
  position: relative;
}

.article-thumbnail img {
  max-height: 100%;  
  max-width: 100%; 
  width: auto;
  object-fit: cover;
  height: 100%;
  position: absolute;  
  top: 0;  
  bottom: 0;  
  left: 0;  
  right: 0;  
  margin: auto;
}

/* .article-list-item:first-child{
  margin-left:35px;
} */

.article-list-item {
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
  /* width: 245px; */
  width: 100%;
  height: 300px;
  margin-bottom: 10px;
  margin-right: 0px;
  margin-left: 0px;
  transition: box-shadow 0.3s ease-out;

}


/* @media screen and (max-width: 1000px) {

  .article-list-item {
    max-width: 200px;
    height: 300px;  
  }

  .article-thumbnail {
    height: 150px;
    width: 200px;
  }
} */

.article-list-item:hover{
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  
}

.article-list-item:last-child {
  margin-bottom: 0 !important;
}

.article-list-item .article-metadata {
  margin-bottom: 5px;
}

.article-list-description p {
  font-size: 0.75rem;
}

.article-metadata .article-date,
.article-metadata .article-categories,
.article-metadata .article-tags {
  font-size:0.6rem;
  margin-right: 10px;
}

.article-style img,
.article-style video {
  box-shadow: 1px 1px 0px #edefed, -1px -1px 0px #edefed, 1px -1px 0px #edefed, -1px 1px 0px #edefed;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

.article-style figure {
  margin-top: 10px;
  margin-bottom: 25px;
}

.article-style figure img {
  margin-top: 0;
  margin-bottom: 0;
}

#comments {
  padding-top: 1rem;
}

/*************************************************
 *  Publications
 **************************************************/

.pub-icon {
  color: #03396c;
  font-size: 0.81em;
  padding-top: 6px;
}

.pub-banner {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.pub .pub-title {
  margin-bottom: 5px;
}

.pub .pub-authors {
  font-style: italic;
  line-height: 30px; /* Match share bar line height. */
}

.pub .pub-row-heading {
  font-weight: bold;
}

.pub-list-item {
  margin-bottom: 40px;
}

.pub-list-item .pub-abstract {
  font-size: 1rem;
}

.pub-list-item .pub-authors {
  line-height: normal;
  font-style: normal;
  font-size: 1rem;
  color: #3170A5;
}

.pub-list-item .pub-publication {
  color: #090;
  font-size: 1rem;
}

.pub-list-item .pub-links {
  padding-top: 10px;
}

#container-publications {
  display: block;
  position: relative;
  overflow: hidden;
}

/*************************************************
 * Talks
 **************************************************/

.talk-event {
  color: #090;
  font-size: 1rem;
}

/*************************************************
 *  Projects
 **************************************************/

#projects.home-section li {
  margin-bottom: 1rem;
}

#projects.home-section li:last-of-type {
  margin-bottom: 0;
}

#projects.home-section .project-title {
  display: inline-block;
  margin-bottom: 6px;
}

#projects.home-section .project-description {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

#projects.home-section .project-tags {
  font-size: 0.75rem;
  color: #9c9c9c;
}

#container-projects {
  display: block;
  position: relative;
  /*margin-top: 5rem;*/
  overflow: hidden;
}

.project-toolbar{
  margin-bottom: 2rem;
}

.project-item {
  margin-bottom: 1.5rem;
}

.isotope-item {
  z-index: 2;
}

.isotope-item:hover{
  z-index: 3;
}

/*************************************************
 *  Card component
 **************************************************/

.card {
  margin-bottom: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
  transition: all 0.2s ease-out;
}

.card .card-image {
  display: block;
  position: relative;
  min-height: 100px;
}

.card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.card h4 a {
  color: #000;
  border-bottom: solid 1px transparent;
}

.card h4 a:hover {
  color: #000;
  border-bottom: solid 1px #000;
  text-decoration: none;
}

.card .card-text {
  padding: 0.75rem 1rem 0.75rem;
}

.card .card-text p {
  color: #999999;
  font-size: 0.75rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card .card-image.hover-overlay:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  content: " ";
  opacity: 0;
  transition: all 0.2s ease-out;
}

.card .card-image.hover-overlay:after {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
  opacity: 0;
  transition: all 0.2s ease-out;
  font-family: 'FontAwesome';
  content: '\f0c1';
  text-align: center;
  font-size: 3rem;
  color: #666;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.card:hover .card-image.hover-overlay:before {
  opacity: 0.8;
}

.card:hover .card-image.hover-overlay:after {
  opacity: 0.6;
}

/*************************************************
 *  About
 **************************************************/

 .about-description {
   padding-left: 5%;
   padding-right: 5%;
   font-size:18px;
 }

 /* .about-description h1 */

/*************************************************
 *  Contact
 **************************************************/

#contact.home-section .fa-ul {
  margin-left: 3.14285714rem; /* Must be > `fa-2x` icon size. */
}

#contact.home-section .fa-li {
  position: absolute;
  left: -3.14285714rem; /* Negative of `#contact.home-section .fa-ul` margin. */
  width: 2rem; /* Match `fa-2x` icon size. */
  top: 0.14285714em; /* Default FA value. */
  text-align: center;
}

#contact.home-section li {
  padding-top: 0.8rem; /* Align text with bottom of `fa-2x` icon. */
  margin-bottom: 0.3rem;
}

#contact.home-section li:last-of-type {
  margin-bottom: 0;
}

/*************************************************
 *  Footer
 **************************************************/

footer {
  margin: 0 0 0;
  padding: 2rem 0;
  /* background-color: #a3bac5; */
  width: 100%;
}

footer p {
  font-size: 0.75rem;
  text-align: center;
}

.site-footer,
footer a#back_to_top i {
  color: #2b3036;
}

/*************************************************
 *  Button Primary: Color Override
 **************************************************/

.btn-primary {
  border-color: #0095eb;
  background: #0095eb;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background: #0095eb;
}

/*************************************************
 *  Toolbar Buttons
 **************************************************/

.btn-toolbar .btn {
  font-size: 0.9rem;
  padding: 10px 14px 9px;
  border: none;
}

.btn-toolbar .btn:first-child {
  border-radius: 6px 0 0 6px;
}

.btn-toolbar .btn:last-child {
  border-radius: 0 6px 6px 0;
}

.btn-toolbar .btn.btn-primary:hover,
.btn-toolbar .btn.btn-primary:focus {
  background-color: rgba(0,149,235,0.6);
}

.btn-toolbar .btn.btn-primary:active,
.btn-toolbar .btn.btn-primary.active {
  background-color: rgba(0,89,175,1);
}

/*************************************************
 *  Button Outlines
 **************************************************/

.btn-outline {
  background-color: transparent;
  color: inherit;
  transition: all .5s;
}

.btn-primary.btn-outline {
  color: #0095eb;
  border-color: #0095eb;
}

.btn-success.btn-outline {
  color: #5cb85c;
}

.btn-info.btn-outline {
  color: #5bc0de;
}

.btn-warning.btn-outline {
  color: #f0ad4e;
}

.btn-danger.btn-outline {
  color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
  color: #fff;
}

/*************************************************
 *  Navigation Bar
 **************************************************/

.navbar {
  min-height: 80px !important;
  padding-right:20px;
}

.navbar-default {
  background: #fff;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0,0,0,.11)
}

nav#navbar-main li {
  font-size: 18px;
}

.navbar-default .navbar-nav>li>a,
.navbar-default .navbar-nav>a:focus,
.navbar-default .navbar-nav>a:hover {
  white-space: nowrap;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  color: #74858D;
  font-weight: 600;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
  color: #5FA7D1;
  font-weight: 700;
  background-color: transparent !important; /* Override Bootstrap. */
}

.navbar-brand,
.navbar-nav li a {
  height: inherit;
  line-height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #34495e;
  white-space: nowrap;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0095eb;
  outline: 0;
}

.navbar-default .navbar-brand {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.6em;
  color: rgb(95, 167, 209);
}

/* Only apply when small: */
@media screen and (max-width: 800px) {
  .navbar {
    min-height: 50px !important;    
    
  }

  .navbar-default .navbar-brand {
    font-size: 1.0em;

  }

  .navbar-brand,
  .navbar-nav li a {
    height: inherit;
    line-height: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    
    
  }

  .navbar-header {
    float: none;
    min-height: inherit;
    
  }

  .navbar-left,
  .navbar-right {
    float: none !important;
    
  }

  .navbar-toggle {
    display: block;
    /* BOOKMARK: */
    /* background-color:#090; */
    
  }

  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  
  .navbar-collapse.collapse {
    display: none !important;
    /* background-color: #090; */
    
  }
  
  .navbar-nav {
    float: none !important;
    margin-top: 7.5px;
    
  }
  
  .navbar-nav > li {
    text-align: right;
    float: none;
    
  }

  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: normal;
  }

  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #34495e;
    white-space: nowrap;
  }

  .navbar-default .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    padding: 5px 15px 5px 25px;
    line-height: 20px;
    color: #34495e;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    color: inherit;
    background-color: transparent;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
    color: #0095eb;
    background-color: transparent;
  }

  .collapse.in {
    display: block !important;
  }
}

/*************************************************
 *  Tables
 **************************************************/

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  font-size: 0.93rem;
}

table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.43;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

table > caption + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > th,
table > thead:first-child > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

table > tbody + tbody {
  border-top: 2px solid #ddd;
}

table table {
  background-color: #fff;
}

/* Table Striped */
table > tbody > tr:nth-child(odd) > td,
table > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

/* Table Hover */
table > tbody > tr:hover > td,
table > tbody > tr:hover > th {
  background-color: #e5e5e5;
}

/*************************************************
 *  Alerts
 **************************************************/

div.alert {
  border-radius: 10px;
  margin-bottom: 1rem;
}

div.alert p {
  position: relative;
  display: block;
  font-size: 0.8rem;
  margin-left: 2rem;
  margin-top: 0;
  margin-bottom: 0;
}

div.alert p:first-child::before {
  position: absolute;
  top: -0.5rem;
  left: -2rem;
  font-family: 'FontAwesome';
  font-size: 1.5rem;
  color: #fff;
  content: '\f05a';
  width: 1.5rem;
  text-align: center;
}

div.alert-warning p:first-child::before {
  content: '\f071';
}

div.alert a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: solid 1px #e4e4e4;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

div.alert a:hover {
  border-bottom-color: transparent;
  color: rgba(255,255,255,0.5) !important;
}

.alert-note {
  color: #fff;
  background-color: #03A9F4; /* Material LightBlue500 */
  border-color: #bce8f1;
}

.alert-warning {
  color: #fff;
  background-color: #f44336; /* Material Red500 */
  border-color: #ebccd1;
}

.sidebar {
  margin: 1rem 0rem 1rem 1rem;
  background-color: #fff;
  padding: 1rem 1rem 1rem 1rem;
  color: #74858D;
  border-radius: 10px;
  border: solid #447EA0;
  border-width: 0px;
  font-family: "Open Sans";
}

.sidebar li{
  list-style: none;
}

.sidebar li:before {
  content: "\f07b"; /* FontAwesome Unicode */
  color: #05BEFF;
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
}

.sidebar a {
  color: #05BEFF;
}
