@font-face {
  font-family: 'Larsseit';
  src: url("/font/Larsseit-Light.otf") format("opentype");
}

@font-face {
  font-family: 'Larsseit';
  font-weight: bold;
  src: url("/font/Larsseit-ExtraBold.otf") format("opentype");
}

body {
  background: #fff;
  font-family: 'Larsseit', Fallback, sans-serif;
  overflow-y: auto;
  margin: 0 0 82px; /* bottom = footer height */
}

html {
  position: relative;
  min-height: 100%;
}

footer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 82px;
  width: 100%;
}

.clear-padding {
  padding: 0px;
}

.modal-backdrop {
  height: 100%;
  position: fixed;
}

.node {
  stroke: #fff;
  stroke-width: 1.5px;
  stroke-opacity: .5;
  opacity: 0.9;
}

.link {
  stroke: #999;
  stroke-opacity: .1;
}

.content {
  position: relative;
  z-index: 100;
}

.background{
  color: #999999;
  position: absolute;
  top: 0;
}

.default-color {
  color: #23b7e5 !important;
}

.m-10 {
  margin: 10px;
}

.comic-logo {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-60 {
  margin-top: 60px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-200 {
  margin-top: 200px;
}

.ml-10 {
  margin-left: 10px;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-160 {
  margin-bottom: 160px !important;
}

.p-10 {
  padding: 10px;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.p-45 {
  padding: 45px !important;
}

.font-size-3em {
  font-size: 6em;
}

.font-size-50px {
  font-size: 100px !important;
}

.form-radio-container {
  font-size: 16px;
}

.reset-overflow {
  overflow: auto;
}

.text-left {
  text-align: left;
}

.height-140 {
  height: 140px;
}

.height-400 {
  height: 400px;
}

.width-500 {
  width: 500px;
}

.mh-auto {
  margin-left: auto;
  margin-right: auto;
}

.color-grey {
  color: #515253;
}

.border-round {
  border-radius: 32px;
}

.feature-details:hover {
  color: black;
  cursor: pointer;
}

#features-image {
  box-shadow: 5px 5px 25px 0px rgba(128,128,128,1);
}

.feature-details-selected {
  background-color: #dde6e9;
  border-radius: 16px;
  color: black;
}

.vertical-center {
  min-height: 50%;  /* Fallback for browsers do NOT support vh unit */
  min-height: 50vh; /* These two lines are counted as one :-)       */
  display: flex;
  align-items: center;
}

.font-italic {
  font-style: italic;
}

.bio-details {
  cursor: pointer;
  margin-top: 20px;
}

.bio-details:hover {
  text-decoration: underline;
}

/* Dropdown Button */
.dropbtn {
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

.position-relative {
  position: relative;
}

.navbar-default .navbar-nav .nav-highlight >li>a:hover {
  color: #5d9cec;
}

.navbar-always-visible {
  line-height: 30px;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  min-height: 60px;
  background: #fff;
  border: none;
  padding: 0!important;
  margin-bottom: 0!important;
  backface-visibility: hidden;
  -webkit-box-shadow: 0 2px 7px 0 rgba(53,53,53,.1);
  box-shadow: 0 2px 7px 0 rgba(53,53,53,.1);
}

.navbar-always-visible .navbar-header img {
  max-height: 30px;
  backface-visibility: hidden;
}

/* team page styles */
.ch-grid {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
}

.ch-grid:after,
.ch-item:before {
	content: '';
    display: table;
}

.ch-grid:after {
	clear: both;
}

.ch-grid li {
	width: 220px;
	height: 220px;
	display: inline-block;
	margin: 20px;
}

.ch-item {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: relative;
	cursor: default;
  box-shadow: inset 0 0 0 16px rgba(255,255,255,0.6), 0 2px 2px rgba(0,0,0,0.5);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.ch-item.ch-advisor>h3 {
  margin-top: 90px !important;
}

.ch-item.ch-advisor:hover {
  text-decoration: underline;
  cursor: pointer;
}

.ch-img-stephen-ridley {
  background-image: url(/img/team/stephen-ridley-comic.jpg);
}

.ch-item:hover .ch-info-stephen-ridley {
  background-image: url(/img/team/stephen-ridley.jpg);
}

.ch-img-vera-sell {
  background-image: url(/img/team/vera-sell-comic.jpg);
}

.ch-item:hover .ch-info-vera-sell {
  background-image: url(/img/team/vera-sell.jpg);
}

.ch-img-kelly-bauman {
  background-image: url(/img/team/kelly-bauman-comic.jpg);
}

.ch-item:hover .ch-info-kelly-bauman {
  background-image: url(/img/team/kelly-bauman.png);
}

.ch-img-paul-yun {
  background-image: url(/img/team/paul-yun-comic.jpg);
}

.ch-item:hover .ch-info-paul-yun {
  background-image: url(/img/team/paul-yun.png);
}

.ch-img-guillermo-garcia {
  background-image: url(/img/team/guillermo-garcia-comic.jpg);
}

.ch-item:hover .ch-info-guillermo-garcia {
  background-image: url(/img/team/guillermo-garcia.jpg);
}

.ch-img-lane-breneman {
  background-image: url(/img/team/lane-breneman-comic.jpg);
}

.ch-item:hover .ch-info-lane-breneman {
  background-image: url(/img/team/lane-breneman.jpg);
}

.ch-img-margaret-carlton {
  background-image: url(/img/team/margaret-carlton-comic.png);
}

.ch-item:hover .ch-info-margaret-carlton {
  background-image: url(/img/team/margaret-carlton.png);
}

.ch-img-jorge-chiavaro {
  background-image: url(/img/team/jorge-chiavaro-comic.jpg);
}

.ch-item:hover .ch-info-jorge-chiavaro {
  background-image: url(/img/team/jorge-chiavaro.jpg);
}

.ch-img-john-viega {
  background-image: url(/img/team/john-viega-comic.jpg);
}

.ch-item:hover .ch-info-john-viega {
  background-image: url(/img/team/john-viega.jpg);
}

.ch-img-stephanie-fohn {
  background-image: url(/img/team/stephanie-fohn-comic.jpg);
}

.ch-item:hover .ch-info-stephanie-fohn {
  background-image: url(/img/team/stephanie-fohn.jpg);
}

.ch-img-christopher-bolin {
  background-image: url(/img/team/christopher-bolin-comic.jpg);
}

.ch-item:hover .ch-info-christopher-bolin {
  background-image: url(/img/team/christopher-bolin.jpg);
}

.ch-img-ben-johnson {
  background-image: url(/img/team/ben-johnson-comic.jpg);
}

.ch-item:hover .ch-info-ben-johnson {
  background-image: url(/img/team/ben-johnson.jpg);
}

.ch-img-alex-payne {
  background-image: url(/img/team/alex-payne-comic.jpg);
}

.ch-item:hover .ch-info-alex-payne {
  background-image: url(/img/team/alex-payne.jpg);
}

.ch-img-drew-smith {
  background-image: url(/img/team/drew-smith-comic.jpg);
}

.ch-item:hover .ch-info-drew-smith {
  background-image: url(/img/team/drew-smith.jpg);
}

.ch-info {
	position: absolute;
	background: rgba(35, 35, 35, 0.5);
	width: inherit;
	height: inherit;
	border-radius: 50%;
	opacity: 0;

	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;

	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);

	-webkit-backface-visibility: hidden;

}

.ch-info h3 {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 22px;
	margin: 0 30px;
	padding: 45px 0 0 0;
	height: 140px;
	font-family: 'Open Sans', Arial, sans-serif;
	text-shadow:
		0 0 1px #fff,
		0 1px 2px rgba(0,0,0,0.3);
}

.ch-info p {
	color: #fff;
	padding: 10px 5px;
	font-style: italic;
	margin: 0 30px;
	font-size: 12px;
	border-top: 1px solid rgba(255,255,255,0.5);
	opacity: 0;
	-webkit-transition: all 1s ease-in-out 0.4s;
	-moz-transition: all 1s ease-in-out 0.4s;
	-o-transition: all 1s ease-in-out 0.4s;
	-ms-transition: all 1s ease-in-out 0.4s;
	transition: all 1s ease-in-out 0.4s;
}

.ch-info p a {
	display: block;
	color: #fff;
	color: rgba(255,255,255,0.7);
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 9px;
	letter-spacing: 1px;
	padding-top: 4px;
	font-family: 'Open Sans', Arial, sans-serif;
}

.ch-info p a:hover {
	color: #fff222;
	color: rgba(255,242,34, 0.8);
}

.ch-item:hover {
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,0.1),
		0 1px 2px rgba(0,0,0,0.1);
}
.ch-item:hover .ch-info {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.ch-item:hover .ch-info p {
	opacity: 1;
}

#comic-footer {
  position: fixed;
  top: 90%;
  height: 10%;
  width: 100%;
  text-align: center;
}

.padding-right-15 {
  padding-right: 15px !important;
}

.modal {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.width-640 {
  width: 640px;
}

@media screen and (min-width: 992px) {
  .contact-form-separator {
    border-left: 1px solid #cfdbe2;
  }
}

@media screen and (max-width: 992px) {
  .contact-form-separator {
    border-top: 1px solid #cfdbe2;
  }
}
