@charset "UTF-8";
/* Utils */
/**
 * Add this to your animations to get the item to spin.
 * Example use
 *   animation: spin360 1s linear infinite;
 **/
@import url(//fonts.googleapis.com/css?family=Titillium+Web:400,600,700);
@import url(//fonts.googleapis.com/css?family=Titillium+Web:400,600,700);
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@keyframes spin360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.text-center {
  text-align: center;
}

.block-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hide {
  display: none;
}

/* Mixins */
/**
 * This mixin allows you to target specific devices/screens
 *
 * Examples:
 *
 *  @include target(ipad-pro) {
 *     width: 250px;
 *  }
 *
 *  @include target(desktop) {
 *   width: 350px;
 *   }
 **/
/**
 * These mixins are for the Solar Eclipse Page
 *
 * Examples:
 *
 *  @include live-feed-flex-container(row);
 *
 *  @include live-feed-flex-align(start);
 *
 *  @include live-feed-flex-item(1);
 *
 *  @include live-feed-flex-shorthand(0 1 65%);
 *
 *  @include live-feed-flex-headers;
 *
 **/
.cards--card {
  min-height: 1px;
  padding: 0 15px 15px;
}
.cards--card .headline {
  margin-bottom: 0;
  margin-top: 0;
}

.cards--1row {
  height: 315px;
}

.cards--2row {
  height: 630px;
}

.cards--2row.oneByTwoAfterLctv {
  height: 695px;
}

.cards--1row.cards--1col .headline {
  word-wrap: break-word;
}

/*
  Media Queries
 */
@media (min-width: 768px) {
  .cards--2col, .cards--3col, .cards--4col {
    grid-column-end: span 2;
  }
}
@media (min-width: 992px) {
  .cards--card {
    padding: 0 7.5px 15px;
  }

  .cards--2row {
    grid-row-end: span 2;
  }

  .cards--3row {
    grid-row-end: span 3;
  }

  .cards--4row {
    grid-row-end: span 4;
  }

  .cards--3col {
    grid-column-end: span 3;
  }

  .cards--4col {
    grid-column-end: span 4;
  }

  .cards--card.oneByTwoAfterLctv {
    padding-bottom: 25px;
    padding-top: 54px;
  }
}
/* Variables */
/* Base */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a {
  background: transparent;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "“" "”" "‘" "’";
}

q:before,
q:after {
  content: "";
  content: none;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===========================
   Base
 =========================== */
html {
  background: #fff;
}

body {
  font-size: 1em;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

/* Layout */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-1 {
    width: 8.3333333333%;
  }

  .col-sm-2 {
    width: 16.6666666667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.3333333333%;
  }

  .col-sm-5 {
    width: 41.6666666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.3333333333%;
  }

  .col-sm-8 {
    width: 66.6666666667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.3333333333%;
  }

  .col-sm-11 {
    width: 91.6666666667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-pull-1 {
    right: 8.3333333333%;
  }

  .col-sm-pull-2 {
    right: 16.6666666667%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-4 {
    right: 33.3333333333%;
  }

  .col-sm-pull-5 {
    right: 41.6666666667%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-7 {
    right: 58.3333333333%;
  }

  .col-sm-pull-8 {
    right: 66.6666666667%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-10 {
    right: 83.3333333333%;
  }

  .col-sm-pull-11 {
    right: 91.6666666667%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-push-1 {
    left: 8.3333333333%;
  }

  .col-sm-push-2 {
    left: 16.6666666667%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-4 {
    left: 33.3333333333%;
  }

  .col-sm-push-5 {
    left: 41.6666666667%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-7 {
    left: 58.3333333333%;
  }

  .col-sm-push-8 {
    left: 66.6666666667%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-10 {
    left: 83.3333333333%;
  }

  .col-sm-push-11 {
    left: 91.6666666667%;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-1 {
    width: 8.3333333333%;
  }

  .col-md-2 {
    width: 16.6666666667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.3333333333%;
  }

  .col-md-5 {
    width: 41.6666666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.3333333333%;
  }

  .col-md-8 {
    width: 66.6666666667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.3333333333%;
  }

  .col-md-11 {
    width: 91.6666666667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-pull-1 {
    right: 8.3333333333%;
  }

  .col-md-pull-2 {
    right: 16.6666666667%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-4 {
    right: 33.3333333333%;
  }

  .col-md-pull-5 {
    right: 41.6666666667%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-7 {
    right: 58.3333333333%;
  }

  .col-md-pull-8 {
    right: 66.6666666667%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-10 {
    right: 83.3333333333%;
  }

  .col-md-pull-11 {
    right: 91.6666666667%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-push-1 {
    left: 8.3333333333%;
  }

  .col-md-push-2 {
    left: 16.6666666667%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-4 {
    left: 33.3333333333%;
  }

  .col-md-push-5 {
    left: 41.6666666667%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-7 {
    left: 58.3333333333%;
  }

  .col-md-push-8 {
    left: 66.6666666667%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-10 {
    left: 83.3333333333%;
  }

  .col-md-push-11 {
    left: 91.6666666667%;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-1 {
    width: 8.3333333333%;
  }

  .col-lg-2 {
    width: 16.6666666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.3333333333%;
  }

  .col-lg-5 {
    width: 41.6666666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.3333333333%;
  }

  .col-lg-8 {
    width: 66.6666666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.3333333333%;
  }

  .col-lg-11 {
    width: 91.6666666667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-pull-1 {
    right: 8.3333333333%;
  }

  .col-lg-pull-2 {
    right: 16.6666666667%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-4 {
    right: 33.3333333333%;
  }

  .col-lg-pull-5 {
    right: 41.6666666667%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-7 {
    right: 58.3333333333%;
  }

  .col-lg-pull-8 {
    right: 66.6666666667%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-10 {
    right: 83.3333333333%;
  }

  .col-lg-pull-11 {
    right: 91.6666666667%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-push-1 {
    left: 8.3333333333%;
  }

  .col-lg-push-2 {
    left: 16.6666666667%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-4 {
    left: 33.3333333333%;
  }

  .col-lg-push-5 {
    left: 41.6666666667%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-7 {
    left: 58.3333333333%;
  }

  .col-lg-push-8 {
    left: 66.6666666667%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-10 {
    left: 83.3333333333%;
  }

  .col-lg-push-11 {
    left: 91.6666666667%;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* Packages */
.ember-power-calendar {
  box-sizing: border-box;
  position: relative;
}

.ember-power-calendar-nav {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.ember-power-calendar-nav * {
  box-sizing: border-box;
}

.ember-power-calendar-days, .ember-power-calendar-days * {
  box-sizing: border-box;
}

.ember-power-calendar-nav-title {
  flex: 1;
  text-align: center;
}

.ember-power-calendar-row {
  display: flex;
  justify-content: space-between;
}

.ember-power-calendar-weekday {
  -webkit-appearance: none;
  flex: 1 1 100%;
  padding: 0;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0;
}

.ember-power-calendar-day {
  -webkit-appearance: none;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  flex: 1 1 100%;
  font-size: inherit;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ember-power-calendar-nav-control {
  -webkit-appearance: none;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  font-size: inherit;
}

.ember-power-calendar {
  font-size: 14px;
  line-height: 1.42857;
}

.ember-power-calendar-nav {
  line-height: 2;
}

.ember-power-calendar-nav-control {
  line-height: 1;
  font-size: 150%;
}
.ember-power-calendar-nav-control:focus {
  transform: scale(1.2);
}

.ember-power-calendar-day--selected,
.ember-power-calendar-day--selected:not([disabled]):hover {
  font-weight: bold;
}

.ember-power-calendar-day--interactive[disabled] {
  opacity: 0.4;
}

/* Modules */
.admin-tabs ul {
  margin: 0;
}

/* moved this into correct file but didn't refactor yet */
.logged-in div#nasa-edit-tabs, .logged-in .contextual-links, .not-logged-in div#nasa-edit-tabs, .not-logged-in .contextual-links {
  text-align: right;
  background-color: #333;
  height: 30px;
}
.logged-in div#nasa-edit-tabs ul li,
.logged-in .contextual-links li, .not-logged-in div#nasa-edit-tabs ul li,
.not-logged-in .contextual-links li {
  font-size: 14px;
  display: inline-block;
}
.logged-in div#nasa-edit-tabs ul li a,
.logged-in .contextual-links li a, .not-logged-in div#nasa-edit-tabs ul li a,
.not-logged-in .contextual-links li a {
  padding: 5px 15px 5px 15px;
  border-left: 1px solid #aaa;
  display: block;
  color: #aaa;
  text-decoration: none;
}
.logged-in div#nasa-edit-tabs a:hover,
.logged-in .contextual-links a:hover, .not-logged-in div#nasa-edit-tabs a:hover,
.not-logged-in .contextual-links a:hover {
  color: #fff;
  text-decoration: none;
}

/*!
 * Bootstrap v3.1.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  a, a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }

  select {
    background: #fff !important;
  }

  .navbar {
    display: none;
  }

  .table td, .table th {
    background-color: #fff !important;
  }

  .btn > .caret, .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  .label {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table-bordered th, .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #317ab9;
  text-decoration: none;
}

a:hover, a:focus {
  color: #2a6496;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #999;
}

h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
  font-size: 65%;
}

h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
  font-size: 75%;
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 14px;
}

h6, .h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small, .small {
  font-size: 85%;
}

cite {
  font-style: normal;
}

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

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

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

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

.text-muted {
  color: #999;
}

.text-primary {
  color: #428bca;
}

a.text-primary:hover {
  color: #3071a9;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover {
  color: #843534;
}

.bg-primary {
  color: #fff;
  background-color: #428bca;
}

a.bg-primary:hover {
  background-color: #3071a9;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt, dd {
  line-height: 1.42857143;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title], abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer, blockquote small, blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #999;
}

blockquote footer:before, blockquote small:before, blockquote .small:before {
  content: "— ";
}

.blockquote-reverse, blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eee;
  border-left: 0;
  text-align: right;
}

.blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before {
  content: "";
}

.blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after {
  content: " —";
}

blockquote:before, blockquote:after {
  content: "";
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}

code, kbd, pre, samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  white-space: nowrap;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

@media (min-width: 768px) {
  .container {
    width: 735px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 955px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1155px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: 0;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: 0;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: 0;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: 0;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: 0;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: 0;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: 0;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: 0;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  max-width: 100%;
  background-color: transparent;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  margin-bottom: 20px;
}

.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.42857143;
  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-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}

table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*=col-], table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

@media (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive > .table {
    margin-bottom: 0;
  }

  .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }

  .table-responsive > .table-bordered {
    border: 0;
  }

  .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }

  .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }

  .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=radio], input[type=checkbox] {
  margin: 4px 0 0;
  margin-top: 1px \9 ;
  line-height: normal;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

select[multiple], select[size] {
  height: auto;
}

input[type=file]:focus, input[type=radio]:focus, input[type=checkbox]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}

textarea.form-control {
  height: auto;
}

input[type=search] {
  -webkit-appearance: none;
}

input[type=date] {
  line-height: 34px;
}

.form-group {
  margin-bottom: 15px;
}

.radio, .checkbox {
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.radio label, .checkbox label {
  display: inline;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
  float: left;
  margin-left: -20px;
}

.radio + .radio, .checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline, .checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type=radio][disabled], input[type=checkbox][disabled], .radio[disabled], .radio-inline[disabled], .checkbox[disabled], .checkbox-inline[disabled], fieldset[disabled] input[type=radio], fieldset[disabled] input[type=checkbox], fieldset[disabled] .radio, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox, fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm, select[multiple].input-sm {
  height: auto;
}

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

select.input-lg {
  height: 46px;
  line-height: 46px;
}

textarea.input-lg, select[multiple].input-lg {
  height: auto;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 42.5px;
}

.has-feedback .form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline {
  color: #3c763d;
}

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.form-control-static {
  margin-bottom: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .input-group > .form-control {
    width: 100%;
  }

  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio, .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    vertical-align: middle;
  }

  .form-inline .radio input[type=radio], .form-inline .checkbox input[type=checkbox] {
    float: none;
    margin-left: 0;
  }

  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}

.form-horizontal .radio, .form-horizontal .checkbox {
  min-height: 27px;
}

.form-horizontal .form-group {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.form-horizontal .form-control-static {
  padding-top: 7px;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 7.5px;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:focus, .btn:active:focus, .btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover, .btn:focus {
  color: #333;
  text-decoration: none;
}

.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
  color: #333;
  background-color: #ebebeb;
  border-color: #adadad;
}

.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
  background-image: none;
}

.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}

.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #3276b1;
  border-color: #285e8e;
}

.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}

.btn-primary .badge {
  color: #428bca;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #47a447;
  border-color: #398439;
}

.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
  background-image: none;
}

.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #39b3d7;
  border-color: #269abc;
}

.btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
  background-image: none;
}

.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ed9c28;
  border-color: #d58512;
}

.btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
  background-image: none;
}

.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #d2322d;
  border-color: #ac2925;
}

.btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
  background-image: none;
}

.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}

.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}

.btn-link:hover, .btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
  color: #999;
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type=submit].btn-block, input[type=reset].btn-block, input[type=button].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@font-face {
  font-family: "Glyphicons Halflings";
  src: url("/bower_components/bootstrap-sass/fonts/glyphicons-halflings-regular.eot");
  src: url("/bower_components/bootstrap-sass/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("/bower_components/bootstrap-sass/fonts/glyphicons-halflings-regular.woff") format("woff"), url("/bower_components/bootstrap-sass/fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("/bower_components/bootstrap-sass/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
  content: "*";
}

.glyphicon-plus:before {
  content: "+";
}

.glyphicon-euro:before {
  content: "€";
}

.glyphicon-minus:before {
  content: "−";
}

.glyphicon-cloud:before {
  content: "☁";
}

.glyphicon-envelope:before {
  content: "✉";
}

.glyphicon-pencil:before {
  content: "✏";
}

.glyphicon-glass:before {
  content: "";
}

.glyphicon-music:before {
  content: "";
}

.glyphicon-search:before {
  content: "";
}

.glyphicon-heart:before {
  content: "";
}

.glyphicon-star:before {
  content: "";
}

.glyphicon-star-empty:before {
  content: "";
}

.glyphicon-user:before {
  content: "";
}

.glyphicon-film:before {
  content: "";
}

.glyphicon-th-large:before {
  content: "";
}

.glyphicon-th:before {
  content: "";
}

.glyphicon-th-list:before {
  content: "";
}

.glyphicon-ok:before {
  content: "";
}

.glyphicon-remove:before {
  content: "";
}

.glyphicon-zoom-in:before {
  content: "";
}

.glyphicon-zoom-out:before {
  content: "";
}

.glyphicon-off:before {
  content: "";
}

.glyphicon-signal:before {
  content: "";
}

.glyphicon-cog:before {
  content: "";
}

.glyphicon-trash:before {
  content: "";
}

.glyphicon-home:before {
  content: "";
}

.glyphicon-file:before {
  content: "";
}

.glyphicon-time:before {
  content: "";
}

.glyphicon-road:before {
  content: "";
}

.glyphicon-download-alt:before {
  content: "";
}

.glyphicon-download:before {
  content: "";
}

.glyphicon-upload:before {
  content: "";
}

.glyphicon-inbox:before {
  content: "";
}

.glyphicon-play-circle:before {
  content: "";
}

.glyphicon-repeat:before {
  content: "";
}

.glyphicon-refresh:before {
  content: "";
}

.glyphicon-list-alt:before {
  content: "";
}

.glyphicon-lock:before {
  content: "";
}

.glyphicon-flag:before {
  content: "";
}

.glyphicon-headphones:before {
  content: "";
}

.glyphicon-volume-off:before {
  content: "";
}

.glyphicon-volume-down:before {
  content: "";
}

.glyphicon-volume-up:before {
  content: "";
}

.glyphicon-qrcode:before {
  content: "";
}

.glyphicon-barcode:before {
  content: "";
}

.glyphicon-tag:before {
  content: "";
}

.glyphicon-tags:before {
  content: "";
}

.glyphicon-book:before {
  content: "";
}

.glyphicon-bookmark:before {
  content: "";
}

.glyphicon-print:before {
  content: "";
}

.glyphicon-camera:before {
  content: "";
}

.glyphicon-font:before {
  content: "";
}

.glyphicon-bold:before {
  content: "";
}

.glyphicon-italic:before {
  content: "";
}

.glyphicon-text-height:before {
  content: "";
}

.glyphicon-text-width:before {
  content: "";
}

.glyphicon-align-left:before {
  content: "";
}

.glyphicon-align-center:before {
  content: "";
}

.glyphicon-align-right:before {
  content: "";
}

.glyphicon-align-justify:before {
  content: "";
}

.glyphicon-list:before {
  content: "";
}

.glyphicon-indent-left:before {
  content: "";
}

.glyphicon-indent-right:before {
  content: "";
}

.glyphicon-facetime-video:before {
  content: "";
}

.glyphicon-picture:before {
  content: "";
}

.glyphicon-map-marker:before {
  content: "";
}

.glyphicon-adjust:before {
  content: "";
}

.glyphicon-tint:before {
  content: "";
}

.glyphicon-edit:before {
  content: "";
}

.glyphicon-share:before {
  content: "";
}

.glyphicon-check:before {
  content: "";
}

.glyphicon-move:before {
  content: "";
}

.glyphicon-step-backward:before {
  content: "";
}

.glyphicon-fast-backward:before {
  content: "";
}

.glyphicon-backward:before {
  content: "";
}

.glyphicon-play:before {
  content: "";
}

.glyphicon-pause:before {
  content: "";
}

.glyphicon-stop:before {
  content: "";
}

.glyphicon-forward:before {
  content: "";
}

.glyphicon-fast-forward:before {
  content: "";
}

.glyphicon-step-forward:before {
  content: "";
}

.glyphicon-eject:before {
  content: "";
}

.glyphicon-chevron-left:before {
  content: "";
}

.glyphicon-chevron-right:before {
  content: "";
}

.glyphicon-plus-sign:before {
  content: "";
}

.glyphicon-minus-sign:before {
  content: "";
}

.glyphicon-remove-sign:before {
  content: "";
}

.glyphicon-ok-sign:before {
  content: "";
}

.glyphicon-question-sign:before {
  content: "";
}

.glyphicon-info-sign:before {
  content: "";
}

.glyphicon-screenshot:before {
  content: "";
}

.glyphicon-remove-circle:before {
  content: "";
}

.glyphicon-ok-circle:before {
  content: "";
}

.glyphicon-ban-circle:before {
  content: "";
}

.glyphicon-arrow-left:before {
  content: "";
}

.glyphicon-arrow-right:before {
  content: "";
}

.glyphicon-arrow-up:before {
  content: "";
}

.glyphicon-arrow-down:before {
  content: "";
}

.glyphicon-share-alt:before {
  content: "";
}

.glyphicon-resize-full:before {
  content: "";
}

.glyphicon-resize-small:before {
  content: "";
}

.glyphicon-exclamation-sign:before {
  content: "";
}

.glyphicon-gift:before {
  content: "";
}

.glyphicon-leaf:before {
  content: "";
}

.glyphicon-fire:before {
  content: "";
}

.glyphicon-eye-open:before {
  content: "";
}

.glyphicon-eye-close:before {
  content: "";
}

.glyphicon-warning-sign:before {
  content: "";
}

.glyphicon-plane:before {
  content: "";
}

.glyphicon-calendar:before {
  content: "";
}

.glyphicon-random:before {
  content: "";
}

.glyphicon-comment:before {
  content: "";
}

.glyphicon-magnet:before {
  content: "";
}

.glyphicon-chevron-up:before {
  content: "";
}

.glyphicon-chevron-down:before {
  content: "";
}

.glyphicon-retweet:before {
  content: "";
}

.glyphicon-shopping-cart:before {
  content: "";
}

.glyphicon-folder-close:before {
  content: "";
}

.glyphicon-folder-open:before {
  content: "";
}

.glyphicon-resize-vertical:before {
  content: "";
}

.glyphicon-resize-horizontal:before {
  content: "";
}

.glyphicon-hdd:before {
  content: "";
}

.glyphicon-bullhorn:before {
  content: "";
}

.glyphicon-bell:before {
  content: "";
}

.glyphicon-certificate:before {
  content: "";
}

.glyphicon-thumbs-up:before {
  content: "";
}

.glyphicon-thumbs-down:before {
  content: "";
}

.glyphicon-hand-right:before {
  content: "";
}

.glyphicon-hand-left:before {
  content: "";
}

.glyphicon-hand-up:before {
  content: "";
}

.glyphicon-hand-down:before {
  content: "";
}

.glyphicon-circle-arrow-right:before {
  content: "";
}

.glyphicon-circle-arrow-left:before {
  content: "";
}

.glyphicon-circle-arrow-up:before {
  content: "";
}

.glyphicon-circle-arrow-down:before {
  content: "";
}

.glyphicon-globe:before {
  content: "";
}

.glyphicon-wrench:before {
  content: "";
}

.glyphicon-tasks:before {
  content: "";
}

.glyphicon-filter:before {
  content: "";
}

.glyphicon-briefcase:before {
  content: "";
}

.glyphicon-fullscreen:before {
  content: "";
}

.glyphicon-dashboard:before {
  content: "";
}

.glyphicon-paperclip:before {
  content: "";
}

.glyphicon-heart-empty:before {
  content: "";
}

.glyphicon-link:before {
  content: "";
}

.glyphicon-phone:before {
  content: "";
}

.glyphicon-pushpin:before {
  content: "";
}

.glyphicon-usd:before {
  content: "";
}

.glyphicon-gbp:before {
  content: "";
}

.glyphicon-sort:before {
  content: "";
}

.glyphicon-sort-by-alphabet:before {
  content: "";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "";
}

.glyphicon-sort-by-order:before {
  content: "";
}

.glyphicon-sort-by-order-alt:before {
  content: "";
}

.glyphicon-sort-by-attributes:before {
  content: "";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "";
}

.glyphicon-unchecked:before {
  content: "";
}

.glyphicon-expand:before {
  content: "";
}

.glyphicon-collapse-down:before {
  content: "";
}

.glyphicon-collapse-up:before {
  content: "";
}

.glyphicon-log-in:before {
  content: "";
}

.glyphicon-flash:before {
  content: "";
}

.glyphicon-log-out:before {
  content: "";
}

.glyphicon-new-window:before {
  content: "";
}

.glyphicon-record:before {
  content: "";
}

.glyphicon-save:before {
  content: "";
}

.glyphicon-open:before {
  content: "";
}

.glyphicon-saved:before {
  content: "";
}

.glyphicon-import:before {
  content: "";
}

.glyphicon-export:before {
  content: "";
}

.glyphicon-send:before {
  content: "";
}

.glyphicon-floppy-disk:before {
  content: "";
}

.glyphicon-floppy-saved:before {
  content: "";
}

.glyphicon-floppy-remove:before {
  content: "";
}

.glyphicon-floppy-save:before {
  content: "";
}

.glyphicon-floppy-open:before {
  content: "";
}

.glyphicon-credit-card:before {
  content: "";
}

.glyphicon-transfer:before {
  content: "";
}

.glyphicon-cutlery:before {
  content: "";
}

.glyphicon-header:before {
  content: "";
}

.glyphicon-compressed:before {
  content: "";
}

.glyphicon-earphone:before {
  content: "";
}

.glyphicon-phone-alt:before {
  content: "";
}

.glyphicon-tower:before {
  content: "";
}

.glyphicon-stats:before {
  content: "";
}

.glyphicon-sd-video:before {
  content: "";
}

.glyphicon-hd-video:before {
  content: "";
}

.glyphicon-subtitles:before {
  content: "";
}

.glyphicon-sound-stereo:before {
  content: "";
}

.glyphicon-sound-dolby:before {
  content: "";
}

.glyphicon-sound-5-1:before {
  content: "";
}

.glyphicon-sound-6-1:before {
  content: "";
}

.glyphicon-sound-7-1:before {
  content: "";
}

.glyphicon-copyright-mark:before {
  content: "";
}

.glyphicon-registration-mark:before {
  content: "";
}

.glyphicon-cloud-download:before {
  content: "";
}

.glyphicon-cloud-upload:before {
  content: "";
}

.glyphicon-tree-conifer:before {
  content: "";
}

.glyphicon-tree-deciduous:before {
  content: "";
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

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

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

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

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #999;
}

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.dropdown-menu-left {
  left: 0;
  right: auto;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #999;
}

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }

  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btn-group > .btn, .btn-group-vertical > .btn {
  position: relative;
  float: left;
}

.btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group > .btn:focus, .btn-group-vertical > .btn:focus {
  outline: none;
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}

.btn-toolbar .btn-group, .btn-toolbar .input-group {
  float: left;
}

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

.btn-group-vertical > .btn-group > .btn {
  float: none;
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

.btn-group-justified > .btn, .btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}

.btn-group-justified > .btn-group .btn {
  width: 100%;
}

[data-toggle=buttons] > .btn > input[type=radio], [data-toggle=buttons] > .btn > input[type=checkbox] {
  display: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group[class*=col-] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}

textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}

textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}

.input-group-addon, .input-group-btn, .input-group .form-control {
  display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon, .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

.input-group-addon input[type=radio], .input-group-addon input[type=checkbox] {
  margin-top: 0;
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

.input-group-btn > .btn {
  position: relative;
}

.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.nav > li {
  position: relative;
  display: block;
}

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

.nav > li.disabled > a {
  color: #999;
}

.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #999;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eee;
  border-color: #428bca;
}

.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified > li {
  float: none;
}

.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }

  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}

.nav-pills > li > a {
  border-radius: 4px;
}

.nav-pills > li + li {
  margin-left: 2px;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #428bca;
}

.nav-stacked > li {
  float: none;
}

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified {
  width: 100%;
}

.nav-justified > li {
  float: none;
}

.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }

  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  max-height: 340px;
  overflow-x: visible;
  padding-right: 7px;
  padding-left: 7px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }

  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }

  .navbar-collapse.in {
    overflow-y: visible;
  }

  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
  margin-right: -7px;
  margin-left: -7px;
}

@media (min-width: 768px) {
  .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top, .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width: 768px) {
  .navbar-fixed-top, .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-brand {
  float: left;
  padding: 15px 7px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

@media (min-width: 768px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -7px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 7px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggle:focus {
  outline: none;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -7px;
}

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

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }

  .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }

  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }

  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }

  .navbar-nav > li {
    float: left;
  }

  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-nav.navbar-right:last-child {
    margin-right: -7px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }

  .navbar-right {
    float: right !important;
  }
}
.navbar-form {
  margin-left: -7px;
  margin-right: -7px;
  padding: 10px 7px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .navbar-form .input-group > .form-control {
    width: 100%;
  }

  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .radio, .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    vertical-align: middle;
  }

  .navbar-form .radio input[type=radio], .navbar-form .checkbox input[type=checkbox] {
    float: none;
    margin-left: 0;
  }

  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-form.navbar-right:last-child {
    margin-right: -7px;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 7px;
    margin-right: 7px;
  }

  .navbar-text.navbar-right:last-child {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
  color: #777;
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

.navbar-default .navbar-text {
  color: #777;
}

.navbar-default .navbar-nav > li > a {
  color: #777;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border-color: #e7e7e7;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }

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

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

  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}

.navbar-default .navbar-link:hover {
  color: #333;
}

.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}

.navbar-inverse .navbar-brand {
  color: #999;
}

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-text {
  color: #999;
}

.navbar-inverse .navbar-nav > li > a {
  color: #999;
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}

.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

.navbar-inverse .navbar-toggle {
  border-color: #333;
}

.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
  border-color: #101010;
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #fff;
}

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #999;
  }

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

  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #999;
}

.navbar-inverse .navbar-link:hover {
  color: #fff;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}

.breadcrumb > .active {
  color: #999;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #428bca;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  color: #2a6496;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #428bca;
  border-color: #428bca;
  cursor: default;
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  color: #999;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

.pagination-lg > li > a, .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

.pagination-sm > li > a, .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}

.pager li {
  display: inline;
}

.pager li > a, .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li > a:hover, .pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

.pager .next > a, .pager .next > span {
  float: right;
}

.pager .previous > a, .pager .previous > span {
  float: left;
}

.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
  color: #999;
  background-color: #fff;
  cursor: not-allowed;
}

.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}

.label[href]:hover, .label[href]:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label:empty {
  display: none;
}

.btn .label {
  position: relative;
  top: -1px;
}

.label-default {
  background-color: #999;
}

.label-default[href]:hover, .label-default[href]:focus {
  background-color: #808080;
}

.label-primary {
  background-color: #428bca;
}

.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #3071a9;
}

.label-success {
  background-color: #5cb85c;
}

.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}

.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}

.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #999;
  border-radius: 10px;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

a.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #428bca;
  background-color: #fff;
}

.nav-pills > li > a > .badge {
  margin-left: 3px;
}

.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}

.jumbotron h1, .jumbotron .h1 {
  color: inherit;
}

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

.container .jumbotron {
  border-radius: 6px;
}

.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }

  .jumbotron h1, .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.thumbnail > img, .thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
  border-color: #428bca;
}

.thumbnail .caption {
  padding: 9px;
  color: #333;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p, .alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable {
  padding-right: 35px;
}

.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #428bca;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.progress-striped .progress-bar {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

.progress.active .progress-bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
  background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
  background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
  background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
  background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.media, .media-body {
  overflow: hidden;
  zoom: 1;
}

.media, .media .media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media-object {
  display: block;
}

.media-heading {
  margin: 0 0 5px;
}

.media > .pull-left {
  margin-right: 10px;
}

.media > .pull-right {
  margin-left: 10px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.list-group-item > .badge {
  float: right;
}

.list-group-item > .badge + .badge {
  margin-right: 5px;
}

a.list-group-item {
  color: #555;
}

a.list-group-item .list-group-item-heading {
  color: #333;
}

a.list-group-item:hover, a.list-group-item:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}

a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #428bca;
  border-color: #428bca;
}

a.list-group-item.active .list-group-item-heading, a.list-group-item.active:hover .list-group-item-heading, a.list-group-item.active:focus .list-group-item-heading {
  color: inherit;
}

a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover .list-group-item-text, a.list-group-item.active:focus .list-group-item-text {
  color: #e1edf7;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success {
  color: #3c763d;
}

a.list-group-item-success .list-group-item-heading {
  color: inherit;
}

a.list-group-item-success:hover, a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info {
  color: #31708f;
}

a.list-group-item-info .list-group-item-heading {
  color: inherit;
}

a.list-group-item-info:hover, a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning {
  color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

a.list-group-item-warning:hover, a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger {
  color: #a94442;
}

a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

a.list-group-item-danger:hover, a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-title > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .list-group {
  margin-bottom: 0;
}

.panel > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.panel > .table, .panel > .table-responsive > .table {
  margin-bottom: 0;
}

.panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive {
  border-top: 1px solid #ddd;
}

.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
  border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

.panel-group {
  margin-bottom: 20px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
  overflow: hidden;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse .panel-body {
  border-top: 1px solid #ddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}

.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ddd;
}

.panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #428bca;
}

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #428bca;
  border-color: #428bca;
}

.panel-primary > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #428bca;
}

.panel-primary > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #428bca;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #d6e9c6;
}

.panel-success > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #bce8f1;
}

.panel-info > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}

.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.panel-warning > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #faebcc;
}

.panel-warning > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.panel-danger > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ebccd1;
}

.panel-danger > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ebccd1;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 6px;
}

.well-sm {
  padding: 9px;
  border-radius: 3px;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 20px;
}

.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}

.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}

.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}

.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}

.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

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

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}

.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}

.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img, .carousel-inner > .item > a > img {
  line-height: 1;
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next, .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-control.left {
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
}

.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
}

.carousel-control:hover, .carousel-control:focus {
  outline: none;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}

.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
  left: 50%;
}

.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
  right: 50%;
}

.carousel-control .icon-prev, .carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  font-family: serif;
}

.carousel-control .icon-prev:before {
  content: "‹";
}

.carousel-control .icon-next:before {
  content: "›";
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9 ;
  background-color: rgba(0, 0, 0, 0);
}

.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    font-size: 30px;
  }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}

.clearfix:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs, td.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm, td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md, td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg, td.visible-lg {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print, td.visible-print {
    display: table-cell !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.bg-card-canvas {
  background: #222222;
}

#toolbar, #admin_menu {
  display: none;
}

#navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 5;
}

#navbar-nasa {
  background-color: #000;
  height: 85px;
  border: none;
  background: #000 url("/sites/all/themes/custom/nasatwo/images/starfield-banner.jpg");
  max-width: 1366px;
}
#navbar-nasa .dropdown-menu {
  /* it should be possible to eliminate the 2px padding that causes us to need this */
  min-width: calc(100% + 2px);
}
#navbar-nasa .navbar-header {
  float: none;
  height: 100%;
}
#navbar-nasa .logo {
  float: left;
  padding: 10px;
}
#navbar-nasa .logo img {
  width: 80px;
}
#navbar-nasa a {
  color: #ffffff;
  font-size: 1.47em;
  font-weight: normal;
  position: relative;
  z-index: 1;
}
#navbar-nasa a:hover, #navbar-nasa a:focus, #navbar-nasa a:visited {
  text-decoration: none;
}
#navbar-nasa .navbar-toggle {
  background-color: #15418c;
  background-image: url("/sites/all/themes/custom/nasatwo/images/menu.png");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  display: block;
  position: absolute;
  right: 0;
  z-index: 1;
  height: 100%;
  margin: 0;
  border-radius: 0;
}
#navbar-nasa .navbar-toggle.collapsed {
  background-color: transparent;
}

#nasa-main-menu {
  padding: 0;
  margin: 0;
  float: none;
  /* first level menu items */
}
#nasa-main-menu .divider {
  margin: 0;
}
#nasa-main-menu .divider:before {
  content: none;
  height: 2px;
}
#nasa-main-menu > li {
  color: #fff;
  display: none;
  /* toggle for second level */
  /* second level menu */
}
#nasa-main-menu > li.open > ul {
  position: static;
  float: none;
  padding: 0;
  border: none;
}
#nasa-main-menu > li.open > a {
  background-color: #072F54;
}
#nasa-main-menu > li > a {
  padding: 10px 14px;
  background: #15418c;
  color: #fff;
}
#nasa-main-menu > li > a:hover {
  background-color: #5d7fb9;
}
#nasa-main-menu > li > ul {
  border: none;
}
#nasa-main-menu > li > ul a {
  color: #fff;
  background-color: #5d7fb9;
  font-size: 1.3em;
  padding: 0.5em 1em 0.5em 1.5em;
}
#nasa-main-menu > li > ul a:hover {
  background-color: #072F54;
}

body.show-topics-menu #nasa-primary-navigation.collapse {
  height: 1px;
}
body.show-topics-menu #nasa-primary-navigation.collapse #nasa-main-menu > li:nth-child(1) {
  display: block;
  width: 100%;
}
body.show-topics-menu #nasa-primary-navigation.collapse #nasa-main-menu > li:nth-child(1) > a {
  background: #555555;
}
body.show-topics-menu #nasa-primary-navigation.collapse #nasa-main-menu > li:nth-child(1) > a .glyphicon {
  display: inline-block;
}
body.show-topics-menu #nasa-primary-navigation.collapse #nasa-main-menu > li:nth-child(1) > a:hover {
  background: #888;
}
body.show-topics-menu #nasa-primary-navigation.collapse #nasa-main-menu > li:nth-child(1) ul a {
  background-color: #555555;
}
body.show-topics-menu #nasa-primary-navigation.collapse #nasa-main-menu > li:nth-child(1) ul a:hover {
  background-color: #888 !important;
}
body.show-topics-menu #nasa-primary-navigation.collapse.in #nasa-main-menu > li:nth-child(1) {
  display: block;
  width: 100%;
}
body.show-topics-menu #nasa-primary-navigation.collapse.in #nasa-main-menu > li:nth-child(1) > a {
  background: #15418c;
}
body.show-topics-menu #nasa-primary-navigation.collapse.in #nasa-main-menu > li:nth-child(1) > a .glyphicon {
  display: inline-block;
}
body.show-topics-menu #nasa-primary-navigation.collapse.in #nasa-main-menu > li:nth-child(1) > a:hover {
  background: #5d7fb9;
}
body.show-topics-menu #nasa-primary-navigation.collapse.in #nasa-main-menu > li:nth-child(1) ul a {
  background-color: #5d7fb9;
}
body.show-topics-menu #nasa-primary-navigation.collapse.in #nasa-main-menu > li:nth-child(1) ul a:hover {
  background-color: #072F54 !important;
}
body.show-topics-menu #nasa-primary-navigation.collapse.in #nasa-main-menu > li:nth-child(1).open > a {
  background: #072F54;
}

#nasa-primary-navigation {
  padding-left: 0px;
  padding-right: 0px;
  border: none;
}
#nasa-primary-navigation.collapse {
  display: block;
  position: relative;
}

@media (max-width: 1020px) {
  body.show-topics-menu #nasa-primary-navigation.collapse #nasa-main-menu > li:nth-child(1) {
    display: none;
  }

  .topics-spacer {
    display: none;
  }

  #toolbar, #admin_menu {
    display: none;
  }

  #nasa-primary-navigation.collapse {
    display: block;
    position: relative;
  }
  #nasa-primary-navigation.collapse.in {
    display: block;
    position: relative;
    overflow-y: visible;
    z-index: 110;
    background: #15418c;
    /* setting height here fixes a bug where opening and closing
     * the main nav would add an inline style (height) to the nav
     * which would then overlay the sub-nav. should probably track down
     * why this was happening in the first place. this works for now. */
    height: 1px !important;
  }
  #nasa-primary-navigation.collapse.in #nasa-main-menu li {
    display: block;
    float: none;
  }

  .is-home #nasa-primary-navigation.collapse.in #nasa-main-menu > li:nth-child(1) {
    display: none;
  }
}
@media (max-width: 768px) {
  #navbar-nasa {
    position: relative;
  }
  #navbar-nasa.affix {
    position: fixed;
  }

  div#topics.missions.affix.col-md-12 {
    position: relative;
    top: 0;
  }
}
@media (max-width: 1020px) {
  #nasa-main-menu {
    /* NASA TV is the only menu item between mobile and desktop breaks */
  }
  #nasa-main-menu > li:nth-child(4) {
    position: absolute;
    top: -85px;
    right: 17em;
    display: block;
  }
  #nasa-main-menu > li:nth-child(4):before {
    content: none;
  }
  #nasa-main-menu > li:nth-child(4) a {
    display: table;
    height: 85px;
    background: none;
  }
  #nasa-main-menu > li:nth-child(4) a:hover {
    background: #15418c;
  }
  #nasa-main-menu > li:nth-child(4) a span {
    display: table-cell;
    vertical-align: middle;
  }
}
@media (max-width: 511px) {
  #nasa-main-menu > li:nth-child(4) {
    right: 7.5em;
  }
}
@media (min-width: 1021px) {
  #toolbar, #admin_menu {
    display: block;
  }

  .logged-in #navbar-nasa {
    top: 30px;
  }

  .logged-in #topics.missions.affix {
    top: 145px;
  }

  #navbar-nasa .navbar-header {
    float: left;
  }
  #navbar-nasa .navbar-toggle {
    display: none;
  }

  /* essentially, all this turns the first Topic item's sub-menu items into the home page sub-nav */
  body.show-topics-menu #navbar-nasa {
    height: 124px;
  }
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child {
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    text-align: center;
  }
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child:hover {
    margin: 0;
    border-right: 0;
  }
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child:before {
    content: none;
    display: none;
  }
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > a {
    display: none;
  }
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul {
    position: absolute;
    bottom: 0;
    top: auto;
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    background: none;
    border: none;
    z-index: 1;
    font-size: 0;
  }
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul li {
    display: inline-block;
    position: relative;
  }
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul li:hover {
    margin-right: -1px;
    border-right: 1px solid #888;
    margin-left: -1px;
    border-left: 1px solid #888;
    z-index: 3;
  }
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul li:hover:first-child {
    margin-left: 0;
    border-left: 0;
  }
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul li:hover:nth-of-type(8) {
    margin-right: 0;
    border-right: 0;
  }
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul li a {
    background: #555;
    font-size: 14px;
    padding: 10px 15px;
  }
}
@media (min-width: 1021px) and (max-width: 1121px) {
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul li a {
    padding: 10px;
  }
}
@media (min-width: 1021px) {
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul li a:hover {
    background-color: #888;
  }
}
@media (min-width: 1021px) {
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul li:first-child:before {
    content: none;
    display: none;
  }
}
@media (min-width: 1021px) {
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul li:before {
    content: "";
    position: absolute;
    left: -1px;
    z-index: 1;
    top: 20%;
    display: block;
    width: 2px;
    height: 60%;
    background-color: #888;
  }
}
@media (min-width: 1021px) {
  body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul li:last-child, body.show-topics-menu #navbar-nasa #nasa-main-menu > li:first-child > ul li.divider {
    display: none;
  }
}
@media (min-width: 1021px) {
  body.show-topics-menu #navbar-nasa #nasa-main-menu li:nth-of-type(2):before {
    content: none;
    display: none;
  }
}
@media (min-width: 1021px) {
  body.show-topics-menu #navbar-nasa .logo img {
    width: 110px;
    margin: 11px;
  }
}
@media (min-width: 1021px) {
  #nasa-main-menu {
    float: right;
    margin-right: 1em;
  }
  #nasa-main-menu > li {
    display: block;
  }
  #nasa-main-menu > li.open {
    margin-right: -2px;
    border-right: 2px solid #15418c;
    z-index: 2;
  }
  #nasa-main-menu > li.open a {
    background: #15418c;
  }
  #nasa-main-menu > li.open > ul {
    position: absolute;
    display: block;
    padding: 0;
  }
  #nasa-main-menu > li.open > ul a {
    padding-left: 0.5em;
  }
  #nasa-main-menu > li:hover {
    margin-right: -2px;
    border-right: 2px solid #15418c;
    z-index: 2;
  }
  #nasa-main-menu > li:hover a {
    background: #15418c;
  }
  #nasa-main-menu > li:hover > ul {
    position: absolute;
    display: block;
    padding: 0;
  }
  #nasa-main-menu > li:hover > ul a {
    padding-left: 0.5em;
  }
  #nasa-main-menu > li:nth-of-type(1):before {
    display: none;
    content: none;
  }
  #nasa-main-menu > li:before {
    content: "";
    display: block;
    position: absolute;
    top: 20%;
    background: #555555;
    width: 2px;
    height: 60%;
  }
  #nasa-main-menu > li:before:first-child {
    display: none;
    content: none;
  }
  #nasa-main-menu > li > a {
    background: transparent;
    padding: 30px 14px;
    font-size: 0.95em;
  }
  #nasa-main-menu > li > a:focus {
    outline: -webkit-focus-ring-color auto 1px;
  }
  #nasa-main-menu > li > a:hover {
    background: #15418c;
  }
  #nasa-main-menu > li .glyphicon {
    display: none;
  }
}
@media (min-width: 1140px) and (max-width: 1270px) {
  #nasa-main-menu > li > a {
    font-size: 1.25em;
  }
}
@media (min-width: 1271px) {
  #nasa-main-menu > li > a {
    font-size: 1.47em;
  }
}
@media (min-width: 1366px) {
  #page-header,
#main {
    width: 1366px;
    margin: 0px auto !important;
  }

  .topics-container {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  #navbar-nasa .container {
    margin-left: auto;
    margin-right: auto;
    width: 1366px !important;
  }

  #navbar-nasa {
    margin-left: auto;
    margin-right: auto;
  }

  #nasa-main-menu {
    float: right;
    margin-right: 1em;
  }
}
@media (min-width: 1366px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #navbar-nasa {
    width: 1366px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
#utilities {
  color: #fff;
  position: absolute;
  top: 22px;
  right: 46px;
  display: inline-block;
  z-index: 2;
}
#utilities .nav-social {
  width: 25px;
}
#utilities > * {
  display: inline-block;
}
#utilities .utility-cont {
  /* don't show the addthis compact share widget on hover */
}
#utilities .utility-cont #follow {
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  background: none;
  background-image: url("/sites/all/themes/custom/nasatwo/images/share.svg");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center left;
  width: 33px;
  height: 16px;
  display: block;
  padding: 0;
  margin: 0;
  height: 37px;
}
#utilities .utility-cont .atm {
  display: none !important;
}
#utilities .utility-cont .addthis_responsive_sharing, #utilities .utility-cont .addthis_toolbox {
  float: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #navbar-nasa .logo {
    padding: 5px 10px;
  }

  #navbar-nasa .logo img {
    width: 80px;
    height: 80px;
    margin: 0px;
  }

  body.show-topics-menu #navbar-nasa .logo img {
    width: 110px;
    height: 110px;
    margin: 5px;
  }

  #utilities .utility-cont #follow {
    background-position: left;
    width: 25px;
  }

  #footer-info .logo img {
    height: 55px;
  }
  #footer-info #status {
    margin: auto !important;
  }
}
.node-type-ubernode #utilities .nav-social,
.node-type-ubernode #follow {
  display: none;
  width: 0;
}

@media (min-width: 1020px) {
  #utilities {
    position: relative;
    float: right;
    margin: 1.7em 2em 0 0;
    right: auto;
    top: auto;
  }
}
@media (max-width: 430px) {
  #utilities .utility-cont #search input[type=text] {
    width: 0px;
    position: relative;
    background-color: transparent;
    z-index: 111;
  }
  #utilities .utility-cont #search input[type=text]:focus {
    width: 150px;
    background-color: #555;
  }
}
input.search-btn {
  left: 105px;
  top: 8px;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 36px 10px 10px;
  position: absolute;
  height: 26px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.nasa-calendar,
.calendar-card-container {
  color: #1b1b1b;
  margin: 0 auto;
}
.nasa-calendar .fc-toolbar,
.calendar-card-container .fc-toolbar {
  background-color: #555555;
  margin-bottom: 0;
  height: 32px;
}
.nasa-calendar .fc-toolbar .nasa-calendar-title,
.calendar-card-container .fc-toolbar .nasa-calendar-title {
  background-color: #0e1029;
  content: "Calendar";
  color: #FFFFFF;
  font-weight: bold;
  padding: 7px 12px;
  height: 100%;
  position: absolute;
}
.nasa-calendar .fc-toolbar h2,
.calendar-card-container .fc-toolbar h2 {
  color: #FFFFFF;
  font-size: 100%;
  font-weight: bold;
  margin-top: 7px;
}
.nasa-calendar .fc-toolbar button.ui-button,
.calendar-card-container .fc-toolbar button.ui-button {
  background-color: transparent;
  border: 0;
  color: #FFFFFF;
}
.nasa-calendar .fc-toolbar button.ui-button span.ui-icon,
.calendar-card-container .fc-toolbar button.ui-button span.ui-icon {
  margin: 0 0.1em;
  display: inline-block;
  font-size: 2em;
  line-height: 0.5em;
  height: 0.5em;
  font-weight: normal;
}
.nasa-calendar .fc-toolbar button.fc-prev-button span.ui-icon::after,
.calendar-card-container .fc-toolbar button.fc-prev-button span.ui-icon::after {
  content: "‹";
}
.nasa-calendar .fc-toolbar button.fc-next-button span.ui-icon::after,
.calendar-card-container .fc-toolbar button.fc-next-button span.ui-icon::after {
  content: "›";
}
.nasa-calendar .fc-view,
.calendar-card-container .fc-view {
  display: inline-block;
}
.nasa-calendar .fc-view table thead td.ui-widget-header,
.calendar-card-container .fc-view table thead td.ui-widget-header {
  background-color: #3970a0 !important;
  color: #FFFFFF;
  border-width: 0;
  height: 32px;
}
.nasa-calendar .fc-view table thead td.ui-widget-header .fc-day-header,
.calendar-card-container .fc-view table thead td.ui-widget-header .fc-day-header {
  padding: 5px 0;
  border-width: 0 1px 0 1px;
}
.nasa-calendar .fc-view table thead td.ui-widget-header .fc-sun,
.calendar-card-container .fc-view table thead td.ui-widget-header .fc-sun {
  border-width: 0 1px 0 0;
}
.nasa-calendar .fc-view table thead td.ui-widget-header .fc-sat,
.calendar-card-container .fc-view table thead td.ui-widget-header .fc-sat {
  border-width: 0 0 0 1px;
}
.nasa-calendar .fc-view table .fc-bg tbody,
.calendar-card-container .fc-view table .fc-bg tbody {
  background-color: #FFFFFF;
}
.nasa-calendar .fc-view table tbody .fc-row,
.calendar-card-container .fc-view table tbody .fc-row {
  height: 80px !important;
}
.nasa-calendar .fc-view table tbody td.ui-widget-content,
.calendar-card-container .fc-view table tbody td.ui-widget-content {
  border: 0;
}
.nasa-calendar .fc-view table tbody .fc-other-month,
.calendar-card-container .fc-view table tbody .fc-other-month {
  background-color: #eeeeee;
  color: #1b1b1b;
  opacity: 1;
}
.nasa-calendar .fc-view table tbody .fc-content-skeleton,
.calendar-card-container .fc-view table tbody .fc-content-skeleton {
  position: absolute;
  top: 0;
}
.nasa-calendar .fc-view table tbody .fc-day-grid-event,
.calendar-card-container .fc-view table tbody .fc-day-grid-event {
  background-color: transparent;
  color: #3970a0;
  border: 0;
  top: -17px;
}
.nasa-calendar .fc-view table tbody .fc-day-grid-event .fc-content,
.calendar-card-container .fc-view table tbody .fc-day-grid-event .fc-content {
  white-space: normal;
  line-height: 1.2em;
  position: relative;
}
.nasa-calendar .fc-view table tbody .fc-day-grid-event .fc-content .fc-time,
.calendar-card-container .fc-view table tbody .fc-day-grid-event .fc-content .fc-time {
  display: none;
}
.nasa-calendar .fc-view table tbody .fc-day-grid-event .fc-content .fc-title,
.calendar-card-container .fc-view table tbody .fc-day-grid-event .fc-content .fc-title {
  padding-right: 12px;
  display: block;
}
.nasa-calendar .fc-view table tbody a[href]:hover.fc-day-grid-event .fc-title,
.calendar-card-container .fc-view table tbody a[href]:hover.fc-day-grid-event .fc-title {
  text-decoration: underline;
}
.nasa-calendar td.fc-day,
.calendar-card-container td.fc-day {
  border: 1px solid #e3e3e3 !important;
}
.nasa-calendar td.fc-day-number,
.calendar-card-container td.fc-day-number {
  font-weight: bold;
}

#cards .fc-view .fc-title {
  display: none;
}

.bg-calendar-card-panel .headline {
  z-index: 1;
}
.bg-calendar-card-panel .calendar-card-container {
  width: 100%;
}
.bg-calendar-card-panel .calendar-card-container .fc-toolbar {
  overflow: hidden;
}
.bg-calendar-card-panel .calendar-card-container .fc-day-grid-container {
  height: auto !important;
}
.bg-calendar-card-panel .calendar-card-container .fc-view table tbody .fc-row {
  min-height: 0;
}

.popover {
  color: white;
  background-color: #000000;
  max-width: 320px;
}
.popover.top .arrow:after {
  border-top-color: #000000;
}
.popover.bottom .arrow:after {
  border-bottom-color: #000000;
}
.popover.left .arrow:after {
  border-left-color: #000000;
}
.popover.right .arrow:after {
  border-right-color: #000000;
}
.popover .popover-content .calendar-popover-content img {
  width: 64px;
  height: 64px;
  float: left;
  margin: 5px;
}

.nasa-calendar {
  max-width: 1000px;
}

.nasa-calendar .fc-view table tbody .fc-row:hover {
  z-index: 2;
}

.nasa-calendar .fc-event-container > .popover .popover-content {
  padding: 0 14px 9px 0px;
}

.h-lg-1.col-md-4 .bg-calendar-card-panel .fc-row.ui-widget-content,
.h-lg-1.col-md-3 .bg-calendar-card-panel .fc-row.ui-widget-content {
  height: 32px !important;
}

.h-lg-2.col-md-8 .bg-calendar-card-panel .fc-row.ui-widget-content,
.h-lg-2.col-md-6 .bg-calendar-card-panel .fc-row.ui-widget-content {
  height: 88px !important;
}

/*Nasa Calendar Card Overides*/
.calendar-card-container td.fc-day {
  border: none !important;
}

.calendar-card-container .fc-view table tbody .fc-other-month {
  background: none;
  color: #BBB;
}

.calendar-card-container .fc-view table thead td.ui-widget-header {
  display: none;
}

.calendar-card-container .fc-toolbar {
  background: white;
  padding: 6px 0px 10px;
  height: auto;
  white-space: nowrap;
  width: 50%;
  min-width: 120px;
  max-width: 200px;
  float: right;
  margin-right: 5px;
}

.calendar-card-container .fc-toolbar button {
  padding: 0;
}

.calendar-card-container .fc-toolbar h2,
.calendar-card-container .fc-toolbar button.ui-button,
.calendarname {
  color: #15418c;
}

.calendarname {
  position: absolute;
  padding: 10px 15px;
  font-weight: bold;
}

.link {
  background: white;
  padding: 11px 15px 15px;
  text-align: right;
}

.calendar.card .link a {
  background: #15418c;
  color: white;
  font-size: large;
  font-weight: bold;
  padding: 6px 10px;
}

.calendar.card .fc-ltr .fc-basic-view .fc-day-number {
  text-align: center;
}

.calendar-card-container .fc-view table tbody .fc-day-grid-event {
  background: #5d7fb9;
  /* We can eliminate the need for 'opacity:0.7;' by changing
     the background color to rgba(39, 106, 181, 0.65) for $ltblue
     or rgba(0, 46, 145, 0.7) for $blue */
  position: absolute;
  width: 13%;
  height: 30px;
  top: -2px;
  opacity: 0.7;
}

.calendar.card .fc-toolbar button {
  padding: 0;
}

.calendar.card .calendar-card-container .fc-view table tbody .fc-day-grid-event .fc-content .fc-time,
.calendar.card .calendar-card-container .fc-view table tbody .fc-day-grid-event .fc-content .fc-title {
  display: none;
}

.calendar.card .calendar-card-container .fc-view table tbody .fc-day-grid-event:hover .fc-content .fc-title {
  /* display:block; */
  position: absolute;
  width: 300px;
  background: black;
  color: white;
  padding: 5px 10px;
}

.calendar-card-container .fc-view table tbody .fc-day-grid-event .fc-content,
.calendar.card [class*=bg],
.calendar.card {
  overflow: visible;
}

.calendar.card {
  cursor: default;
}

.bg-calendar-card-panel {
  background: white;
  padding: 5px;
}

td.fc-day.ui-widget-content.fc-sat.fc-today.ui-state-highlight {
  background: none !important;
}

.col-md-3 .fc-ltr .fc-basic-view .fc-day-number {
  text-align: center;
}

.nasa-calendar .fc-view table tbody .fc-day-grid-event .fc-content .fc-title,
.calendar-card-container .fc-view table tbody .fc-day-grid-event .fc-content .fc-title {
  padding-right: 12px;
  display: block;
  padding-bottom: 5px;
}

.fc-popover .fc-header {
  padding: 15px 4px;
}

.fc-more-popover {
  background: #fff;
}

.fc-basic-view tbody .fc-row {
  overflow: hidden;
}

@media all and (max-width: 1050px) {
  .calendarname {
    position: relative;
    padding: 5px 10px 0px;
  }

  .calendar-card-container .fc-toolbar {
    padding: 0;
  }
}
.calendarcard {
  display: block;
  height: 100%;
}

.mrplayer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0px;
}

.mrplayer .mpc {
  position: absolute;
}

.tv-player-pane {
  width: 100%;
  text-align: center;
  /**
   * Channels
   *
   * This visual component describes the layout and style of the 3 - 4 buttons
   * typically found below the tv-player on the NASA TV page. See (url here) for
   * visual example.
   *
   */
  /* Safari 8: setting flexbox */
  /* Targeting IE 10+ and setting flexbox for larger screens */
  /* Targeting IE 10+ and setting flexbox for smaller screens */
  /* Targeting IE 10+ and setting flexbox for screens smaller than 768 on channe links */
  /* Targeting IE 10+ and setting flexbox for screens larger than 768 on channel links */
}
.tv-player-pane .player-wrapper {
  max-width: 757px;
  margin: 0 auto;
}
.tv-player-pane h3 {
  text-align: left;
  width: 100%;
  display: inline-block;
  color: white;
  font-size: 20px;
  max-width: 759px;
}
.tv-player-pane .jwplayer > * {
  display: inline-block;
  width: 100% !important;
  max-width: 757px;
  margin: 0 auto;
}
.tv-player-pane #ISSstream {
  width: 100% !important;
  height: 68vw !important;
  max-height: 423px;
}
.tv-player-pane iframe {
  border: none;
}
.tv-player-pane .vjs-control-bar {
  top: inherit;
}
.tv-player-pane video {
  display: none;
}
.tv-player-pane .loaded video {
  display: inherit;
}
.tv-player-pane .video-js {
  max-height: 427px;
  min-width: 280px;
  display: none;
}
.tv-player-pane .video-js:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.tv-player-pane .loaded .video-js {
  display: inherit;
}
.tv-player-pane .empty-player {
  min-width: 300px;
  width: 100%;
  display: inline-block;
  position: relative;
}
.tv-player-pane .empty-player:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.tv-player-pane .darkloadingspin {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.tv-player-pane .nasa-mobilerider-player-dimensions {
  width: inherit;
  height: inherit;
}
.tv-player-pane _::-webkit-full-page-media, .tv-player-pane _:future, .tv-player-pane :root .channels {
  display: -webkit-flex;
  -webkit-flex-flow: column;
}
@media screen and (min-width: 512px) {
  .tv-player-pane _::-webkit-full-page-media, .tv-player-pane _:future, .tv-player-pane :root .channels {
    -webkit-flex-direction: row;
  }
}
.tv-player-pane _::-webkit-full-page-media.active .audience, .tv-player-pane _::-webkit-full-page-media.focus .audience, .tv-player-pane _:future.active .audience, .tv-player-pane _:future.focus .audience, .tv-player-pane :root .channels__link.active .audience, .tv-player-pane :root .channels__link.focus .audience {
  width: 100%;
}
@media (min-width: 512px) {
  .tv-player-pane _:-ms-input-placeholder .channels, .tv-player-pane :root .channels {
    display: -ms-flexbox;
  }
  .tv-player-pane _:-ms-input-placeholder .channels a, .tv-player-pane :root .channels a {
    -ms-flex: 0 1 auto;
  }
  .tv-player-pane _:-ms-input-placeholder ::-ms-backdrop, .tv-player-pane _:-ms-input-placeholder .channels, .tv-player-pane :root ::-ms-backdrop, .tv-player-pane :root .channels {
    display: flex;
    flex-flow: row nowrap;
  }
}
@media (max-width: 768px) {
  .tv-player-pane _:-ms-input-placeholder .channels, .tv-player-pane :root .channels {
    display: -ms-flexbox;
    -ms-flex-direction: column;
  }
}
.tv-player-pane .channels {
  display: flex;
  width: 100%;
  max-width: 757px;
  margin: 0 auto;
  flex-flow: column;
  justify-content: space-around;
}
@media all and (min-width: 512px) {
  .tv-player-pane .channels {
    flex-flow: row wrap;
  }
}
@media (max-width: 768px) {
  .tv-player-pane _:-ms-input-placeholder .channels__link, .tv-player-pane :root .channels__link {
    display: -ms-flexbox;
    margin: 5px 0;
  }
}
@media (min-width: 768px) {
  .tv-player-pane _:-ms-input-placeholder .channels__link, .tv-player-pane :root .channels__link {
    display: -ms-flexbox;
  }
}
.tv-player-pane .channels__link {
  margin: 5px 0;
  padding: 10px 20px;
  text-align: left;
  background-color: #555555;
  color: #fff;
  width: 100%;
  /*
    Only used for 4 channels, yields 2x2 pattern
  */
}
@media all and (min-width: 512px) {
  .tv-player-pane .channels__link {
    flex: 1;
    margin: 5px 1%;
  }
}
@media all and (min-width: 768px) {
  .tv-player-pane .channels__link {
    flex: 1;
  }
}
.tv-player-pane .channels__link:first-child {
  margin-left: 0;
}
.tv-player-pane .channels__link:last-child {
  margin-right: 0;
}
.tv-player-pane .channels__link:hover, .tv-player-pane .channels__link.active, .tv-player-pane .channels__link:focus {
  color: #fff;
  background: #488cc8;
  text-decoration: none;
  cursor: pointer;
  /* IE: this is needed for placing the glyph on the right side */
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tv-player-pane .channels__link:hover .audience, .tv-player-pane .channels__link.active .audience, .tv-player-pane .channels__link:focus .audience {
    width: 100%;
  }
}
.tv-player-pane .channels__link:hover .audience .glyphicon-check, .tv-player-pane .channels__link.active .audience .glyphicon-check, .tv-player-pane .channels__link:focus .audience .glyphicon-check {
  display: block;
  margin-top: 3px;
}
@media all and (min-width: 512px) {
  .tv-player-pane .channels__link:first-child:nth-last-child(4), .tv-player-pane .channels__link:first-child:nth-last-child(4) ~ a {
    flex: 48%;
    -ms-flex: 48%;
  }
  .tv-player-pane .channels__link:first-child:nth-last-child(4):nth-of-type(2n+0), .tv-player-pane .channels__link:first-child:nth-last-child(4) ~ a:nth-of-type(2n+0) {
    margin-right: 0;
  }
  .tv-player-pane .channels__link:first-child:nth-last-child(4):nth-of-type(3n+0), .tv-player-pane .channels__link:first-child:nth-last-child(4) ~ a:nth-of-type(3n+0) {
    margin-left: 0;
  }
}
@media all and (min-width: 768px) {
  .tv-player-pane .channels__link:first-child:nth-last-child(4), .tv-player-pane .channels__link:first-child:nth-last-child(4) ~ a {
    display: -ms-flexbox;
    flex: 1;
  }
  .tv-player-pane .channels__link:first-child:nth-last-child(4):nth-of-type(2n+0), .tv-player-pane .channels__link:first-child:nth-last-child(4) ~ a:nth-of-type(2n+0) {
    margin-right: 1%;
  }
  .tv-player-pane .channels__link:first-child:nth-last-child(4):nth-of-type(3n+0), .tv-player-pane .channels__link:first-child:nth-last-child(4) ~ a:nth-of-type(3n+0) {
    margin-left: 1%;
  }
  .tv-player-pane .channels__link:first-child:nth-last-child(4):last-child, .tv-player-pane .channels__link:first-child:nth-last-child(4) ~ a:last-child {
    margin-right: 0;
  }
}

.launch-schedule, .launch-schedule h3 {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
}

.launch-schedule {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
}
.launch-schedule .launch-label {
  font-weight: bold;
}
.launch-schedule .launch-header h3 {
  color: #fff;
  font-weight: bold;
  padding: 0 30px;
  font-size: 2.5em;
  display: inline-block;
  width: auto;
}
.launch-schedule .title a {
  color: #8ec9ff;
}
.launch-schedule .title a:hover {
  color: #a8c5df;
}
.launch-schedule .launch-event {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 30px;
}
.launch-schedule .launch-event--body {
  color: #fff;
  background-color: #252931;
  padding: 2rem;
  margin: 30px 30px 0 30px;
}
.launch-schedule .launch-image {
  width: 207px;
  height: 128px;
  overflow: hidden;
  float: left;
}
.launch-schedule .launch-image img {
  width: 100%;
}
.launch-schedule .launch-info {
  background-color: #252931;
  color: #ffffff;
  min-height: 130px;
  padding: 10px;
  margin-left: 240px;
}
.launch-schedule .launch-empty .launch-info {
  margin-left: 0;
}

.launch-schedule__links--top {
  display: flex;
  justify-content: space-evenly;
}
.launch-schedule__links--top a {
  font-size: 1.18em;
  font-weight: normal;
}

@media (min-width: 512px) {
  .launch-schedule__links--top {
    flex-wrap: wrap;
  }
  .launch-schedule__links--top a {
    flex: 1 1 100%;
    font-size: 1.48em;
    text-align: right;
  }
}
@media (max-width: 400px) {
  .launch-schedule .launch-header h3 {
    padding: 0 20px;
  }
  .launch-schedule .launch-header a {
    margin-top: 0;
  }
  .launch-schedule .launch-event {
    margin: 30px 20px;
  }
  .launch-schedule .launch-event--body {
    margin: 30px 20px;
  }
}
@media (max-width: 700px) {
  .launch-schedule .launch-image {
    position: relative;
    text-align: center;
    width: 100%;
  }
  .launch-schedule .launch-info {
    margin: 0;
  }
}
.infopane {
  width: 759px;
  background-color: #ffffff;
  margin: 10px auto;
  font-weight: bold;
}
.infopane .title {
  background-color: #488cc8;
  color: #ffffff;
  padding: 10px 25px;
  display: inline-block;
}
.infopane .body .link-block {
  display: inline-block;
  float: left;
  margin: 3.5% 0;
  padding: 0 3.5%;
}
.infopane .body .link-block .link-title {
  margin-bottom: 12px;
}
.infopane .body .link-block a {
  display: block;
}
.infopane .body .link-block.left {
  width: 31%;
  border: 1px solid #eeeeee;
  border-width: 0 2px 0 0;
}
.infopane .body .link-block.left a {
  margin: 5px 0;
}
.infopane .body .link-block.right {
  width: 55%;
}
.infopane .body .link-block.right a {
  margin: 10px 0;
}

.alltags-view {
  padding: 10px 20px;
  font-weight: bold;
  background: #fff;
  /* trick to get linked letters to appear within view */
}
.alltags-view h3:target:before {
  content: "";
  display: block;
  height: 240px;
  /* fixed header height*/
  margin: -240px 0 0;
  /* negative fixed header height */
}
.alltags-view #tags-header {
  background: #fff;
  padding: 30px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 85px;
  display: flex;
  flex-direction: column;
}
.alltags-view #tags-header h1.title,
.alltags-view #tags-header #tag-anchors {
  float: left;
}
.alltags-view #tags-header h1 {
  margin-top: 0;
}
.alltags-view #tags-header #tag-anchors {
  margin-top: 10px;
}
.alltags-view #tags-header #tag-anchors a {
  padding: 0px 10px;
  display: inline-block;
  font-size: 20px;
  cursor: pointer;
}
.alltags-view #tag-list {
  padding-bottom: 30px;
}
.alltags-view #tag-list a {
  display: block;
}
.alltags-view #tag-list .tag-section {
  margin-left: 25px;
}

@media (max-width: 768px) {
  .alltags-view h1.title {
    font-size: 24px;
  }
  .alltags-view #tags-header {
    padding-top: 10px;
  }
  .alltags-view #tag-anchors a {
    font-size: 14px !important;
  }
}
@media (min-width: 980px) {
  .alltags-view {
    padding: 0px 20px 40px;
    font-weight: bold;
  }
  .alltags-view #tags-header {
    flex-direction: row;
  }
  .alltags-view #tag-anchors {
    margin-top: 30px;
  }
  .alltags-view #tag-list {
    padding-bottom: 30px;
  }
  .alltags-view #tag-list .tag-section {
    margin-left: 25px;
  }
}
@media (min-width: 1021px) {
  .alltags-view {
    padding: 0px 40px 40px 50px;
  }

  #tag-list,
#tag-anchors {
    margin-left: 50px;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000;
}

body {
  background: black;
  font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}

.element-invisible {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
}

body.toolbar, body.toolbar-drawer {
  padding-top: 0;
}

#toolbar {
  position: unset;
  padding: 0;
  margin: 0;
}

@media (max-width: 1020px) {
  #admin-menu,
#toolbar,
#nasa-edit-tabs {
    display: none !important;
  }
}
[class*=bg] {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  overflow: visible;
  max-width: 1366px;
}

[class*=col-] {
  padding-top: 0px;
  padding-bottom: 15px;
  overflow: hidden;
  background: none;
}

[class*=col-].cont {
  padding-top: 0px;
  padding-bottom: 0px;
}

.bg1 {
  background-image: url("/sites/all/themes/custom/nasatwo/images/featured.jpg");
}

.bg-white {
  background-color: #fff;
}

/*base height=360*/
.h-lg-2 {
  height: 630px;
}

.h-lg-1 {
  height: 315px;
}

.h-lg-05 {
  height: 152.5px;
  padding: 0px 0px 5px 0px;
}

.h-lg-75 {
  height: 175px;
  padding: 0px 0px 5px 0px;
}

.h-lg-15 {
  height: 540px;
}

#header {
  width: 100%;
}

#menu {
  z-index: 3;
  width: 100%;
  height: auto;
  background-color: #000;
  background-image: url("/sites/all/themes/custom/nasatwo/images/logo-background-335x195_big.png");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  background-position-x: 0em;
  text-align: right;
}

#menu hr {
  margin-top: 0;
  margin-bottom: 0;
  border-top: 1px solid #15418c;
}

#menu + #main-content {
  margin-left: 0px;
}

#menu + #main-content #nasa-edit-tabs {
  display: block;
}

@-moz-document url-prefix() {
  .select-moz {
    background-image: transparent;
  }
}
#trending {
  text-align: center;
  background: #15418c;
  color: white;
  margin-top: 15px;
  font-size: 17px;
  font-weight: 600;
  padding-top: 8px;
  margin-left: 0px;
  margin-right: 0px;
  height: 40px;
  cursor: pointer;
}
#trending:focus, #trending:hover {
  background: #5d7fb9;
}

.full-bleed {
  height: 375px;
  position: relative;
}

.topic.full-bleed {
  height: 275px;
  background-position-y: 36%;
}

#content > .container-fluid {
  padding: 0;
}

.toggle {
  display: block;
}

#page-header .row {
  margin: 0;
}

.card {
  overflow: visible;
  display: block;
}

.card:hover .headline {
  background: white;
}

.card .bg-card-canvas .primary-tag {
  opacity: 0.85;
}

.card:hover .headline .tags,
.card .bg-card-canvas .primary-tag:hover {
  opacity: 1;
}

.card .overlay-grey {
  background: #E5E5E5;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
}

.card:hover .overlay-grey {
  opacity: 0;
}

.card.twittere {
  overflow: hidden;
  padding-bottom: 0px;
}

.twittere.h-lg-1 {
  height: 300px;
  margin-bottom: 15px;
}

.twittere.h-lg-2 {
  height: 615px;
  margin-bottom: 15px;
}

.twittere iframe {
  max-height: 100% !important;
  max-width: 100% !important;
  height: inherit !important;
  width: 100% !important;
}

.headline {
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  max-height: 78px;
  position: absolute;
  bottom: 0;
  box-sizing: border-box;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 19px;
  line-height: 23px;
  color: #000;
}

.headline.tag-hovered {
  background: rgba(255, 255, 255, 0.8) !important;
}

.headline h3 {
  font-weight: 500;
  font-size: 1.3em;
  margin: 0;
}

.full-bleed .headline {
  width: auto;
  min-height: 40px;
  font-size: 2.4em;
  line-height: 38px;
  border-right: none;
  bottom: 33px;
  left: 27px;
  padding: 0.3em;
  background: rgba(255, 255, 255, 0.7);
}
.full-bleed .headline h3 {
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0.1em;
}

.topic.headline {
  background: none;
  color: #fff;
  opacity: 0.95;
  font-weight: 600;
}

.full-bleed .topic.headline {
  font-size: 38px;
}

.full-bleed .topic.headline p {
  font-size: 22px;
}

.mobile {
  display: none;
}

div.tags {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #5d7fb9;
  color: white;
  font-size: 0.95;
  padding: 5px 14px;
  line-height: normal;
}

.headline .tags {
  opacity: 0.85;
}

.events {
  background: #39719e;
  padding: 15px;
  padding-top: 0.2em;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  height: 100%;
}

.events .header {
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 5px;
  left: 1.4em;
}

.events ul > li > a {
  color: #5CD5FC;
  font-size: 16px;
}

.events > ul > li {
  float: right;
  list-style: none;
}

.events .glyphicon {
  color: #fff;
  font-size: 12px;
}

.events hr {
  margin-top: 2em;
  margin-bottom: 10px;
  border-top: 1px solid #5CD5FC;
}

.events ul {
  padding-left: 0px;
}

.events .title {
  margin: auto;
  font-size: 13px;
  font-weight: 500;
  color: white;
  margin: 8px 0;
}

.events .fa-calendar {
  padding-right: 5px;
}

blockquote {
  margin: 0em 0px 0em 20px;
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  border-style: solid;
  border-color: #ccc;
  border-width: 0;
  padding-left: 20px;
  padding-right: 8px;
  border-left-width: 5px;
}

@media (max-width: 992px) {
  .nav-tabs {
    display: block;
  }

  .tab-content > .tab-pane {
    display: none;
  }

  .tab-content > .active {
    display: block;
  }
}
@media (min-width: 992px) {
  #menu + #main-content {
    margin-left: 325px;
  }
}
@media (max-width: 768px) {
  .logged-in #page-header {
    padding-top: 0px;
  }

  .topic.full-bleed {
    display: none;
  }

  .iso-card {
    position: relative !important;
    top: auto !important;
  }

  .bg17 {
    background-size: 250%;
    background-position-x: -38em;
    background-position-y: 0em;
  }

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

  .launch-list .story {
    padding: 1em 0em 1em 0.5em !important;
  }

  .col-xs-1, .col-sm-1, .col-md-1,
.col-lg-1, .col-xs-2, .col-sm-2,
.col-md-2, .col-lg-2, .col-xs-3,
.col-sm-3, .col-md-3, .col-lg-3,
.col-xs-4, .col-sm-4, .col-md-4,
.col-lg-4, .col-xs-5, .col-sm-5,
.col-md-5, .col-lg-5, .col-xs-6,
.col-sm-6, .col-md-6, .col-lg-6,
.col-xs-7, .col-sm-7, .col-md-7,
.col-lg-7, .col-xs-8, .col-sm-8,
.col-md-8, .col-lg-8, .col-xs-9,
.col-sm-9, .col-md-9, .col-lg-9,
.col-xs-10, .col-sm-10, .col-md-10,
.col-lg-10, .col-xs-11, .col-sm-11,
.col-md-11, .col-lg-11, .col-xs-12,
.col-sm-12, .col-md-12, .col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
  }

  #menu {
    position: fixed;
  }
}
@media (max-width: 670px) {
  .topic.full-bleed {
    margin-bottom: 0px;
  }

  .launch-list .story {
    padding: 2em 0em 1em 1em;
  }

  .bg1 {
    background: url("/sites/all/themes/custom/nasatwo/images/featured.jpg") no-repeat local center;
    background-size: 168%;
    background-position: -15em 0em;
  }

  .full-bleed {
    height: 245px;
  }

  .full-bleed .headline {
    min-height: 40px;
    max-width: none;
    font-size: 23px !important;
    line-height: 26px !important;
    border-right: none;
    bottom: 0px;
    left: 0px;
    background: white;
    width: 100% !important;
    position: absolute;
  }

  .topic.headline {
    background: none;
    color: #fff;
    background: none;
  }
}
@media all and (max-width: 768px) {
  .mobile {
    display: block;
  }

  .toggle {
    height: auto;
  }

  .toggle ul {
    display: none;
  }

  .toggle ul li {
    display: list-item;
    padding: 6px;
    border-bottom: 1px solid #5E5E5E;
    list-style: none;
  }

  .toggle ul.open {
    display: block;
  }

  .example-header .container {
    width: 100%;
  }

  #search input {
    background: none;
  }

  #search input.active {
    background: grey;
  }

  #search .glyphicon {
    right: 0;
  }

  #search .glyphicon {
    font-size: 30px;
  }

  #follow i.fa {
    font-size: 35px;
  }

  .nav-social {
    width: 30px;
  }
}
@media (min-width: 1366px) {
  #page-header,
#main {
    width: 1366px;
    margin: 0px auto !important;
  }

  .topics-container {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
@media (min-width: 671px) {
  blockquote {
    margin: 1em 0px 0em 40px;
    max-width: 40%;
    float: right;
  }
}
.launch-list {
  position: relative;
}

.launch-list .blue-bold {
  padding-top: 0.5em;
}

.launch-list .thumb {
  margin: 0.8em 0.5em 1.8em 0.5em;
}

.launch-list .tags, .rightHalfStory .tags {
  position: absolute;
  top: 0;
  left: 0;
  bottom: inherit;
}

.launch-list .date {
  color: black;
}

.launch-list .description {
  color: #555555;
}

.list-body {
  padding-top: 3em;
}

.leftHalfStory {
  background-image: url("/sites/all/themes/custom/nasatwo/images/Capa-95.png");
  background-position: -15em;
  width: 53%;
  float: left;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
}

.leftHalfStory2 {
  background-image: url("/sites/all/themes/custom/nasatwo/images/john_glenn.jpg");
  background-position-x: -7em;
  background-position-y: -14em;
  background-size: 139%;
  width: 53%;
  float: left;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
}

.three-by-1 .rightHalfStory {
  width: 32%;
  position: absolute;
  right: 0.5em;
  height: 300px;
}

.three-by-1 .leftHalfStory {
  background-image: url("/sites/all/themes/custom/nasatwo/images/3by1.jpg");
  background-position: 0em;
  width: 69%;
}

.three-by-1 ul {
  padding-left: 1.5em;
}

.three-by-1 li {
  display: block;
}

.three-by-1 li a {
  color: #000;
  font-size: 16px;
  font-weight: bold;
}

.three-by-1 li a:before {
  content: ">";
  padding: 0.2em;
}

.rightHalfStory {
  width: 48%;
  position: absolute;
  right: 0.5em;
  height: 300px;
}

.rightHalfStory2 {
  width: 48%;
  position: absolute;
  right: 0.5em;
  height: 100%;
  height: 300px;
}

.rightHalfStory .headline {
  position: static;
  padding: 2em 1em 0.5em 1em;
}

.rightHalfStory2 .headline {
  padding: 0em 0em 4em 1em;
  font-size: 2.5em;
  background: none;
}

.rightHalfStory .content,
.rightHalfStory2 .content {
  padding: 0em 0.8em 0em 1.5em;
}

.arrow-left {
  position: absolute;
  top: 40%;
  right: 0.6em;
  width: 0px;
  height: 0px;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-right: 30px solid #fff;
}

.rightHalfStory2 .tags, .text-promo-card .tags {
  top: 0% !important;
  bottom: 89%;
}

.text-promo-card .headline {
  position: static;
  padding: 2.5em 0.75em 0em 0.75em;
}

.text-promo-card .content {
  padding: 0.75em 0.75em 0.75em 0.75em;
}

.text-promo-card .fadeout {
  width: 95%;
  margin-top: -15em;
}

.text-promo-card .article-toggle {
  position: absolute;
  bottom: 2em;
  right: 1em;
}

.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #000;
  border-radius: 0em;
}

.jumbotron .btn {
  border-radius: 0;
}

.jumbotron h1,
.jumbotron p {
  color: #FAFAFA;
}

.events a,
.events a:hover,
.events a:focus {
  color: #5CD5FC;
}

#cards {
  display: grid;
  grid-auto-rows: minmax(315px, auto);
  grid-template-columns: 100vw;
  margin: 0;
  max-width: 1379px;
  width: 100vw;
}
@media (min-width: 768px) {
  #cards {
    grid-template-columns: repeat(2, 50%);
  }
}
@media (min-width: 992px) {
  #cards {
    grid-template-columns: repeat(4, 25%);
  }
}
@media (min-width: 1379px) {
  #cards {
    margin: 0 -6.5px;
  }
}

@media (min-width: 992px) {
  #cards.cards--hasSideRail {
    max-width: 1054.4px;
    width: calc(100vw - 294.6px);
  }
}

#cards .card.is-loading,
#cards .card.pre-load {
  background: #222222;
  background-clip: content-box;
}

.is-loading > .bg-card-canvas,
#cards .card.is-loading,
.is-loading .article-banner {
  background-image: url("/sites/all/themes/custom/nasatwo/images/ring.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 45px;
}

.is-loading img {
  position: absolute;
  height: 0px;
  top: 0;
  left: 0;
  opacity: 0;
}

.navbar-header li {
  display: block;
}

/* Make sure to apply these to non article/gallery pages
 * Will need to add classes to containers for corresponding changes
 * */
.wrapper {
  background: #000;
}

#main-content {
  margin-left: 0;
}

.content-column.missions {
  padding-top: 15px;
}

.input-group-btn .btn-primary {
  height: 34px;
  background: #5d7fb9;
  border: 1px solid #5d7fb9;
}

.no-image.full-bleed {
  height: 0px;
}

.no-image.item {
  background-color: #15418c;
}

.cards.special {
  overflow: hidden;
  padding-bottom: 10px;
}

.card .embedded {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.card .embedded.calendarcard {
  overflow: visible;
}

#content .container-fluid {
  padding: 0;
  position: relative;
  width: 100%;
}

#content {
  position: relative;
}

input {
  border-radius: 0 !important;
  box-shadow: none;
}

.form-control {
  display: block;
  border-radius: 0;
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.nssc-modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 300px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}
.nssc-modal--content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
.nssc-modal--close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.nssc-modal--close:hover, .nssc-modal--close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#grant-status-form .form-group--radio-group,
#sbir-search-form .form-group--radio-group,
#grants-pi-transfer .form-group--radio-group,
#form-preview-input .form-group--radio-group,
#sbir-extension-request .form-group--radio-group,
#no-cost-extension-request .form-group--radio-group,
#web-form__inquiry .form-group--radio-group,
#ar_collection_request .form-group--radio-group,
#relocation-form__domestic .form-group--radio-group,
#relocation-form__foreign .form-group--radio-group,
#relocation-form__amend .form-group--radio-group,
#relocation-form__select-travel .form-group--radio-group,
#extended_tdy_questionnaire .form-group--radio-group {
  display: flex;
}
#grant-status-form .form-group--radio-group--full,
#sbir-search-form .form-group--radio-group--full,
#grants-pi-transfer .form-group--radio-group--full,
#form-preview-input .form-group--radio-group--full,
#sbir-extension-request .form-group--radio-group--full,
#no-cost-extension-request .form-group--radio-group--full,
#web-form__inquiry .form-group--radio-group--full,
#ar_collection_request .form-group--radio-group--full,
#relocation-form__domestic .form-group--radio-group--full,
#relocation-form__foreign .form-group--radio-group--full,
#relocation-form__amend .form-group--radio-group--full,
#relocation-form__select-travel .form-group--radio-group--full,
#extended_tdy_questionnaire .form-group--radio-group--full {
  max-width: 90%;
}
#grant-status-form .form-group--radio-group--info,
#sbir-search-form .form-group--radio-group--info,
#grants-pi-transfer .form-group--radio-group--info,
#form-preview-input .form-group--radio-group--info,
#sbir-extension-request .form-group--radio-group--info,
#no-cost-extension-request .form-group--radio-group--info,
#web-form__inquiry .form-group--radio-group--info,
#ar_collection_request .form-group--radio-group--info,
#relocation-form__domestic .form-group--radio-group--info,
#relocation-form__foreign .form-group--radio-group--info,
#relocation-form__amend .form-group--radio-group--info,
#relocation-form__select-travel .form-group--radio-group--info,
#extended_tdy_questionnaire .form-group--radio-group--info {
  margin-left: 20px;
  margin-bottom: 8px;
}
#grant-status-form .form-group--radio-group label,
#sbir-search-form .form-group--radio-group label,
#grants-pi-transfer .form-group--radio-group label,
#form-preview-input .form-group--radio-group label,
#sbir-extension-request .form-group--radio-group label,
#no-cost-extension-request .form-group--radio-group label,
#web-form__inquiry .form-group--radio-group label,
#ar_collection_request .form-group--radio-group label,
#relocation-form__domestic .form-group--radio-group label,
#relocation-form__foreign .form-group--radio-group label,
#relocation-form__amend .form-group--radio-group label,
#relocation-form__select-travel .form-group--radio-group label,
#extended_tdy_questionnaire .form-group--radio-group label {
  margin-left: 7px;
}
#grant-status-form .form-group,
#sbir-search-form .form-group,
#grants-pi-transfer .form-group,
#form-preview-input .form-group,
#sbir-extension-request .form-group,
#no-cost-extension-request .form-group,
#web-form__inquiry .form-group,
#ar_collection_request .form-group,
#relocation-form__domestic .form-group,
#relocation-form__foreign .form-group,
#relocation-form__amend .form-group,
#relocation-form__select-travel .form-group,
#extended_tdy_questionnaire .form-group {
  margin: 0 auto 15px;
}
#grant-status-form .form-group--radio-title,
#sbir-search-form .form-group--radio-title,
#grants-pi-transfer .form-group--radio-title,
#form-preview-input .form-group--radio-title,
#sbir-extension-request .form-group--radio-title,
#no-cost-extension-request .form-group--radio-title,
#web-form__inquiry .form-group--radio-title,
#ar_collection_request .form-group--radio-title,
#relocation-form__domestic .form-group--radio-title,
#relocation-form__foreign .form-group--radio-title,
#relocation-form__amend .form-group--radio-title,
#relocation-form__select-travel .form-group--radio-title,
#extended_tdy_questionnaire .form-group--radio-title {
  display: flex;
  max-width: 50%;
  margin: 0 auto;
}
#grant-status-form .form-group--radio-title label,
#sbir-search-form .form-group--radio-title label,
#grants-pi-transfer .form-group--radio-title label,
#form-preview-input .form-group--radio-title label,
#sbir-extension-request .form-group--radio-title label,
#no-cost-extension-request .form-group--radio-title label,
#web-form__inquiry .form-group--radio-title label,
#ar_collection_request .form-group--radio-title label,
#relocation-form__domestic .form-group--radio-title label,
#relocation-form__foreign .form-group--radio-title label,
#relocation-form__amend .form-group--radio-title label,
#relocation-form__select-travel .form-group--radio-title label,
#extended_tdy_questionnaire .form-group--radio-title label {
  margin-left: 7px;
}
#grant-status-form .form-group button,
#sbir-search-form .form-group button,
#grants-pi-transfer .form-group button,
#form-preview-input .form-group button,
#sbir-extension-request .form-group button,
#no-cost-extension-request .form-group button,
#web-form__inquiry .form-group button,
#ar_collection_request .form-group button,
#relocation-form__domestic .form-group button,
#relocation-form__foreign .form-group button,
#relocation-form__amend .form-group button,
#relocation-form__select-travel .form-group button,
#extended_tdy_questionnaire .form-group button {
  margin-right: 10px;
}
@media (min-width: 1024px) {
  #grant-status-form .form-group,
#sbir-search-form .form-group,
#grants-pi-transfer .form-group,
#form-preview-input .form-group,
#sbir-extension-request .form-group,
#no-cost-extension-request .form-group,
#web-form__inquiry .form-group,
#ar_collection_request .form-group,
#relocation-form__domestic .form-group,
#relocation-form__foreign .form-group,
#relocation-form__amend .form-group,
#relocation-form__select-travel .form-group,
#extended_tdy_questionnaire .form-group {
    max-width: 50%;
  }
  #grant-status-form #date-time,
#grant-status-form #date-time--time,
#sbir-search-form #date-time,
#sbir-search-form #date-time--time,
#grants-pi-transfer #date-time,
#grants-pi-transfer #date-time--time,
#form-preview-input #date-time,
#form-preview-input #date-time--time,
#sbir-extension-request #date-time,
#sbir-extension-request #date-time--time,
#no-cost-extension-request #date-time,
#no-cost-extension-request #date-time--time,
#web-form__inquiry #date-time,
#web-form__inquiry #date-time--time,
#ar_collection_request #date-time,
#ar_collection_request #date-time--time,
#relocation-form__domestic #date-time,
#relocation-form__domestic #date-time--time,
#relocation-form__foreign #date-time,
#relocation-form__foreign #date-time--time,
#relocation-form__amend #date-time,
#relocation-form__amend #date-time--time,
#relocation-form__select-travel #date-time,
#relocation-form__select-travel #date-time--time,
#extended_tdy_questionnaire #date-time,
#extended_tdy_questionnaire #date-time--time {
    display: inline-block;
    width: 49%;
  }
  #grant-status-form #date-time,
#sbir-search-form #date-time,
#grants-pi-transfer #date-time,
#form-preview-input #date-time,
#sbir-extension-request #date-time,
#no-cost-extension-request #date-time,
#web-form__inquiry #date-time,
#ar_collection_request #date-time,
#relocation-form__domestic #date-time,
#relocation-form__foreign #date-time,
#relocation-form__amend #date-time,
#relocation-form__select-travel #date-time,
#extended_tdy_questionnaire #date-time {
    float: left;
  }
  #grant-status-form #date-time--time,
#sbir-search-form #date-time--time,
#grants-pi-transfer #date-time--time,
#form-preview-input #date-time--time,
#sbir-extension-request #date-time--time,
#no-cost-extension-request #date-time--time,
#web-form__inquiry #date-time--time,
#ar_collection_request #date-time--time,
#relocation-form__domestic #date-time--time,
#relocation-form__foreign #date-time--time,
#relocation-form__amend #date-time--time,
#relocation-form__select-travel #date-time--time,
#extended_tdy_questionnaire #date-time--time {
    float: right;
  }
}

#grants-pi-transfer .nssc-required-text--red {
  color: red;
}

#change-of-station-form .change-of-station-form__subform {
  margin-left: 14px;
}
#change-of-station-form .house-hunting-radio,
#change-of-station-form .temporary-quarters-radio,
#change-of-station-form .gbl-radio,
#change-of-station-form .real-estate-radio {
  margin: 0 4px 0 16px;
}

#pay-request-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
#pay-request-form .nssc-form-full-width {
  flex-basis: 100%;
}
#pay-request-form button {
  margin-right: 10px;
}
#pay-request-form--left, #pay-request-form--right {
  width: 48%;
}

.nssc-required-text {
  font-style: italic;
}

.form-group--title {
  margin: 0 auto;
  max-width: 50%;
}

.form-control:focus {
  border-color: #15418c;
  box-shadow: none;
}

textarea.form-control,
select.form-control {
  border-radius: 0;
}

textarea.form-control:focus {
  border-color: #15418c;
}

.input-group-addon {
  border-radius: 0;
  background-color: #15418c;
  border-color: #008bc6;
  color: #fff;
}

.gallery-label.inactive {
  cursor: default;
}
.gallery-label.inactive:hover {
  text-decoration: none;
}

.topics-toggle.not-active:hover {
  text-decoration: underline !important;
}

.ckeditor-thickline {
  border-top: 2px solid #eee;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-top: -1px;
}

.card.alert-banner {
  font-weight: bold;
  font-size: 1.2em;
  height: auto;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
}
.card.alert-banner.white-banner {
  background: #fff;
  color: black;
}
.card.alert-banner.red-banner {
  background: #e6270b;
  color: #fff;
}
.card.alert-banner:hover, .card.alert-banner:visited {
  text-decoration: underline;
}
.card.alert-banner .counter-block {
  background: inherit;
  color: inherit;
  display: block;
}
@media (min-width: 768px) {
  .card.alert-banner .counter-block {
    display: inline-block;
  }
}

.alert-pane {
  background-color: #fc3d21;
  font-size: 1.2em;
  padding: 10px;
  font-weight: bold;
  margin: 0 auto;
  max-width: 759px;
}
.alert-pane a {
  color: white;
}
.alert-pane a.noLink {
  text-decoration: none;
}

.ember-view.ubernode-full {
  position: relative;
  background: #fff;
}

.article img {
  max-width: 100%;
}

.article-banner-img {
  width: 100%;
}

.btn-primary {
  border-radius: 0;
}

.margin3em {
  margin-top: 3em;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.pr-promo-release-type-id {
  font-weight: bold;
}
.pr-promo-release-type-id .release-id {
  margin-left: 7px;
}

.article-thumb {
  width: 100px;
  height: 75px;
}

.article-banner-container.has-tag {
  min-height: 50px;
}
.article-banner-container + .article-body {
  padding-top: 0;
}
.article-banner-container.has-image {
  width: 100%;
  position: relative;
}

.article-banner-container .primary-tag {
  text-align: center;
  color: #fff;
  display: block;
  z-index: 1;
  padding: 0.5em;
  overflow: hidden;
  background: #5d7fb9;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 0;
  font-size: 1em;
}

.article-banner {
  border-top: 8px solid #5d7fb9;
}

.press-release-info {
  width: 100%;
  margin-bottom: 20px;
}

.article-body .title-wrap {
  width: 100%;
}

.inf-scroll-inner-container .article-body {
  padding-top: 0;
}

.article-body .title-wrap,
.article-body .addthis-wrap {
  padding: 0;
}

.article-body .addthis-wrap {
  margin-bottom: 1em;
  width: 100%;
}

.push-sidebar {
  top: 196px !important;
}

.ac {
  height: 75px;
}
.ac .timestamp {
  color: #555555;
  font-style: italic;
  font-weight: 600;
  float: left;
}
.ac.topic span {
  display: table-cell;
  vertical-align: middle;
  height: 75px;
}

.ac, .ac2 {
  float: left;
  text-align: left;
  overflow: hidden;
}
.ac span, .ac .ac2 span, .ac2 span, .ac2 .ac2 span {
  padding-left: 5px;
  display: table-cell;
  vertical-align: middle;
  font-weight: normal;
  color: #5d7fb9;
  height: 46px;
  overflow: hidden;
}
.ac span .lt-line-clamp__raw-line, .ac .ac2 span .lt-line-clamp__raw-line, .ac2 span .lt-line-clamp__raw-line, .ac2 .ac2 span .lt-line-clamp__raw-line {
  padding: 0 0 5px 0;
}

.ac span:hover,
.ac .ac2 span:hover,
.ac2 span:hover,
.ac2 .ac2 span:hover,
li.menu-tab a:hover {
  text-decoration: underline;
  cursor: pointer;
}

li.menu-tab.active a:hover {
  text-decoration: none;
}

.ac2 .content {
  line-height: 1.2em;
}

a.blue-bold.active .ac {
  background: #f5f5f5;
}

.blue-bold .story-thumb {
  float: left;
  height: 75px;
  width: 100px;
  background-size: cover;
  background-position: center center;
}

.btn-inverse,
.btn-inverse:hover,
.btn-inverse:focus {
  background: #383838;
  color: #ffffff;
  border-radius: 0;
}

.dropdown-menu-form {
  width: 100%;
  margin-top: -1px;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.article-divider {
  width: 100%;
  position: relative;
  margin: 30px 0px 60px 0px;
}
.article-divider:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.at-resp-share-element .label {
  display: none;
}

.social .at-resp-share-element a {
  padding: 5px;
  margin-right: 5px;
}

.blue-bold .timestamp {
  padding-left: 5px;
  font-size: 0.8em;
  line-height: 0.5em;
}

.story-link img {
  width: 100px;
  height: 75px;
}

.story-link li a span {
  float: left;
}

.content-column {
  transition: height 0s;
}

.merge-left {
  margin-left: 0px !important;
}

.content-column.merge-left {
  margin-left: 0px !important;
}

.content-column.push-right .tap-tab,
.content-column.merge-left .tap-tab,
#cards.push-right .tap-tab {
  display: none;
}

a.blue-bold:visited {
  color: #428bca;
}

.image .gallery-link {
  margin: -10px 0 10px;
}

.node-type-ubernode .sub-nav {
  display: none;
}

.ubernode.content-column {
  padding-top: 65px;
  background-color: #313131;
}

.article-banner img {
  width: 100%;
}

.logged-in .ubernode.content-column {
  padding-top: 0px;
}

.side-image {
  float: right;
  max-width: 320px;
  margin: 0.5em 0em 2em 2em;
}

.vert-story-container {
  padding-top: 65px;
}

.vert-banner {
  margin-bottom: 10px;
}
.vert-banner img {
  display: block;
  max-width: 100%;
  width: auto;
}

.tags span.comma:last-of-type {
  display: none;
}

#content .ubernode-full-wrap {
  background: #fff;
}

ul.mediacast {
  padding-left: 0;
  margin-right: 40px;
}
ul.mediacast li {
  list-style: none;
}
ul.mediacast li img {
  width: 100px;
  margin-bottom: 7px;
}

.feature-credits {
  font-style: italic;
  font-weight: bold;
}

.feature-image-container {
  margin: 0 -2em 2em;
}
.feature-image-container img {
  height: auto;
  max-width: 100%;
  width: 100%;
}

.sidebar hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #5CD4FD;
}

.blue-bold {
  font-size: 15px;
  font-weight: 600;
  color: #428bca;
  line-height: 1.3em;
}

.content-column {
  overflow-y: auto;
  overflow-x: hidden;
}

.article-header {
  display: table;
  max-height: 480px;
  width: 100%;
}

.article-body,
.after-body {
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 1em;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.title-bar {
  margin: 2em 0;
}
.title-bar h1 {
  font-weight: 600;
  font-size: 2.2em;
  margin: 0;
}

.addthis-wrap .addthis_default_style .addthis_button_compact {
  padding-right: 0;
}

.addthis-wrap .addthis_default_style .addthis_button_compact span {
  margin-right: 0;
  padding-right: 0;
}

.article-body .addthis_responsive_sharing,
.article-body .addthis_toolbox {
  float: right;
  white-space: nowrap;
  min-width: 180px;
}

.article-body p {
  margin: 0 0 15px;
  color: #000;
  -webkit-font-smoothing: inherit;
  -mos-osx-font-smoothing: inherit;
  font-size: 1em;
  line-height: 1.4em;
}
.article-body .social ul {
  padding: 0;
}
.article-body .social ul li {
  display: inline-block;
}
.article-body .social.social {
  position: absolute;
  right: 7.5px;
  top: 1.3em;
}
.article-body .social.show-mobile {
  padding-left: 0;
  padding-top: 1em;
}
.article-body .side-image,
.article-body .text {
  color: #000;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
.article-body .side-image h1, .article-body .side-image h2, .article-body .side-image h3, .article-body .side-image h4, .article-body .side-image h5, .article-body .side-image h6,
.article-body .text h1,
.article-body .text h2,
.article-body .text h3,
.article-body .text h4,
.article-body .text h5,
.article-body .text h6 {
  font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
.article-body .side-image .editor-info,
.article-body .text .editor-info {
  font-style: italic;
}
.article-body .side-image .editor-info:before,
.article-body .text .editor-info:before {
  content: "";
  border-top: 1px solid #eeeeee;
  margin-bottom: 10px;
  margin-top: 20px;
  max-width: 270px;
  display: block;
}

.article-toggle {
  margin: 15px 0;
  background-color: #052E57;
  border-color: #052E57;
}
.article-toggle span.less, .article-toggle.less span.more {
  display: none;
}
.article-toggle.less span.less {
  display: block;
}
.article-toggle:hover {
  background-color: #0A447E;
  border-color: #0A447E;
}

.collapsible {
  max-height: 12em;
  overflow-y: hidden;
}
.collapsible .fadeout {
  opacity: 1;
  width: 100%;
  margin: 0 -2em;
  height: 12em;
  background: -webkit-linear-gradient(bottom, white, rgba(255, 255, 255, 0));
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
  position: absolute;
  bottom: 0;
}
.collapsible.opened {
  max-height: none;
}
.collapsible.opened .fadeout {
  opacity: 0;
  height: 0;
}

.menu-tab a {
  cursor: pointer;
}

#scroll-container .article {
  background: #fff;
}

@media (min-width: 768px) {
  .article-body .title-wrap {
    width: 75%;
  }

  .article-body .addthis-wrap {
    margin-left: 1em;
    width: auto;
  }

  .article-banner-container .primary-tag {
    width: 13em;
    font-size: 1.4em;
  }
}
@media (max-width: 767px) {
  .article.image-feature {
    padding-top: 10px !important;
  }

  #main-content {
    margin-top: 0px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .merge-left .article-body {
    padding-right: 2em;
  }

  .title-bar {
    margin: 1em 0;
  }

  .menu-tab {
    width: 50%;
    float: left !important;
  }

  .menu-tab .active {
    color: #000;
  }

  .tab-tab-collapsed {
    left: 0;
  }

  .content-column {
    margin-left: 0px !important;
  }

  .content-column.merge-left {
    margin-left: 767px !important;
  }
}
li.menu-tab.no-related {
  width: 100% !important;
}

li.menu-tab.no-related a {
  padding: 0.75em 0px 0px 10px !important;
  text-align: left !important;
  font-weight: 700 !important;
}

.is-loading .story-thumb {
  background-image: url("/sites/all/themes/custom/nasatwo/images/ellipses.svg") !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 45px;
}

.rtecenter {
  text-align: center;
}

@media (max-width: 893px) and (min-width: 768px) {
  .merge-left .article-body {
    padding-right: 2em;
  }
}
@media (max-width: 900px) {
  .side-image {
    float: none;
    max-width: none;
    margin-left: 0;
    max-width: 320px;
    margin: 0 auto 2em;
  }
}
@media (max-width: 1200px) and (min-width: 894px) {
  .article-body {
    padding-bottom: 2em;
  }

  .merge-left .article-body {
    padding-right: 2em;
    padding-bottom: 2em;
  }
}
@media (min-width: 1201px) {
  .logged-in .sidebar.articles {
    top: 115px;
  }
}
.article .side-bar {
  background-color: #fff;
  border-right: 10px solid #303540;
}
@media (min-width: 768px) {
  .article .side-bar {
    height: calc(100vh - 85px);
    top: 85px;
  }
}
.article .side-bar .tab-content {
  padding: 10px;
}
.article .side-bar .tab-content .tab-pane h3 {
  text-align: center;
}
.article .side-bar .tab-content ul {
  padding: 0;
}
.article .side-bar .tab-content ul li {
  width: 100%;
  list-style: none;
  overflow-x: hidden;
}
.article .side-bar .tab-content ul li:first-of-type a.blue-bold {
  margin: 0;
}
.article .side-bar .tab-content ul li a {
  text-decoration: none;
  display: block;
  padding: 5px 0 5px 0px;
  outline: none;
  margin: 5px 0px 0px 0px;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  color: #428bca;
}

.nav-tabs > li > a,
.nav-tabs.nav-justified > li > a {
  text-align: left;
  color: #fff;
  font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: 600;
  background: #303540;
  border: no ne;
  font-size: 18px;
  text-align: center;
  padding: 15px 15px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus,
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border-left: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-right: none;
  background: #fff;
  color: #000;
}

.nav-tabs > li > a {
  border-radius: 0 !important;
}

.nav-tabs.nav-justified > li {
  display: table-cell;
  width: 50%;
  float: left;
}

.card .embed-card {
  border: none;
  height: 100%;
  position: relative;
  width: 100%;
}
.card .embed-card .headline {
  position: relative;
  background-color: #000;
  color: #fff;
  height: 33px;
  overflow: hidden;
}
.card .embed-card iframe {
  border: none;
  width: 100%;
}

.embed-card .embedded.embed-card__bg {
  background-repeat: no-repeat;
}
.embed-card__ytButton {
  background-color: transparent;
}

.embedded iframe {
  border: none;
  width: 100%;
}

.h-lg-2 .embed-card iframe {
  height: 582px;
}

.h-lg-1 .embed-card iframe {
  height: 267px;
}

.twitter-timeline,
.embedded.twittere {
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  overflow-y: auto;
}

/**
  White headline at the bottom of the embedded card
 */
.embedded-headline {
  background: rgba(255, 255, 255, 0.9);
  bottom: 0;
  box-sizing: border-box;
  color: #000;
  font-size: 19px;
  font-weight: 600;
  line-height: 23px;
  max-height: 78px;
  padding: 5px 10px;
  position: absolute;
  width: 100%;
}

/**
  Hides the headline to show the ustream controls
 */
.embedded:hover > .embedded-headline {
  display: none;
}

/*

CSS Social Media Buttons by MediaLoot
URL: http://medialoot.com/item/css-social-media-buttons

Designer: Tony Thomas

*/
@font-face {
  font-family: "SocialGlyphs";
  src: url("../fonts/socialglyphs-webfont.eot");
  src: url("../fonts/socialglyphs-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/socialglyphs-webfont.woff") format("woff"), url("../fonts/socialglyphs-webfont.ttf") format("truetype"), url("../fonts/socialglyphs-webfont.svg#SocialGlyphsRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Button Styles */
.facebook {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 35px;
  line-height: 1.15;
  text-indent: 10px;
  font-weight: regular;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 44px;
  height: 44px;
  border-radius: 0px;
  background-color: #4f78b4;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #4974b0, #6e90c0);
  background-image: linear-gradient(to top, #4974b0, #6e90c0);
}

.facebook:after {
  content: "A";
}

.facebook-grey {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 35px;
  line-height: 1.15;
  text-indent: 10px;
  font-weight: regular;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 44px;
  height: 44px;
  border-radius: 0px;
  background-color: #c7c6c6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.facebook-grey:after {
  content: "A";
}

.twitter {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 33px;
  line-height: 1.3;
  text-indent: 2px;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #4e9edc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #4e9edc, #5daae6);
  background-image: linear-gradient(to top, #4e9edc, #5daae6);
}

.twitter:after {
  content: "B";
}

.twitter-grey {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 33px;
  line-height: 1.3;
  text-indent: 2px;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #c7c6c6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.twitter-grey:after {
  content: "B";
}

.google {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  text-indent: 2px;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #da4935;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #da4935, #e15946);
  background-image: linear-gradient(to top, #da4935, #e15946);
}

.google:after {
  content: "C";
}

.google-grey {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  text-indent: 2px;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #c7c6c6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.google-grey:after {
  content: "C";
}

.myspace {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 32px;
  line-height: 1.4;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #474747;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #424242, #4e4e4e);
  background-image: linear-gradient(to top, #424242, #4e4e4e);
}

.myspace:after {
  content: "D";
}

.instagram {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 35px;
  line-height: 1.15;
  text-indent: 2px;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #49709b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #49709b, #6387af);
  background-image: linear-gradient(to top, #49709b, #6387af);
}

.instagram:after {
  content: "E";
}

.linkedin {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #005a87;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #005a87, #066696);
  background-image: linear-gradient(to top, #005a87, #066696);
}

.linkedin:after {
  content: "F";
}

.vimeo {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 32px;
  text-indent: 0px;
  line-height: 1.3;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #61a0ad;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #61a0ad, #68aebd);
  background-image: linear-gradient(to top, #61a0ad, #68aebd);
}

.vimeo:after {
  content: "G";
}

.youtube {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 32px;
  line-height: 1.3;
  text-indent: 2px;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #c9322b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #c9322b, #dc3f38);
  background-image: linear-gradient(to top, #c9322b, #dc3f38);
}

.youtube:after {
  content: "H";
}

.dribbble {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 35px;
  line-height: 1.2;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #eb4d8a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #eb4d8a, #f84e90);
  background-image: linear-gradient(to top, #eb4d8a, #f84e90);
}

.dribbble:after {
  content: "I";
}

.forrst {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 32px;
  line-height: 1.4;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #267434;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #267434, #328a42);
  background-image: linear-gradient(to top, #267434, #328a42);
}

.forrst:after {
  content: "J";
}

.stumbleupon {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 35px;
  line-height: 1.1;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #ea4b24;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #ea4b24, #f7623d);
  background-image: linear-gradient(to top, #ea4b24, #f7623d);
}

.stumbleupon:after {
  content: "K";
}

.pinterest {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 36px;
  line-height: 1.2;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #b8242a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #b8242a, #c5383e);
  background-image: linear-gradient(to top, #b8242a, #c5383e);
}

.pinterest:after {
  content: "L";
}

.blogger {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 35px;
  line-height: 1.2;
  text-indent: 5px;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #fc9847;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #fc9847, #ffa55c);
  background-image: linear-gradient(to top, #fc9847, #ffa55c);
}

.blogger:after {
  content: "M";
}

.yahoo {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 33px;
  line-height: 1.1;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #5f0d8e;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #72179d, #9227b6);
  background-image: linear-gradient(to top, #72179d, #9227b6);
}

.yahoo:after {
  content: "N";
}

.evernote {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 38px;
  line-height: 1.1;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #7ac143;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #7ac143, #8fc565);
  background-image: linear-gradient(to top, #7ac143, #8fc565);
}

.evernote:after {
  content: "O";
}

.wordpress {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 38px;
  line-height: 1.1;
  text-indent: 2px;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #2485b3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #2485b3, #4597be);
  background-image: linear-gradient(to top, #2485b3, #4597be);
}

.wordpress:after {
  content: "P";
}

.foursquare {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 34px;
  line-height: 1.4;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #0bbadf;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #0bbadf, #4cc1da);
  background-image: linear-gradient(to top, #0bbadf, #4cc1da);
}

.foursquare:after {
  content: "Q";
}

.lastfm {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 32px;
  line-height: 1.1;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #de1600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #de1600, #de402e);
  background-image: linear-gradient(to top, #de1600, #de402e);
}

.lastfm:after {
  content: "R";
}

.behance {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 36px;
  line-height: 0.9;
  text-indent: 2px;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #1e6fed;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #1e6fed, #2f7df6);
  background-image: linear-gradient(to top, #1e6fed, #2f7df6);
}

.behance:after {
  content: "S";
}

.tumblr {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 32px;
  line-height: 1.3;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #466484;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #466484, #4f759e);
  background-image: linear-gradient(to top, #466484, #4f759e);
}

.tumblr:after {
  content: "T";
}

.feed {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #ef922f;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #ef922f, #f8a64f);
  background-image: linear-gradient(to top, #ef922f, #f8a64f);
}

.feed:after {
  content: "U";
}

.feed-grey {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #c7c6c6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feed-grey:after {
  content: "U";
}

.email {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 35px;
  line-height: 1;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #1d90dd;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #1d90dd, #2da2f0);
  background-image: linear-gradient(to top, #1d90dd, #2da2f0);
}

.email:after {
  content: "W";
}

.sharethis {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 33px;
  line-height: 1.3;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #008850;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #008850, #119e64);
  background-image: linear-gradient(to top, #008850, #119e64);
}

.sharethis:after {
  content: "X";
}

.moresocial {
  /*General*/
  display: block;
  text-decoration: none;
  /*Text*/
  font-family: "SocialGlyphs";
  text-align: center;
  font-size: 33px;
  line-height: 1.3;
  color: white !important;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true)";
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#40ffffff,Positive=true);
  /*Background*/
  width: 40px;
  height: 44px;
  border-radius: 0px;
  background-color: #008850;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(bottom, #008850, #119e64);
  background-image: linear-gradient(to top, #008850, #119e64);
}

.moresocial:after {
  content: "+";
}

.is-gallery {
  background-color: #313131;
}

.player {
  display: flex;
  align-items: center;
  width: 100%;
  height: calc(100% - 160px);
}

@media screen and (min-color-index: 0) and (-webkit-min-device-pixel-ratio: 0) {
  .player {
    display: block;
    top: calc((100% - 520px)/2);
    position: absolute;
  }
}
.player .center {
  margin: 0px auto;
  width: 100%;
}

.EmberYoutube iframe {
  display: block;
  width: 100%;
  margin: 0em auto 0px;
}

.thumb {
  display: inline-block;
  background-size: cover;
  border: 1px solid transparent;
  margin: 2px 4px;
  width: 60px;
  height: 40px;
  transition: border 0.2s ease-in;
}

.back-btn {
  display: block;
  padding: 7px;
  background-color: #555555;
}

.back-btn span {
  color: #fff;
  display: inline-block;
}

.video-thumb-container {
  float: left;
  position: relative;
  height: 160px;
}

.video-thumb-container .thumb-overlay {
  position: absolute;
  width: 100%;
  background-color: black;
  opacity: 0.8;
  height: 3em;
  overflow-y: hidden;
  line-height: 1.2em;
  padding: 0px 5px;
}

.video-thumb-container .title {
  color: #fff;
  font-weight: 700;
  margin: 0px;
}

.flex-direction-nav a {
  margin: -20px -7px 0;
  transition: none;
  -webkit-transition: none;
}

.flexslider .flex-direction-nav a {
  display: block;
}

.flexslider .slides > li {
  cursor: pointer;
  margin: 0px 5px;
}

.flex-direction-nav .flex-next {
  right: 0 !important;
  margin-right: 10px;
  opacity: 1 !important;
}

.flex-direction-nav .flex-prev {
  left: 0 !important;
  opacity: 1 !important;
  margin-left: 10px;
}

.flex-control-paging {
  display: none;
}

.flex-control-thumb img {
  width: 80px;
}

.thumb-gallery .slides {
  display: none;
}

.video-thumbnails .slides {
  display: block;
  background: #1b1b1b;
  padding: 5px 0px;
}

#full-view .flex-direction-nav {
  height: 0px;
}

#full-view.videos {
  background-image: url("/sites/all/themes/custom/nasatwo/images/starfield.jpg");
}

.thumb-gallery .flex-direction-nav {
  height: 0px;
}

.thumbnail-container {
  position: fixed;
  height: 160px;
  width: 100%;
  max-width: 1366px;
  background: #1b1b1b;
  bottom: 0;
  overflow-x: hidden;
}

.video-thumbnails .flex-viewport {
  position: static !important;
}

.video-thumbnails .flex-control-nav {
  bottom: auto !important;
}

.flexslider {
  border: none !important;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -o-box-shadow: none !important;
  box-shadow: none !important;
}

.flexslider.thumb-gallery {
  margin: 0 auto;
  margin: 0 !important;
  width: 90%;
}

.flexslider.videos {
  overflow: hidden;
}

.flex-control-thumbs {
  margin-top: 0px !important;
  background: #1b1b1b !important;
}
.flex-control-thumbs li {
  width: 8% !important;
  float: none !important;
  margin: 0;
  padding: 14px 6px 10px 6px;
}

.gallery-close {
  background: url(/sites/all/themes/custom/nasatwo/images/white-close.png) no-repeat;
  width: 11px;
  height: 16px;
  cursor: pointer;
  z-index: 12;
  background-position: -7px -2px;
}

.image-gallery.gallery-close {
  position: absolute;
  background: url(/sites/all/themes/custom/nasatwo/images/white-close.png) no-repeat;
  width: 26px;
  height: 26px;
  top: 75px;
  right: 15px;
}

.preview .close {
  /* a lot of these styles are trying to undo '.close'. scope issue? */
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-shadow: none;
  opacity: 1;
  position: absolute;
  right: 7.5px;
  z-index: 1;
}

.preview .images .close {
  top: 7.5px;
  z-index: 20;
}

.logged-in .images .gallery-close {
  top: 10px;
}

#gallery-list {
  padding: 40px 0px 20px 0px;
  margin-bottom: 0px;
  background-color: #313131;
}

#full-view .flex-direction-nav a:before {
  content: url(/sites/all/themes/custom/nasatwo/images/arrow-right.svg) !important;
}

#full-view .flex-direction-nav a.flex-next:before {
  background: url(/sites/all/themes/custom/nasatwo/images/arrow-right.svg) !important;
  background-size: 50px 50px !important;
}

#full-view .flex-direction-nav a.flex-prev:before {
  background: url(/sites/all/themes/custom/nasatwo/images/arrow-left.svg) !important;
  background-size: 50px 50px !important;
}

.thumbnail-container .flex-direction-nav a:before,
.thumb-gallery .flex-direction-nav a:before {
  content: url(/sites/all/themes/custom/nasatwo/images/pointer-right.svg) !important;
}

.thumbnail-container .flex-direction-nav a.flex-next:before,
.thumb-gallery .flex-direction-nav a.flex-next:before {
  background: url(/sites/all/themes/custom/nasatwo/images/pointer-right.svg) !important;
  background-size: 25px 28px !important;
}

.thumbnail-container .flex-direction-nav a.flex-prev:before,
.thumb-gallery .flex-direction-nav a.flex-prev:before {
  background: url(/sites/all/themes/custom/nasatwo/images/pointer-left.svg) !important;
  background-size: 25px 28px !important;
}

.thumbnail-container .flex-direction-nav a,
.thumb-gallery .flex-direction-nav a {
  height: 24px;
  width: 24px;
}

.gallery-thumb {
  max-width: 100%;
  padding: 5px;
}

.overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: 133px;
  height: 71px;
  position: absolute;
  opacity: 0;
  top: 5px;
  left: 5px;
  overflow: hidden;
}

.overlay p {
  color: white;
  font-size: 1em;
  font-weight: 200;
  text-align: center;
  opacity: 1;
  position: absolute;
  padding: 5px;
}

.thumbnail-frame {
  position: relative;
  transition: opacity 0.5s;
  width: 12.5%;
}

.thumbnail-frame.is-loading {
  opacity: 0;
}

.thumbnail-frame:hover .overlay {
  opacity: 1;
}

.gallery-label {
  cursor: pointer;
  background-color: #5d7fb9;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  position: absolute;
  left: 55px;
  top: 15px;
  z-index: 4;
}
.gallery-label:hover {
  text-decoration: underline;
}

.preview .gallery-label {
  position: absolute;
  top: 0;
  left: 1em;
}

.thumbnail-label {
  background-color: #555555;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  position: absolute;
  cursor: pointer;
  z-index: 15;
}

.thumbnail-label .fa {
  padding-right: 5px;
}

.preview .image.description {
  bottom: 160px;
}

.preview .image.description .blue-bold {
  padding-left: 7.5px;
}

.preview .image.description .download {
  float: right;
  margin: 10px;
  font-size: 24px;
}

.images .download-icon {
  width: 24px;
  float: right;
}

.images [class*=col-] {
  padding: 0px;
}

.preview .image.description .body {
  padding: 1em;
}

.preview .description {
  position: absolute;
  margin: 0px auto;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 0px;
}

.preview .description .content {
  color: #000;
}

.description.closed h3 {
  margin: 0.5em 1.5em 0.5em 0.5em;
}

.description p {
  margin: 0.5em 0.5em 0.5em 0.5em;
}

.description.opened {
  background-color: #fff;
  color: #000;
  z-index: 2;
}

.description.closed {
  background-color: rgba(0, 0, 0, 0.7);
}

.description.closed h3,
.description.closed p {
  color: #fff;
}

.description.closed .shift,
.description.closed .blue-bold {
  display: none;
}

.video.description .promo a:visited {
  color: #428bca;
}

.description a:visited {
  color: #551a8b;
}

.arrow-up {
  width: 0px;
  height: 0px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid #fff;
}

.arrow-down {
  width: 0px;
  height: 0px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid #2f2f2f;
}

.shown {
  position: absolute;
  right: 0;
  top: 0;
  margin: 1em 10px;
  cursor: pointer;
}

.image.slide-container .flex-wrapper {
  top: 50px;
  display: flex;
}

.addthis-wrapper {
  overflow: visible;
}

@media (min-width: 768px) {
  .images #title {
    margin: 0.5em 0.5em 0.5em 0em !important;
  }

  .addthis-wrapper {
    max-width: 200px;
    float: right;
  }

  .addthis-wrapper .addthis_toolbox {
    float: right;
    min-width: 180px;
  }

  .download-icon-wrapper {
    float: left;
  }

  .videos .flex-direction-nav a {
    top: 43% !important;
    margin: 0 !important;
  }

  .images .flex-direction-nav a {
    top: 33% !important;
    margin: 0 !important;
  }

  .preview .video.description {
    position: static;
    margin: 0px auto;
    width: auto;
    height: 360px;
    background: #444;
    border: 10px solid #444;
    overflow-y: auto;
  }

  .image.slide-container {
    margin-bottom: 1em;
  }

  .image.slide-container .flex-wrapper {
    height: 90%;
  }

  .video.description .promo {
    padding: 1em 3.2em 1em 1em;
  }

  .description.opened h3 {
    margin: 0.5em;
  }

  .image.description.opened h3 {
    margin: 0.5em 9em 0.5em 0.5em;
  }

  .thumbnail-label {
    left: 165px;
  }

  .shift.mobile-description {
    display: none;
  }

  .mobile-toggle {
    display: none;
  }

  .show-mobile {
    display: none;
  }

  .hide-mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .description.closed .promo {
    display: none;
  }

  .description.opened .shift {
    display: block;
  }

  .show-mobile {
    display: block;
  }

  .hide-mobile {
    display: none;
  }

  .thumb-gallery {
    display: none;
  }

  .video-thumbnails.thumb-gallery {
    display: block;
  }

  .description.closed, .description.opened {
    bottom: 0;
    height: auto;
  }

  .image.slide-container .flex-wrapper {
    height: 80%;
  }

  .gallery-label {
    left: 1em;
    top: 0px;
  }

  .gallery-card {
    padding: 15px 10px;
  }

  .gallery-container {
    padding: 1em 0em;
  }

  .thumbnail-label {
    right: 0px;
    top: 70px;
  }

  .overlay {
    width: 122px;
    height: 65px;
  }

  .overlay p {
    padding: 2px 5px 5px 5px;
  }

  .gallery-thumb {
    width: 130px;
  }

  #gallery-list {
    padding: 0;
  }

  .description {
    width: 100% !important;
  }

  .description.closed .mobile-toggle {
    display: none;
  }

  .description.opened .arrow-down {
    width: 4em;
    height: 0px;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  .description.opened .shown {
    top: 1em;
    margin: 0;
    color: #999;
  }

  .description.opened #title {
    padding: 1em;
    font-weight: bold;
  }

  .description h3 {
    font-size: 24px;
  }

  .description #download {
    margin: 10px;
  }

  .description .btn {
    color: #ffffff !important;
  }

  #full-view .flex-direction-nav a {
    top: 20%;
  }

  .flex-direction-nav .flex-prev {
    left: -8px !important;
  }

  .shift {
    display: none;
  }

  .shift.mobile-description {
    display: block;
    background-color: #ffffff;
    padding-bottom: 20px;
  }

  .video .shift {
    display: block;
  }

  .mobile-description .social ul {
    padding-left: 10px;
  }

  #tags {
    width: 56%;
    margin: 0.2em 0.5em;
  }

  .videos .flex-direction-nav {
    display: none;
  }
}
/* Image Feature */
.image-feature {
  min-height: 150px;
  display: block;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  background-color: #fff;
}

.image-feature .feature-image {
  min-width: 100%;
  width: -webkit-calc(100% + 10px*2);
  width: calc(100% + 10px*2);
  margin-top: -10px;
  border-radius: 2px 2px 0 0;
}

.preview {
  background: #313131;
  height: 100%;
  min-height: 100%;
}

.gallery-container {
  background: #313131;
  padding: 20px 40px 20px 40px;
  position: relative;
}

.gallery-container #trending {
  margin-top: 25px;
}

.flex-active-side {
  width: auto;
  float: none;
  margin-right: auto;
}

.preview {
  background: #313131;
  height: 80%;
  min-height: 80%;
  position: fixed;
}

#full-view {
  position: fixed;
  width: 100%;
  background-color: #313131;
  height: 100%;
  max-width: 1366px;
  border-radius: 0px;
}

#full-view .slides img {
  margin: 0px auto;
  border: 0px;
  height: 100%;
  width: auto;
}

.images .content {
  color: #fff;
}

.video.slide-container {
  height: auto;
  margin: 0px auto;
  bottom: 23%;
  position: fixed;
  left: 0;
  right: 0;
  width: 640px;
  height: 360px;
}

.video.slide-container .promo {
  padding: 1em;
  font-family: sans-serif;
}

.image.slide-container {
  width: auto;
  height: 80%;
}

#full-view .slides img {
  margin: 0px auto;
  border: 0px;
  height: 100%;
}

.flex-control-thumbs img {
  width: auto;
  max-height: 65px;
  margin: 0px auto;
}

.thumbnail-frame {
  position: relative;
  transition: opacity 0.5s;
  width: 12.5%;
}

.thumbnail-frame.is-loading {
  opacity: 0;
}

.thumbnail-frame:hover .overlay {
  opacity: 1;
}

.video.thumbnail-frame {
  width: 25%;
}

.flexslider .video-js {
  margin: 0px auto;
  width: 100% !important;
  height: auto !important;
  max-height: 360px;
  min-height: 360px;
}

.h-lg-1 .video-js {
  max-height: 300px;
  min-height: 300px;
}

.h-lg-1 .videojs-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.h-lg-1 .vjs-chapters-button,
.h-lg-1 .vjs-quality-button,
.h-lg-1 .vjs-mute-control,
.h-lg-1 .vjs-volume-control {
  display: none;
}

.h-lg-1 .vjs-poster {
  top: -43px;
}

.video-js:after {
  content: ".";
  display: block;
  position: relative;
  padding: 40.1% 0 0 0;
  /* (height/width)*100%, eg. 56.25% for 16:9 75% for 4:3 */
  margin: 0 0 0 -100%;
  visibility: hidden;
  height: 0;
}

.vjs-default-skin .vjs-big-play-button,
.embed-card__ytButton {
  background-image: url("/sites/all/themes/custom/nasatwo/images/yt_icon_rgb.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 85px;
  border: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.card.cards--1row.cards--1col .vjs-default-skin .vjs-big-play-button,
.card.cards--1row.cards--1col .embed-card__ytButton {
  background-size: 70px;
}

.video-js.vjs-fullscreen {
  max-height: initial;
  min-height: initial;
}

.description-header #title {
  display: inline-block;
  clear: both;
  float: left;
  margin: 0.5em;
  margin-right: 3em;
  font-weight: 600;
}
.description-header .download-link {
  padding-left: 1em;
  padding-bottom: 0.5em;
}

.video .description-header #title,
.video .promo {
  color: #fff;
}

#gallery-list .image {
  background: #222222;
  position: relative;
}

.slide-container .img-responsive {
  margin: 0px auto;
  position: relative;
}

.slide-container.image {
  height: calc(85% - 100px);
}

.flex-wrapper {
  align-items: center;
}

.flex-wrapper img {
  width: auto;
  height: auto;
  max-height: 100%;
}

.h-lg-1 .vjs-youtube .vjs-poster {
  background-size: cover !important;
}

.gallery-card.is-loading .vjs-big-play-button,
.gallery-card.is-loading .caption {
  display: none;
}

.video.gallery-card.is-loading .inner {
  margin-bottom: -1px;
  height: 21vw;
}

.vjs-default-skin .vjs-play-progress,
.vjs-default-skin .vjs-volume-level {
  background-color: #5d7fd9 !important;
}

#thumbnail-slider {
  height: 100px;
  background: #1b1b1b;
}

#thumbnail-slider.thumb-gallery {
  bottom: 0%;
  position: fixed;
  max-width: 1366px;
  width: 100%;
}

#thumbnail-slider.thumb-gallery.video-thumbnails {
  overflow: hidden;
  bottom: none;
  position: relative;
  max-width: none;
  width: 82.33333%;
  left: 5.66666%;
  margin: 0 40px !important;
}

.description.closed,
.description.opened {
  position: fixed;
  bottom: 100px;
}

.preview {
  position: relative;
}

.gallery-card {
  width: 25%;
  height: auto;
}

.gallery-card.video {
  /*min-height: 290px;*/
}

.gallery-card .inner {
  margin: 15px;
}

.gallery-card .inner.img-wrapper {
  margin: auto;
}

.gallery-card.inner img {
  width: 100%;
  height: auto;
}

.gallery-card .headline {
  width: auto;
  position: relative !important;
}

.gallery-card {
  float: left;
  width: 23%;
  margin: 1%;
  max-width: 341.5px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.gallery-card:hover {
  cursor: pointer;
}

.gallery-card .inner {
  margin: 15px;
  height: 16vw;
}

.is-loading.gallery-card .inner {
  background-color: #222222;
  background-image: url("/sites/all/themes/custom/nasatwo/images/ring.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 45px;
}

.gallery-card.video .inner {
  position: relative;
  cursor: pointer;
  margin: auto;
}

.card .inner a,
.card .inner a .image {
  margin: 0;
}

.gallery-card.is-loading .inner a img {
  opacity: 0;
}

.gallery-card .inner a:hover {
  text-decoration: none;
}

.gallery-card .inner a img {
  opacity: 1;
}

.gallery-card .inner .caption {
  background-color: #e3e3e3;
  padding: 5px 10px;
  color: #000000;
  font-size: 1.37em;
  font-weight: 600;
  min-height: 80px;
  overflow: hidden;
}

.gallery-card .inner:hover .caption {
  background-color: #fff;
}

.gallery-card .image .tags {
  top: auto;
  left: auto;
  bottom: auto;
}

.gallery-card .inner img {
  width: 100%;
  height: auto;
}

.h-lg-1 .vjs-playing + a .headline {
  display: none;
}

.vjs-default-skin.bg-card-canvas {
  background-size: 100%;
}

.card.h-lg-1.col-md-3 .embedded .vjs-default-skin.bg-card-canvas {
  background-size: 38em;
  background-position: -90px -50px;
}

.card.h-lg-1.col-md-6 .embedded .vjs-default-skin.bg-card-canvas {
  background-size: 100%;
}

.card.h-lg-1.col-md-9 .embedded .vjs-default-skin.bg-card-canvas {
  background-size: 100% auto;
  background-position: auto;
}

.card.h-lg-2 .embedded .vjs-default-skin.bg-card-canvas {
  background-size: 79em;
}

#full-view.videos {
  /*background image for video gallery*/
}

.vjs-control-bar {
  top: 95%;
}

.video-thumbnails {
  /* important b/c someone used an id */
  height: 160px !important;
}

.share-wrapper h3 {
  margin-top: 10px;
}

@media (min-width: 991px) {
  .gallery-card.video .inner {
    min-height: 22vw;
  }
}
@media (max-width: 1020px) and (min-width: 768px) {
  .thumbnail-frame {
    width: 16.66666667%;
  }

  .description-header #title {
    font-size: 18px;
  }

  .video.description .promo {
    font-size: 12px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .gallery-card.video .inner {
    min-height: 22vw;
  }

  .card.h-lg-1.col-md-3 .embedded .vjs-default-skin.bg-card-canvas {
    background-position: -45px -50px;
  }
}
@media (max-width: 767px) and (min-width: 601px) {
  .thumbnail-frame {
    width: 20%;
  }

  .gallery-container {
    padding: 105px 20px 20px 20px;
  }

  .gallery-card {
    margin: 0px auto;
    width: 100%;
    max-width: 100%;
    float: none;
  }

  .gallery-card .inner, .gallery-card.video .inner {
    height: auto;
  }

  #gallery-list .image {
    min-height: 55vw;
  }

  .gallery-card .inner .caption {
    font-size: 1.47em;
    line-height: 1.47em;
  }

  .preview {
    position: relative;
  }

  .video.slide-container {
    width: 90%;
  }

  .video.description {
    max-width: none;
  }

  .preview .close {
    right: 16px;
  }

  .video.description.opened #title {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .images #title {
    margin: 0em 0.5em 0.5em 0em !important;
  }

  .image.slide-container .flex-wrapper {
    top: 50px;
  }

  .images .download-icon {
    width: 21px;
    float: right;
  }

  .share-wrapper {
    margin: 6px 0px;
  }

  .addthis-wrapper {
    float: left;
  }

  .download-icon-wrapper {
    float: right;
  }

  #thumbnail-slider.thumb-gallery.video-thumbnails {
    left: -4%;
    width: 85%;
  }

  .images .css_spinner {
    font-size: 1em;
    top: 10%;
  }

  #full-view .flex-direction-nav a.flex-next::before {
    background: url("/sites/all/themes/custom/nasatwo/images/arrow-right.svg") repeat scroll 0% 0%/40px 40px transparent !important;
  }

  #full-view .flex-direction-nav a.flex-prev::before {
    background: url("/sites/all/themes/custom/nasatwo/images/arrow-left.svg") repeat scroll 0% 0%/40px 40px transparent !important;
  }

  .slide-container.image {
    height: 50%;
  }

  .images .flex-direction-nav a {
    top: 25% !important;
    width: 28px;
    height: 32px;
  }

  .images .flex-direction-nav .flex-next {
    margin-right: 0px;
    right: 10px !important;
  }

  .images .flex-direction-nav .flex-prev {
    margin-left: 0px;
    left: -5px !important;
  }

  .card.h-lg-1.col-md-3 .embedded .vjs-default-skin.bg-card-canvas {
    background-position: center;
  }

  .EmberYoutube iframe {
    width: 100%;
    height: 56.25vw;
    position: fixed;
    top: 36px;
    padding: 1em;
    left: 0;
    right: 0;
  }

  .preview .description {
    bottom: 0px;
    position: fixed;
  }

  .description.opened .description-header #title,
.description.opened .promo {
    color: #000;
  }

  .description.opened #title {
    margin: 0;
    padding: 2em 1em 1em;
  }

  .description.opened .promo {
    padding: 3em 1em;
  }

  .description.opened {
    height: 100%;
    z-index: 100;
    overflow-y: auto;
  }
}
@media (max-width: 600px) {
  .gallery-container {
    padding: 3em 0em;
  }

  .gallery-card {
    margin: 0px auto;
    width: 100%;
    max-width: 100%;
    float: none;
  }

  .gallery-card .inner, .gallery-card.video .inner {
    height: auto;
  }

  #gallery-list .image {
    min-height: 55vw;
  }

  .gallery-card .inner .caption {
    font-size: 1.47em;
    line-height: 1.47em;
  }

  .preview {
    position: relative;
  }

  .preview .close {
    right: 16px;
  }

  .video.slide-container {
    width: 90%;
    bottom: 40%;
  }

  .flexslider .video-js {
    min-height: 225px;
    width: 90% !important;
  }
}
.context-full_width {
  clear: both;
  display: table;
  margin: 0px auto 15px;
}
.context-full_width.type-file, .context-full_width.type-audio {
  margin: 0 0 15px;
}
.context-full_width.type-video {
  display: block;
}

.context-side_image,
.context-side_promo {
  margin: 0 auto;
  max-width: 320px;
}
.context-side_image.type-iframe, .context-side_image.type-video,
.context-side_promo.type-iframe,
.context-side_promo.type-video {
  clear: both;
  display: table;
  margin: 0px auto 15px;
}

.dnd-atom-wrapper {
  margin-bottom: 2em;
}
.dnd-atom-wrapper.context-side_image {
  margin-bottom: 3em;
}
.dnd-atom-wrapper.type-file img.scald-file-icon {
  width: 20px;
}
.dnd-atom-wrapper.type-htmlsnippet .editor-placeholder {
  display: none;
}
.dnd-atom-wrapper.type-htmlsnippet blockquote.instagram-media {
  margin: 0 auto 15px !important;
  float: none;
}
.dnd-atom-wrapper.type-twitter iframe, .dnd-atom-wrapper.type-htmlsnippet iframe, .dnd-atom-wrapper.type-htmlsnippet .scald-htmlsnippet-wrapper div[id^=___post], .dnd-atom-wrapper.type-htmlsnippet .scald-htmlsnippet-wrapper .fb_iframe_widget, .dnd-atom-wrapper.type-htmlsnippet .scald-htmlsnippet-wrapper .fb_iframe_widget span, .dnd-atom-wrapper.type-htmlsnippet .scald-htmlsnippet-wrapper > a > img {
  margin: 0 auto 15px !important;
  display: table !important;
}
.dnd-atom-wrapper.type-htmlsnippet iframe {
  max-width: 100%;
}
.dnd-atom-wrapper img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.dnd-atom-wrapper .scald-before-after-image-wrapper img {
  max-width: none;
}
.dnd-atom-wrapper .scald-youtube-wrapper {
  position: relative;
  padding-top: 25px;
  /* built-in youtube title and share bar */
  height: 0;
}
.dnd-atom-wrapper .scald-youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 1em;
}

.dnd-legend-wrapper {
  font-size: 11px;
}
.dnd-legend-wrapper .title {
  display: none;
}
.dnd-legend-wrapper .credits {
  font-style: italic;
  font-weight: bold;
}
.dnd-legend-wrapper .link {
  text-align: left;
  padding: 0;
  background: inherit;
}
.dnd-legend-wrapper .link a {
  text-decoration: underline;
}

.dnd-atom-wrapper.type-video video {
  height: 100%;
  width: 100%;
}

@media (min-width: 640px) {
  .context-side_image,
.context-side_promo {
    float: right;
    clear: right;
    margin: 0.5em 0em 2em 2em;
    width: 320px;
  }
}
.scald-iframe-wrapper.scald-soundcloud {
  height: 166px;
  padding-bottom: unset;
}

/* This is bad and I feel bad. But it's late and I need to shipz it.*/
#landing-page-banner {
  height: 215px;
  background-size: inherit;
  background-position: right;
  background-position-y: 0;
}
#landing-page-banner .headline {
  left: 0;
  bottom: 0;
  padding: 0 0 40px 30px;
}

.h-lg-2 .video-js {
  min-height: 615px;
  max-height: 615px;
}

.h-lg-2 .vjs-poster {
  top: auto;
}

.static-landing-page {
  padding: 2em;
  font-size: 1.1em;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  background: #fff;
  overflow: hidden;
}
.static-landing-page h1, .static-landing-page h2, .static-landing-page h3, .static-landing-page h4, .static-landing-page h5, .static-landing-page h6 {
  font-family: "Titillium Web", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
.static-landing-page .img_comments_right {
  float: right;
  display: block;
  width: 230px;
  padding: 10px;
  text-align: left;
}

.vjs-default-skin.bg-card-canvas {
  cursor: pointer;
}

.headline p {
  margin: 0;
}

#main-content.landing-page {
  padding: 0 7px;
  background: #000;
}

@media (max-width: 991px) {
  .isotope-container .card {
    position: static !important;
  }

  #menu + #main-content {
    margin-left: 0 !important;
  }
}
.sidebar.home.affix-top {
  position: absolute;
}

.not-logged-in .sidebar.home.affix {
  position: fixed;
  top: 101px;
}

.logged-in .sidebar.home.affix {
  position: fixed;
  top: 124px;
}

.camera {
  background: url(/sites/all/themes/custom/nasatwo/images/camera90.svg) !important;
  background-size: 20px 20px !important;
  color: #fff;
  position: absolute;
  top: 3px;
  right: 5px;
  width: 20px;
  height: 20px;
}

.dogear {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #000 transparent transparent;
}

.landing-page #trending {
  width: unset;
  float: unset;
  clear: both;
}

.landing-page.side-bar__wrapper {
  background-color: #252931;
}

.landing-page .side-bar {
  color: #fff;
}
@media (min-width: 768px) {
  .landing-page .side-bar {
    height: calc(100vh - 125px);
    top: 125px;
  }
}
.landing-page .side-bar section {
  font-size: 15px;
  border-bottom: 1px solid #303540;
}
.landing-page .side-bar .heading {
  background-color: #303540;
  padding: 10px;
  display: inline-block;
}
.landing-page .side-bar .content {
  padding: 15px;
}
.landing-page .side-bar .content ul {
  color: #fff;
  padding-left: 0;
}
.landing-page .side-bar .content ul li {
  padding: 10px 15px;
  list-style: none;
}
.landing-page .side-bar .content ul li.active > a {
  position: relative;
  background-color: #303540;
}
.landing-page .side-bar .content ul li a {
  color: #fff;
}

svg.at-icon-flickr {
  background-color: #fff;
}
svg.at-icon-flickr circle:nth-of-type(1) {
  fill: #ff0080;
}
svg.at-icon-flickr circle:nth-of-type(2) {
  fill: #0d65d3;
}

#topics {
  padding: 0;
  width: 100%;
}
#topics.missions.affix {
  z-index: 2;
  max-width: 1366px;
  width: 100%;
}

.logged-in #topics.missions.affix {
  top: 115px;
  z-index: 5;
  max-width: 1366px;
  width: 100%;
}

.not-logged-in #topics.missions.affix {
  top: 85px;
  z-index: 5;
  max-width: 1366px;
  width: 100%;
}

#topic-level {
  border-right: none !important;
  margin-right: 15px;
}
#topic-level a {
  display: none;
  background-color: #5d7fb9;
}
#topic-level:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 1.55em solid transparent;
  border-bottom: 1.55em solid transparent;
  border-left: 1.25em solid #5d7fb9;
  position: absolute;
  top: 50%;
  margin-top: -1.6em;
  left: 100%;
  z-index: 2;
}

/* @TODO: Is this pretty? no. but the menu needs a refactor */
div.topics-spacer {
  width: 100%;
  height: 40px;
}

@media (min-width: 1020px) {
  div.topics-spacer {
    height: 0;
  }
}
.logged-in div#nasa-edit-tabs, .logged-in .contextual-links, .not-logged-in div#nasa-edit-tabs, .not-logged-in .contextual-links {
  text-align: right;
  background-color: #333;
  height: 30px;
}
.logged-in div#nasa-edit-tabs ul li,
.logged-in .contextual-links li, .not-logged-in div#nasa-edit-tabs ul li,
.not-logged-in .contextual-links li {
  font-size: 14px;
  display: inline-block;
}
.logged-in div#nasa-edit-tabs ul li a,
.logged-in .contextual-links li a, .not-logged-in div#nasa-edit-tabs ul li a,
.not-logged-in .contextual-links li a {
  padding: 5px 15px 5px 15px;
  border-left: 1px solid #aaa;
  display: block;
  color: #aaa;
  text-decoration: none;
}
.logged-in div#nasa-edit-tabs a:hover,
.logged-in .contextual-links a:hover, .not-logged-in div#nasa-edit-tabs a:hover,
.not-logged-in .contextual-links a:hover {
  color: #fff;
  text-decoration: none;
}

.node-type-ember-page .error {
  margin-top: 80px;
}
.node-type-ember-page #main-content {
  padding-top: 0 !important;
  margin-left: 0px !important;
}
.node-type-ember-page #main {
  background-color: white;
}
.node-type-ember-page #nasa-edit-tabs {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.node-type-ember-page.logged-in .error {
  margin-top: 0;
}
.node-type-ember-page.logged-in #main-content #content {
  padding-top: 30px;
}

@media (max-width: 768px) {
  .node-type-ember-page #nasa-edit-tabs {
    display: none !important;
  }
}
.side-bar {
  padding: 0px;
  z-index: 3;
  height: 100vh;
  flex: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.side-bar__wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.side-bar__wrapper > section {
  flex: 1 1 auto;
}
.side-bar.is-open {
  width: 22.1em;
  overflow: scroll;
}
.side-bar.is-open + section #content {
  margin-left: 1em;
}
.side-bar.is-collapseable {
  border-right: 6px solid #5d7fb9;
  align-self: stretch;
}
.side-bar__tab {
  background-color: #5d7fb9;
  border-radius: 4px;
  position: fixed;
  top: 50vh;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
.side-bar__tab.inside {
  writing-mode: vertical-lr;
  padding: 1.1em 0 1.1em 0.2em;
  border-radius: 0.3em 0 0 0.3em;
  left: 20.2em;
}
.side-bar__tab.outside {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  padding: 1.1em 0.2em 1.1em 0.2em;
  border-radius: 0.3em 0 0 0.3em;
  left: 0;
}

.navbar-error {
  background-image: none !important;
  background-color: transparent !important;
  position: absolute !important;
}

#content .error {
  background-image: url("/sites/all/themes/custom/nasatwo/images/NASA-AD-background.png");
  background-color: #000;
  background-position: 0em -10em;
  background-repeat: no-repeat;
}

.error .page {
  min-height: 350px;
  padding: 65px 40px 10px;
}

.error .page h2 {
  color: #fff;
  font-weight: bold;
  font-size: 5em !important;
  padding: 10px 10px 10px 0px;
  vertical-align: middle;
  display: inline-block;
}

.error .page h4 {
  color: #83AEF7;
  font-weight: bold;
  font-size: 1.7em;
  display: inline-block;
  vertical-align: middle;
  margin-top: 1em;
}

.error .page p {
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
}

.error .sub-nav {
  margin-left: 40px;
  background: #555555;
  max-width: 865px;
}

.error #topics ul li:nth-of-type(2) {
  margin-left: auto;
  padding-left: 0px;
}

.section-error .contextual-links {
  display: none;
}

@media (max-width: 901px) {
  .error .sub-nav, #cta {
    display: none;
  }
}
@media (max-width: 768px) {
  .error .page p {
    display: none;
  }

  .error .page h2 {
    margin-bottom: 0px;
  }

  .error .page h4 {
    font-size: 1.5em;
    margin-top: 0em;
  }
}
.anyfeed_pane, .livecoveragehomepageanyfeed {
  background: #fff;
  background-clip: content-box;
  color: #000;
}
.anyfeed_pane > *, .livecoveragehomepageanyfeed > * {
  padding: 0.2em 1.1em;
}
.anyfeed_pane .anyfeed-feed, .livecoveragehomepageanyfeed .anyfeed-feed {
  height: 5em;
  color: #555555;
  clear: both;
}
.anyfeed_pane .anyfeed-2x2-image, .livecoveragehomepageanyfeed .anyfeed-2x2-image {
  margin: 0.8em;
  height: 20em;
  background-size: cover;
  background-position: center center;
  clear: both;
}
.anyfeed_pane .anyfeed-1x1-image, .livecoveragehomepageanyfeed .anyfeed-1x1-image {
  height: 3.5em;
  width: 6em;
  background-size: cover;
  background-position: center center;
  float: left;
  margin-right: 1em;
  clear: both;
}
.anyfeed_pane h3, .livecoveragehomepageanyfeed h3 {
  font-size: 1em;
  margin: 0;
  padding-bottom: 0.2em;
}
.anyfeed_pane h5, .livecoveragehomepageanyfeed h5 {
  color: #000;
  font-style: italic;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  font-size: 0.9em;
}
.anyfeed_pane .title, .livecoveragehomepageanyfeed .title {
  width: 100%;
  position: relative;
}
.anyfeed_pane .title .rss, .livecoveragehomepageanyfeed .title .rss {
  position: absolute;
  right: 0.75em;
  top: 0.75em;
}
.anyfeed_pane .title h2, .livecoveragehomepageanyfeed .title h2 {
  font-size: 1.5em;
  line-height: 1.2em;
  font-weight: bold;
  white-space: nowrap;
  width: 100%;
  margin-top: 0.7em;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 36px;
  color: #0093ED;
}

.anyfeed-container .title {
  font-size: 24px;
  font-weight: 600;
  margin-right: 35px;
  display: inline-block;
}

.anyfeed-container p {
  padding-top: 10px;
  font-weight: 200;
  font-size: 16px;
}

.anyfeed-container a.blue-bold {
  color: #428bca;
}

.anyfeed_pane .article-thumb {
  width: 100%;
  height: auto;
}

.anyfeed_pane .story-thumb {
  float: none;
}

.anyfeed_pane [class*=col-] {
  padding: 10px 7.5px 10px;
}

.anyfeed_pane .timestamp,
.anyfeed_pane h5 {
  margin: 0px;
}

.anyfeed_pane .ac, .anyfeed_pane .ac2 {
  padding-left: 0;
  width: auto;
  height: auto;
}

.anyfeed_pane .ac .timestamp {
  float: none;
}

.anyfeed_pane.col-md-6 .ac .timestamp {
  margin-bottom: 15px;
}

.anyfeed_pane.col-md-6 .story-thumb {
  width: 55%;
  float: left;
  margin-right: 2%;
  height: auto;
}

.anyfeed_pane .description {
  margin-bottom: 20px;
}

.anyfeed_pane.col-md-3 .row .row {
  margin-left: -7.5px !important;
  margin-right: -7.5px !important;
}

@media (max-width: 768px) {
  .anyfeed_pane [class*=col-] {
    padding: 8px 7.5px 6px;
  }
}
.listing-page {
  background-color: white;
  padding: 20px 50px;
}
.listing-page .ember-view.ubernode {
  margin-bottom: 32px;
}
.listing-page .ember-view.ubernode p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.ubernode-listing {
  text-align: center;
}
.ubernode-listing .pagination {
  margin: 0 auto;
}
.ubernode-listing > * {
  text-align: left;
}

.pagination {
  font-family: "Titillium Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
}
.pagination > li > a,
.pagination > li > span {
  padding: 6px 12px;
  line-height: 1.42857;
  color: #428bca;
  border-style: none;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #428bca;
  background-color: #efefef;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #428bca;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus,
.pagination > li > a:not([href]) {
  color: #333333;
}

.event {
  background: #39719e;
  background-clip: content-box;
  position: relative;
  font-size: 14px;
  line-height: 16px;
}
.event > * {
  padding: 0.2em 0.5em;
}
.event h2 {
  margin: auto;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding-top: 8px;
}
.event h2.no-countdown {
  border-bottom: 1px solid #fff;
  margin: 0 auto 3px;
  width: 96%;
  padding: 8px 0 6px 0;
}
.event a {
  color: #fff;
  display: block;
}
.event .counter-block {
  position: static;
  background: none;
  font-size: 24px;
  padding: 15px;
  width: 96%;
  border-bottom: 1px solid #fff;
  margin: 0px auto 3px;
  max-width: none;
}
.event .title {
  padding-top: 2px;
  padding-bottom: 0.2em;
}
.event .event-bottom {
  border-top: 1px solid #fff;
  position: absolute;
  bottom: 0;
  left: 2%;
  width: 96%;
  background-color: #39719e;
  text-align: center;
}
.event .event-bottom .event-link-left {
  float: left;
  width: 40%;
}
.event .event-bottom .event-link-right {
  float: right;
  width: 50%;
}

.tv-schedule {
  background: #fff;
  color: #000;
  margin: 25px auto 0;
  max-width: 757px;
  padding: 5px;
}
.tv-schedule p {
  margin-bottom: 2px;
  word-wrap: break-word;
}

@media (min-width: 501px) {
  .tv-schedule {
    margin-top: 32px;
  }
}
.nasa-tv-schedule {
  background: #fff;
  color: #000;
  margin: 25px auto 0;
  max-width: 757px;
  padding: 0 5px 5px 5px;
}
.nasa-tv-schedule__title {
  background-color: #488cc8;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin-left: -5px;
  margin-top: 0;
  padding: 10px 25px;
}
.nasa-tv-schedule__info {
  display: grid;
  font-weight: 600;
  grid-template-columns: 50% 50%;
  margin: 10px 3.5%;
}
.nasa-tv-schedule__info--schedule {
  text-align: right;
}
.nasa-tv-schedule__days-container {
  margin: 0 3.5% 1% 3.5%;
}
.nasa-tv-schedule__tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  list-style: none;
  margin: unset;
  padding: unset;
}
.nasa-tv-schedule__tabs:after {
  clear: both;
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}
.nasa-tv-schedule__tab {
  border: 1px solid #000;
  display: inline;
}
.nasa-tv-schedule__tab:not(:first-child) {
  border-left: none;
}
.nasa-tv-schedule__tab a {
  background: #15418c;
  color: #fff;
  display: block;
  float: left;
  left: 1px;
  margin-left: -1px;
  padding: 4px 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.nasa-tv-schedule__tab a:hover {
  background: #488cc8;
}
.nasa-tv-schedule .nts-selected-true {
  background: #488cc8;
}
.nasa-tv-schedule__schedule-container {
  min-height: 250px;
  position: relative;
}
.nasa-tv-schedule__schedule {
  border: 1px solid #000;
  border-bottom: none;
  display: grid;
  grid-template-columns: 15% 85%;
  left: 0;
  min-height: 250px;
  top: -1px;
  width: 100%;
}
@media screen and (min-width: 680px) {
  .nasa-tv-schedule__schedule {
    grid-template-columns: 12% 88%;
  }
}
.nasa-tv-schedule .nts-grid-item {
  border-bottom: 1px solid #000;
  padding: 2px;
  word-wrap: break-word;
}
.nasa-tv-schedule__item--time, .nasa-tv-schedule__item--title {
  border-right: 1px solid #000;
}
.nasa-tv-schedule .pager {
  margin: 0;
}
.nasa-tv-schedule__text-box {
  margin: 0 3.5% 3.5% 3.5%;
}

@media (min-width: 501px) {
  .nasa-tv-schedule {
    margin-top: 32px;
  }
}
.countdown {
  background-clip: content-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.countdown .layer {
  bottom: 20%;
  font-size: 2em;
  height: 60%;
  position: absolute;
  width: 100%;
}
.countdown.col-md-6 .layer, .countdown.col-md-9 .layer {
  font-size: 3em;
  height: 80%;
}
.countdown.h-lg-1 .counter-block {
  top: 25%;
}
.countdown .embedded {
  background-color: #39719e;
}

.counter-block {
  padding: 0.2em;
  width: 100%;
  color: white;
  max-width: 10em;
  background-color: #428bca;
  opacity: 0.9;
  position: relative;
  display: block;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  margin: 0px auto;
  top: 30%;
}

.snippet.image {
  height: 100%;
}
.snippet.image a {
  color: #15418c;
  text-decoration: none;
}
.snippet.image a:visited {
  color: #5d7fb9;
}
.snippet.image a:hover, .snippet.image a:active, .snippet.image a:focus {
  text-decoration: underline;
}
.snippet .oneByOne {
  color: #000;
}

.snippet-card {
  color: #000;
  height: 100%;
  position: relative;
}
.snippet-card .content {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  overflow-wrap: break-word;
  position: relative;
  padding: 1em;
  background: #fff;
}
.snippet-card .content .title {
  font-size: 1.4em;
  font-weight: 600;
  margin-top: 0.5em;
}
.snippet-card .content h2 {
  margin-top: 0px;
}
.snippet-card .content p {
  overflow: hidden;
  padding-top: 0.4em;
  font-weight: 200;
  font-size: 1em;
  color: #333333;
}
.snippet-card .content ul {
  padding: 10px 0 0 0;
}
.snippet-card .content ul li {
  margin-left: 10px;
}
.snippet-card.wide .bg-card-canvas {
  width: 50%;
  float: left;
}
.snippet-card.x-wide .content {
  width: 33%;
  float: right;
}
.snippet-card.x-wide .bg-card-canvas {
  float: left;
  width: 67%;
}
.snippet-card.has-text .bg-card-canvas::after {
  content: "";
  width: 0;
  height: 0;
  border: 40px solid transparent;
  border-right-color: #fff;
  border-left: none;
  position: absolute;
  right: -2px;
  top: 40%;
}
.snippet-card--no-image .bg-card-canvas {
  display: none;
}

.snippet.cards--1row.cards--1col .headline {
  word-wrap: break-word;
}

.snippet-card.x-wide.snippet-card--no-image .content,
.snippet-card.wide.snippet-card--no-image .content {
  width: 100%;
}

.snippet.cards--2row.cards--4col .snippet-card.x-wide.snippet-card--no-image .title {
  font-size: 2.2em;
  text-align: center;
}

form.search-box {
  position: relative;
  z-index: 1;
  height: 39px;
}
form.search-box.full {
  width: 156px;
}
form.search-box input {
  border: none;
  cursor: pointer;
}
form.search-box input[type=text] {
  width: 0px;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  z-index: 3;
  padding: 10px 36px 10px 10px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
form.search-box input[type=text]:focus, form.search-box input[type=text].full {
  cursor: text;
  width: 156px;
  background-color: #333333;
  z-index: 1;
}
form.search-box input[type=submit] {
  display: inline-block;
  height: 30px;
  width: 30px;
  padding: 0px;
  position: absolute;
  margin-top: 5px;
  top: 0;
  right: 0;
  text-indent: -10000px;
  z-index: 2;
  background: url("/sites/all/themes/custom/nasatwo/images/search.svg") center center no-repeat;
}
form.search-box label.element-invisible {
  width: 1px;
  right: 0;
}

.listing-page__header {
  padding: 20px;
}

.advanced-search__page {
  min-width: 320px;
  margin: 0px;
  padding: 0px;
}

.advanced-search .pager li {
  padding: 0.1em;
}
@media all and (min-width: 430px) {
  .advanced-search .pager li {
    padding: 0.5em;
  }
}
.advanced-search .pager li > a,
.advanced-search .pager li > span {
  border-radius: 0;
}
.advanced-search .advanced-search__pager {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.advanced-search button {
  padding: 0.5em 1.5em;
  color: #fff;
  border: 1px solid #999;
  background-color: #9CA299;
  text-decoration: none;
  font-family: inherit;
}
.advanced-search input[type=checkbox] {
  margin: 0;
  vertical-align: middle;
}

.advanced-search button.advanced-search__filter-toggle {
  transition-duration: 0.3s;
}
.advanced-search button.advanced-search__filter-toggle:after {
  content: "►";
  font-size: 1em;
  display: inline-block;
  margin-left: 2em;
  color: #fff;
  transform: rotate(-90deg);
}
.advanced-search button.advanced-search__filter-toggle.open:after {
  transform: rotate(90deg);
}
.advanced-search button.advanced-search__filter-accessibility {
  background: none;
  border: transparent;
  color: #000;
  display: inherit;
  overflow: hidden;
  padding: 0;
  height: 0px;
  width: 0px;
}
.advanced-search button.advanced-search__filter-accessibility:focus {
  height: auto;
  width: auto;
  padding: 0.5em 1.5em;
}
.advanced-search button.advanced-search__search-button {
  background: #428BCA;
  color: #fff;
  border: none;
}
.advanced-search button.advanced-search-category__arrow {
  background: none;
  border: transparent;
  color: #000;
  display: inherit;
  font-size: 1.5em;
  margin: 0;
  padding: 0;
  height: auto;
  min-width: 1.5em;
}
.advanced-search button.advanced-search-category__arrow.children:before {
  content: "►";
  margin-right: 0.5em;
  transition-duration: 0.2s;
}
.advanced-search button.advanced-search-category__arrow.children.open:before {
  transform: rotate(90deg);
}
@media all and (min-width: 768px) {
  .advanced-search button.advanced-search-category__arrow {
    font-size: 1em;
    width: 1em;
  }
}

.advanced-search__categories {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  padding-top: 1.5em;
}
@media all and (min-width: 768px) {
  .advanced-search__categories {
    flex-flow: row wrap;
  }
}

.advanced-search__category {
  flex: 1 auto;
  list-style: none;
  padding-left: 0;
}
.advanced-search__category .child {
  padding-left: 1.5em;
}
.advanced-search__category h3 {
  padding-left: 1em;
}
.advanced-search__category ul {
  padding-left: 0em;
}

.advanced-search__form {
  background-color: #F7F7F7;
  padding: 2em 1em 0 2em;
  margin-bottom: 1em;
}

.advanced-search-form__input {
  display: flex;
  padding-bottom: 2em;
}
.advanced-search-form__input input {
  background: url("/sites/all/themes/custom/nasatwo/images/search-grey.png") 0.25em 0.1em no-repeat;
  background-color: #fff;
  border: 1px solid #9C9C9C;
  color: #63717f;
  font-style: italic;
  height: 3em;
  padding-left: 4em;
  min-width: 12em;
  width: 25em;
}

.advanced-search__reset {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-right: 1.5em;
}
.advanced-search__reset span {
  color: #9CA299;
  font-style: italic;
  padding-left: 2em;
  padding-right: 1.5em;
}

.advanced-search__results {
  padding: 2em;
}
.advanced-search__results h2 {
  margin-top: 0;
}
.advanced-search__results h4 {
  margin: 0 0 0.2em 0;
}
.advanced-search__results p {
  margin: 0;
}
.advanced-search__results .advanced-search__result {
  padding: 0.5em;
}

.advanced-search .term {
  font-weight: normal;
  padding: 0;
  flex: 2;
  font-size: 1em;
}

.advanced-search__term {
  display: flex;
  flex-flow: column nowrap;
}
.advanced-search__term .advanced-search__term-block {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
}

.advanced-search__term-block > * {
  margin: 0 0.5em 0 0.5em;
}
@media all and (min-width: 768px) {
  .advanced-search__term-block > * {
    margin: 0 0.5em 0 0.5em;
  }
}

.search-input {
  display: flex;
}
.search-input input {
  background: url(/sites/all/themes/custom/nasatwo/images/search-grey.png) 0.25em 0.1em no-repeat;
  background-color: #fff;
  border: 1px solid #9C9C9C;
  color: #63717f;
  font-style: italic;
  padding: 0.7em 0.7em 0.7em 3.2em;
  flex: 1 0 5em;
}
.search-input button {
  background: #5d7fb9;
  color: #fff;
  border: 1px solid #5d7fb9;
  cursor: pointer;
  padding: 0.3em 1.5em;
  font-weight: bold;
  font-size: 1em;
  flex: 0 0 auto;
}
.search-input button:hover, .search-input button:focus {
  background: #44669f;
}

@media (min-width: 769px) {
  .sub-menu, .edu-feed__sub-menu {
    position: -webkit-sticky;
    position: sticky;
    top: 85px;
    z-index: 4;
  }
}

.submenu-topics, .edu-feed__submenu-topics {
  background-color: #555555;
  letter-spacing: 0.07em;
  margin: 0;
  padding: 0;
}
.submenu-topics a, .edu-feed__submenu-topics a {
  color: #fff;
  text-decoration: none;
}

/* IE10: Ensures that the Space Station link is set to flexbox instead of inline */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .submenu-topics a, .edu-feed__submenu-topics a {
    display: -ms-flexbox;
  }
}
/* IE10: setting flexbox for the topics list */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .submenu-topics__list, .edu-feed__submenu-topics--list {
    display: -ms-flexbox;
    -ms-flex-flow: row nowrap;
    -ms-flex-pack: start;
  }
}
/* Safari 8: setting flexbox */
_::-webkit-full-page-media, _:future, :root .submenu-topics__list, :root .edu-feed__submenu-topics--list {
  display: -webkit-flex;
  -webkit-flex-direction: row nowrap;
  -webkit-justify-content: flex-start;
}

.submenu-topics__list, .edu-feed__submenu-topics--list {
  align-content: flex-start;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  margin-bottom: 0;
  padding-left: 0;
}

/* IE10: setting flexbox the list menu*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .submenu-topics__list li, .edu-feed__submenu-topics--list li {
    display: -ms-flexbox;
  }
}
/* Safari 8: setting flexbox */
_::-webkit-full-page-media, _:future, :root .submenu-topics__list li, :root .edu-feed__submenu-topics--list li {
  display: -webkit-flex;
}

.submenu-topics__list li, .edu-feed__submenu-topics--list li {
  align-content: center;
  align-items: center;
  border-right: 1px solid #777777;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 8px 10px 12px 10px;
}
.submenu-topics__list li.active, .submenu-topics__list li:hover, .edu-feed__submenu-topics--list li.active, .edu-feed__submenu-topics--list li:hover {
  background-color: #5d7fb9;
}
.submenu-topics__list li:last-child, .edu-feed__submenu-topics--list li:last-child {
  border: none;
}
.submenu-topics__list li.first, .edu-feed__submenu-topics--list li.first {
  border: none;
  margin-right: 15px;
  padding: 0;
}
.submenu-topics__list li.first a, .edu-feed__submenu-topics--list li.first a {
  color: #fff;
  background-color: #5d7fb9;
  padding: 10px;
  position: relative;
}
.submenu-topics__list li.first a:after, .edu-feed__submenu-topics--list li.first a:after {
  content: " ";
  border-bottom: 1.45em solid transparent;
  border-left: 1.1em solid #5d7fb9;
  border-top: 1.45em solid transparent;
  left: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  z-index: 2;
}

/* Targeting IE 10+ and setting flexbox for smaller screens */
@media (max-width: 768px) {
  _:-ms-input-placeholder .submenu-topics__list, :root .submenu-topics__list {
    display: -ms-flexbox;
    -ms-flex-flow: column;
    /* After setting IE10+ top to 9px we need to ensure IE11+ top is 1px */
  }
  _:-ms-input-placeholder .submenu-topics__list span.glyphicon, :root .submenu-topics__list span.glyphicon {
    display: inline-block;
    top: 9px;
  }
  _:-ms-input-placeholder .submenu-topics__list ::-ms-backdrop, _:-ms-input-placeholder .submenu-topics__list span.glyphicon, :root .submenu-topics__list ::-ms-backdrop, :root .submenu-topics__list span.glyphicon {
    top: 1px;
  }
  _:-ms-input-placeholder .submenu-topics__list li a, :root .submenu-topics__list li a {
    -ms-flex: 1;
  }
  _:-ms-input-placeholder .submenu-topics__list li.first a, _:-ms-input-placeholder .submenu-topics__list li.first a:after, :root .submenu-topics__list li.first a, :root .submenu-topics__list li.first a:after {
    background-color: transparent;
    border: none;
    display: block;
    -ms-flex: 1;
    font-size: 1.2em;
    padding: 8px 10px 8px 10px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .submenu-topics {
    font-size: 1.23em;
    z-index: 110;
  }
  .submenu-topics .active.first {
    background-color: transparent;
    text-decoration: none;
  }
  .submenu-topics .active.first:hover {
    text-decoration: none;
  }
  .submenu-topics .isOpen {
    height: 11.5em;
  }
  .submenu-topics .isOpen .first:not(.active) {
    background-color: transparent;
  }
  .submenu-topics .isOpen .first:not(.active):hover {
    text-decoration: underline;
  }

  /* Safari 8: setting flexbox */
  _::-webkit-full-page-media, _:future, :root .submenu-topics__list {
    display: -webkit-flex;
    -webkit-flex-direction: column;
  }
  _::-webkit-full-page-media span.glyphicon, _:future span.glyphicon, :root .submenu-topics__list span.glyphicon {
    top: 9px;
  }
  _::-webkit-full-page-media.isOpen span.glyphicon:after, _:future.isOpen span.glyphicon:after, :root .submenu-topics__list.isOpen span.glyphicon:after {
    display: inline-block;
    -webkit-transform: rotate(-180deg);
    color: #FFFFFF;
    padding: 8px 10px 12px 10px;
    padding: 0.5em;
  }

  .submenu-topics__list {
    flex-flow: column;
    padding-left: 0;
    margin-bottom: 0;
  }
  .submenu-topics__list span.glyphicon {
    padding: 8px 10px 12px 10px;
    z-index: 2;
  }
  .submenu-topics__list.isOpen .active {
    background-color: #5d7fb9;
  }
  .submenu-topics__list.isOpen .active.first {
    background-color: transparent;
  }
  .submenu-topics__list span.glyphicon:after {
    color: #fff;
    content: "";
    display: inline-block;
    font-size: 1.2em;
    line-height: 0;
    padding: 0.5em;
  }
  .submenu-topics__list.isOpen span.glyphicon:after {
    color: #FFFFFF;
    padding: 0.5em;
    transform: rotate(-180deg);
  }

  /* Safari 8: setting flexbox */
  _::-webkit-full-page-media a, _:future a, :root .submenu-topics__list li a {
    -webkit-flex: 1;
  }
  _::-webkit-full-page-media.first a, _::-webkit-full-page-media.first a:after, _:future.first a, _:future.first a:after, :root .submenu-topics__list li.first a, :root .submenu-topics__list li.first a:after {
    background-color: transparent;
    border: none;
    display: block;
    -webkit-flex: 1;
    font-size: 1.2em;
    padding: 8px 10px 8px 10px;
    width: auto;
  }

  .submenu-topics__list li {
    line-height: 1.190479em;
  }
  .submenu-topics__list li a {
    flex: 1;
    padding-left: 0.7em;
  }
  .submenu-topics__list li.first {
    justify-content: space-between;
    margin-right: 0;
  }
  .submenu-topics__list li.first a, .submenu-topics__list li.first a:after {
    background-color: transparent;
    border: none;
    display: block;
    flex: 1;
    font-size: 1.2em;
    padding: 8px 10px 8px 10px;
    width: auto;
  }
  .submenu-topics__list li:hover, .submenu-topics__list li.first:hover {
    background-color: #666;
  }
  .submenu-topics__list li.first:after {
    height: 1em;
    margin-right: 1em;
    width: 1em;
  }
}
.education-feed li.first, .education-search__form li.first, .education-item li.first {
  margin-right: 0;
}
.education-feed li.first a:after, .education-search__form li.first a:after, .education-item li.first a:after {
  display: none;
}

.bg-card-canvas .primary-tag {
  position: absolute;
  bottom: 100%;
  left: 0;
  font-size: 0.9em;
  line-height: 1.3em;
  color: #fff;
  background: #5d7fb9;
  padding: 6px 12px;
}
.bg-card-canvas .primary-tag:hover {
  text-decoration: none;
}

.mrplayer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.mrplayer .mpc {
  position: absolute;
}

.nasatvcard-ustream {
  display: block;
  padding-bottom: 57%;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .nasatvcard-ustream {
    padding-bottom: 56.4%;
  }
}

.nasatvcard {
  width: 100%;
  height: unset !important;
  /* Safari 8: setting flexbox */
  /* Targeting IE 10+ and setting flexbox for larger screens */
  /* Targeting IE 10+ and setting flexbox for smaller screens */
  /* Targeting IE 10+ and setting flexbox for screens smaller than 768 on channe links */
  /* Targeting IE 10+ and setting flexbox for screens larger than 768 on channel links */
}
.nasatvcard .nasalive-title {
  color: #fff;
}
@media (min-width: 992px) {
  .nasatvcard {
    height: 630px;
  }
}
.nasatvcard .nasatv-card-flexcontainer {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  background-color: black;
  /* targest the iPad Pro in portrait mode */
}
@media (min-width: 992px) {
  .nasatvcard .nasatv-card-flexcontainer {
    flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-flow: wrap;
  }
}
@media (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 1024px) and (max-width: 1024px) {
  .nasatvcard .nasatv-card-flexcontainer {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
}
.nasatvcard .player-wrapper {
  flex: 1 6 71%;
  order: 1;
  width: 100%;
}
@media (min-width: 992px) {
  .nasatvcard .player-wrapper {
    max-height: 565px;
    max-width: 1008px;
  }
}
.nasatvcard p {
  text-align: left;
  font-size: 1em;
}
@media (min-width: 992px) {
  .nasatvcard p {
    font-size: 1em;
  }
}
.nasatvcard h2 {
  text-align: left;
  width: 100%;
  display: inline-block;
  color: black;
  font-size: 2.2em;
}
@media (min-width: 992px) {
  .nasatvcard h2 {
    font-size: 1.72em;
  }
}
.nasatvcard h3 {
  text-align: left;
  width: 100%;
  display: inline-block;
  color: black;
  font-size: 1.5em;
}
@media (min-width: 992px) {
  .nasatvcard h3 {
    font-size: 1.5em;
  }
}
@-moz-document url-prefix() {
  .nasatvcard .vjs-control-bar {
    top: unset !important;
  }
}
.nasatvcard .vjs-control-bar {
  top: inherit;
}
.nasatvcard video {
  display: none;
}
.nasatvcard .loaded video {
  display: inherit;
}
.nasatvcard .vjs-fullscreen {
  max-height: unset !important;
}
.nasatvcard .video-js {
  max-height: 427px;
  min-width: 280px;
  min-height: 54vmin;
}
@media (min-width: 992px) {
  .nasatvcard .video-js {
    min-height: unset !important;
    max-height: 565px;
  }
}
.nasatvcard .video-js:after {
  display: block;
  content: "";
}
.nasatvcard .video-js .vjs-tech {
  position: absolute;
}
@media (min-width: 992px) {
  .nasatvcard .video-js .vjs-tech {
    position: initial;
  }
}
.nasatvcard .loaded .video-js {
  display: inherit;
}
.nasatvcard .nasatv-card-description {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1em;
  background: #fff;
  flex: 3 1 14.8%;
  order: 3;
}
@media (min-width: 992px) {
  .nasatvcard .nasatv-card-description {
    order: 2;
    max-height: 565px;
  }
}
.nasatvcard .nasatv-card-description p {
  overflow: hidden;
}
.nasatvcard .nasatv-card-description .nasatv-card-content {
  position: relative;
  overflow: auto;
}
@media (min-width: 992px) {
  .nasatvcard .nasatv-card-description .nasatv-card-content {
    max-height: 507px;
  }
}
.nasatvcard .nasatv-card-description .nasatv-card-link {
  bottom: 0;
  left: 0;
  padding: 0 0 14px 14px;
  position: absolute;
}
.nasatvcard .empty-player {
  min-width: 300px;
  width: 100%;
  display: inline-block;
  position: relative;
}
.nasatvcard .empty-player:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.nasatvcard .darkloadingspin {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@-moz-document url-prefix() {
  .nasatvcard .nasa-mobilerider-player-dimensions {
    width: inherit !important;
    height: inherit !important;
  }
}
.nasatvcard .nasa-mobilerider-player-dimensions {
  width: inherit;
  height: inherit;
}
.nasatvcard _::-webkit-full-page-media, .nasatvcard _:future, .nasatvcard :root .channels {
  display: -webkit-flex;
  -webkit-flex-flow: column;
}
@media screen and (min-width: 512px) {
  .nasatvcard _::-webkit-full-page-media, .nasatvcard _:future, .nasatvcard :root .channels {
    -webkit-flex-direction: row;
  }
}
.nasatvcard _::-webkit-full-page-media.active .audience, .nasatvcard _::-webkit-full-page-media.focus .audience, .nasatvcard _:future.active .audience, .nasatvcard _:future.focus .audience, .nasatvcard :root .channels__link.active .audience, .nasatvcard :root .channels__link.focus .audience {
  width: 100%;
}
@media (min-width: 512px) {
  .nasatvcard _:-ms-input-placeholder .channels, .nasatvcard :root .channels {
    display: -ms-flexbox;
  }
  .nasatvcard _:-ms-input-placeholder .channels a, .nasatvcard :root .channels a {
    -ms-flex: 0 1 auto;
  }
  .nasatvcard _:-ms-input-placeholder ::-ms-backdrop, .nasatvcard _:-ms-input-placeholder .channels, .nasatvcard :root ::-ms-backdrop, .nasatvcard :root .channels {
    display: flex;
    display: -ms-flexbox;
    flex-flow: row nowrap;
  }
}
@media (max-width: 768px) {
  .nasatvcard _:-ms-input-placeholder .channels, .nasatvcard :root .channels {
    display: -ms-flexbox;
    -ms-flex-direction: column;
  }
}
.nasatvcard .channels {
  border-bottom: 0.3em solid black;
  display: flex;
  display: -ms-flexbox;
  width: 100%;
  margin: 0 auto;
  flex-flow: column;
  justify-content: space-around;
  order: 2;
}
@media all and (min-width: 512px) {
  .nasatvcard .channels {
    flex-flow: row wrap;
  }
}
@media (min-width: 992px) {
  .nasatvcard .channels {
    order: 3;
    -webkit-order: 3;
    -ms-flex-order: 3;
    z-index: 100;
    border-top: 0.33em solid black;
    padding-right: 24.5em;
  }
}
@media (min-width: 992px) {
  .nasatvcard .channels .audioEnabled {
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .nasatvcard .audioEnabled {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .nasatvcard _:-ms-input-placeholder .channels__link, .nasatvcard :root .channels__link {
    display: -ms-flexbox;
    margin: 5px 0;
  }
}
@media (min-width: 768px) {
  .nasatvcard _:-ms-input-placeholder .channels__link, .nasatvcard :root .channels__link {
    display: -ms-flexbox;
  }
}
.nasatvcard .channels__link {
  margin: 5px 0;
  padding: 10px 20px;
  text-align: left;
  background-color: #292F33;
  color: #fff;
  width: 100%;
  flex: 1;
}
@media (min-width: 992px) {
  .nasatvcard .channels__link {
    margin: 5px 1%;
  }
}
@media (min-width: 512px) and (max-width: 991px) {
  .nasatvcard .channels__link {
    margin: 5px 1%;
  }
}
.nasatvcard .channels__link:first-child {
  margin-left: 0;
}
.nasatvcard .channels__link:last-child {
  margin-right: 0;
}
.nasatvcard .channels__link:hover, .nasatvcard .channels__link.active, .nasatvcard .channels__link:focus {
  color: #fff;
  background: #488cc8;
  text-decoration: none;
  cursor: pointer;
  /* IE: this is needed for placing the glyph on the right side */
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .nasatvcard .channels__link:hover .audience, .nasatvcard .channels__link.active .audience, .nasatvcard .channels__link:focus .audience {
    width: 100%;
  }
}
.nasatvcard .channels__link:hover .audience .glyphicon-check, .nasatvcard .channels__link.active .audience .glyphicon-check, .nasatvcard .channels__link:focus .audience .glyphicon-check {
  display: block;
  margin-top: 3px;
}
@media all and (min-width: 768px) {
  .nasatvcard .channels__link {
    display: -ms-flexbox;
    flex: 1;
  }
  .nasatvcard .channels__link:nth-of-type(2n+0) {
    margin-right: 1%;
  }
  .nasatvcard .channels__link:nth-of-type(3n+0) {
    margin-left: 1%;
  }
  .nasatvcard .channels__link:last-child {
    margin-right: 0;
  }
}

.full-screen {
  position: absolute;
  top: 0;
  left: 0;
}

.liveblogscard {
  background: #fff;
  background: #555;
  background-clip: content-box;
  color: #fff;
  font-size: 1em;
  height: unset !important;
  height: auto;
  /* iPad Pro */
}
.liveblogscard h2 {
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0;
  padding-bottom: 0.2em;
}
.liveblogscard h2 a {
  color: #fff;
  font-weight: bold;
}
.liveblogscard h3 {
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  font-size: 2.1vmax;
  margin: 0;
  padding-bottom: 0.2em;
}
.liveblogscard h3 a {
  color: #fff;
  font-weight: bold;
}
@media (min-width: 992px) {
  .liveblogscard h3 {
    font-size: 1.1em;
  }
}
@media (min-width: 1790px) {
  .liveblogscard h3 {
    font-size: 1.1em;
  }
}
.liveblogscard h5 {
  color: #fff;
  font-style: italic;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  font-size: 0.9em;
}
@media (min-width: 992px) {
  .liveblogscard {
    height: 830px !important;
    font-size: 1em;
  }
}
@media (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 1024px) and (max-width: 1024px) {
  .liveblogscard {
    height: 638px !important;
    max-height: 638px !important;
  }
}
.liveblogscard .liveblogs-related-stories {
  padding: 1.1em 0 1.5em 0;
}
.liveblogscard .related-links {
  padding-left: 5px;
  padding-top: 0.5em;
}
.liveblogscard .related-links span.glyphicon:before {
  color: red;
  content: "";
  display: "inline-block";
  font-size: 0.6em;
}
.liveblogscard .related-links a {
  color: #fff;
}
.liveblogscard .liveblogs-feed {
  background: #292F33;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.liveblogscard .liveblogs-title {
  order: 1;
  flex: 0 1 8.9%;
  align-self: auto;
  font-size: 1.42em;
  padding: 1em 0 0 1em;
  border-bottom: 0.28em solid #555555;
  width: 100%;
}
.liveblogscard .liveblogs-title h2 {
  font-size: 1.05634em;
}
.liveblogscard .liveblogs-2x2-content {
  order: 3;
  flex: 0 1 45%;
  align-self: auto;
  color: #fff;
  padding: 0.3em 1.1em;
  font-size: 1em;
  /* iPad Pro */
}
@media (min-width: 992px) {
  .liveblogscard .liveblogs-2x2-content {
    font-size: 1.1em;
    overflow: auto;
  }
}
@media (min-width: 1700px) {
  .liveblogscard .liveblogs-2x2-content {
    overflow: auto;
  }
}
@media (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 1024px) and (max-width: 1024px) {
  .liveblogscard .liveblogs-2x2-content {
    overflow: auto;
    max-height: 678px !important;
  }
}
.liveblogscard .liveblogs-2x2-related {
  order: 4;
  flex: 0 1 15%;
  align-self: auto;
  color: #fff;
  padding: 0.3em 1.1em;
  font-size: 1em;
  bottom: 0;
}
@media (min-width: 992px) {
  .liveblogscard .liveblogs-2x2-related {
    font-size: 1.1em;
  }
}
@media (min-width: 1790px) {
  .liveblogscard .liveblogs-2x2-related {
    font-size: 1em;
  }
}
.liveblogscard .liveblogs-2x2-related a:hover {
  color: white;
}
.liveblogscard .liveblogs-2x2-image {
  order: 2;
  flex: 0 1 40%;
  align-self: auto;
  width: 100%;
  height: 10em;
  height: 30vmin;
  background-size: cover !important;
  background-position: center center;
  clear: both;
  margin-bottom: 0.8em;
  /* iPad Pro */
}
@media (min-width: 650px) {
  .liveblogscard .liveblogs-2x2-image {
    height: 15em;
    height: 30vmin;
  }
}
@media (min-width: 1790px) {
  .liveblogscard .liveblogs-2x2-image {
    height: 18em;
  }
}
@media (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 1024px) and (max-width: 1024px) {
  .liveblogscard .liveblogs-2x2-image {
    height: 8em;
  }
}
.liveblogscard .title {
  width: 100%;
  position: relative;
}
.liveblogscard .title .rss {
  position: absolute;
  right: 0.75em;
  top: 0.75em;
}

/* liveblogscard class end */
.pinned-html-card__main {
  background-color: white;
}
.pinned-html-card__main .pinned-html-card__body {
  padding: 10px 15px 10px 15px;
}

.socialmediacard {
  max-height: 4.9em;
}
.socialmediacard.social-card-open {
  height: 615px !important;
  max-height: 615px;
}
@media (min-width: 992px) {
  .socialmediacard.social-card-open {
    height: 830px !important;
    max-height: 830px;
  }
}
@media (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 1024px) and (max-width: 1024px) {
  .socialmediacard {
    height: 638px !important;
    max-height: 638px !important;
  }
}
.socialmediacard .embedded {
  background: #292F33 !important;
}
.socialmediacard .socialmediacard__container {
  /**** flex container ****/
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  align-content: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  /**** flex container ****/
  height: 3.8em;
}
@media (min-width: 992px) {
  .socialmediacard .socialmediacard__container {
    height: 4.56em;
  }
}
.socialmediacard .socialmediacard__container.isClosed {
  border-bottom: 0.4em solid #555555 !important;
}
.socialmediacard .socialmediacard__container.Tumblr {
  border-bottom: 0.4em solid #35465c;
}
.socialmediacard .socialmediacard__container.Facebook {
  border-bottom: 0.4em solid #3b5998;
}
.socialmediacard .socialmediacard__container.Twitter {
  border-bottom: 0.4em solid #4099FF;
}
.socialmediacard .socialmediacard__container.Instagram {
  border-bottom: 0.4em solid #E03566;
}
.socialmediacard .socialmediacard__header {
  /****** flexbox ******/
  order: 1;
  -webkit-order: 1;
  -ms-flex-order: 1;
  flex: 0 1 74%;
  -webkit-flex: 0 1 74%;
  -ms-flex: 0 1 74%;
  align-self: auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  /****** flexbox ******/
  width: 100%;
  text-align: left;
  /* remove the arrow glyph larger screens */
}
.socialmediacard .socialmediacard__header span.glyphicon:before {
  color: red;
  content: "";
  display: inline-block;
  font-size: 1em !important;
  line-height: 0;
  padding: 0.4em;
}
.socialmediacard .socialmediacard__header.isOpen span.glyphicon:before {
  transform: rotate(-180deg);
}
@media (min-width: 992px) {
  .socialmediacard .socialmediacard__header span.glyphicon:before {
    display: none;
  }
}
.socialmediacard .socialmediacard__header span.title {
  color: #fff;
  display: inline-block;
  font-size: 1.2em;
  min-width: 20px;
  padding: 1em 0 0 0 !important;
  text-align: left;
  margin-bottom: 0;
  width: auto;
  font-weight: bold;
  /* increase the card title text for larger screens */
}
@media (min-width: 992px) {
  .socialmediacard .socialmediacard__header span.title {
    font-size: 1.5em;
    padding: 1em 0 0 1em !important;
  }
}

ul#social-tabs {
  /****** flexbox ******/
  order: 2;
  -webkit-order: 2;
  -ms-flex-order: 2;
  flex: 0 1 88%;
  -webkit-flex: 0 1 88%;
  -ms-flex: 0 1 88%;
  align-self: auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  /****** flexbox ******/
  list-style-type: none;
  padding: 0.5em 0.4em 0 0;
  text-align: right;
  /* increase padding for larger screens */
}
@media (min-width: 992px) {
  ul#social-tabs {
    padding: 0.4em 1em 0 0;
  }
}
ul#social-tabs li {
  display: inline-block;
}
ul#social-tabs li a {
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  min-width: 2.5em;
  min-height: 2.5em;
  opacity: 0.3;
  -webkit-transition: all 0.21s ease-in-out;
  transition: all 0.21s ease-in-out;
  /* increase the social buttons for larger screens */
}
@media (min-width: 992px) {
  ul#social-tabs li a {
    min-width: 3.5em;
    min-height: 3.5em;
  }
}
ul#social-tabs li a.Tumblr {
  background-image: url("/sites/all/themes/custom/nasatwo/images/tumblr-logo-whiteonblue-512.png");
}
ul#social-tabs li a.Facebook {
  background-image: url("/sites/all/themes/custom/nasatwo/images/FB-f-Logo__blue_50.png");
}
ul#social-tabs li a.Twitter {
  background-image: url("/sites/all/themes/custom/nasatwo/images/Twitter_Logo_White_On_Blue.svg");
}
ul#social-tabs li a.Instagram {
  background-image: url("/sites/all/themes/custom/nasatwo/images/ig-logo.svg");
  background-color: #E03566;
  background-size: 90% !important;
  background-position-x: 46%;
  background-position-y: 54%;
  color: white;
  margin: 0 0 0 0;
}
ul#social-tabs li a:hover {
  opacity: 0.7;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
ul#social-tabs li.active a {
  opacity: 1;
}

.social-tab-content {
  background: #292F33;
  display: none;
  height: 100%;
  overflow: hidden;
  padding: 0px;
  position: relative;
  text-align: center;
  /* set the max width and center on larger screens */
}
.social-tab-content.isOpen {
  display: block !important;
}
@media (min-width: 992px) {
  .social-tab-content {
    max-width: 550px;
    margin: 0 auto;
  }
}
.social-tab-content #fb-root {
  max-width: 500px;
  display: inline-block;
  /* center the iframe for larger screens */
}
@media (min-width: 501px) {
  .social-tab-content #fb-root {
    display: inline-block;
  }
}
.social-tab-content .twitter-feed {
  border: none;
  font-size: 0;
  height: 100%;
  overlfow-y: auto;
  -webkit-overlfow-scrolling: touch;
  width: 100%;
}
.social-tab-content .instagram-feed {
  font-size: 0px;
  height: 100%;
  list-style: none;
  overflow-y: scroll;
  position: absolute;
  padding: 0 !important;
  text-indent: 0px;
  width: 100%;
}
.social-tab-content .instagram-feed li img {
  max-height: 100%;
  max-width: 100%;
}
.social-tab-content .tumblr-feed {
  color: white;
  background: #292F33;
  height: 100%;
  list-style: none;
  overflow-y: scroll;
  position: absolute;
  padding: 0 !important;
  width: 100%;
}
.social-tab-content .tumblr-feed h1 {
  font-size: 25px;
}
.social-tab-content .tumblr-feed h2 {
  font-size: 19px;
}
.social-tab-content .tumblr-feed li a {
  color: white;
}
.social-tab-content .tumblr-feed p {
  color: white;
  margin: 1em 0;
}

.solar-eclipse-banner {
  background-image: url("/sites/default/files/styles/card_page_banner/public/thumbnails/image/2016_solar_eclipse_copyright_ridwan_arifiandi_0.jpg");
}

#solar-eclipse {
  /** flex container **/
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  align-content: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  justify-content: space-between;
  /* target desktops */
}
@media (min-width: 992px) {
  #solar-eclipse {
    /** flex container **/
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    align-content: stretch;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    justify-content: space-between;
  }
}
#solar-eclipse #bgMap {
  background: url("/sites/all/themes/custom/nasatwo/images/usa_eclipse_map.jpg");
  width: auto;
  background-size: 100%;
  background-repeat: no-repeat;
}
#solar-eclipse .controls {
  display: flex;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 10px;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
}
#solar-eclipse .action {
  margin: 5px 0;
  padding: 10px 20px;
  text-align: left;
  background-color: #555555;
  color: #fff;
  width: 100%;
  flex-grow: 1;
}
#solar-eclipse .action.active, #solar-eclipse .action:hover {
  color: #fff;
  background: #488cc8;
  text-decoration: none;
  cursor: pointer;
}
#solar-eclipse .action:focus {
  text-decoration: none;
}
#solar-eclipse .action:first-child {
  margin-left: 0;
}
#solar-eclipse .action:last-child {
  margin-right: 0;
}
@media all and (min-width: 512px) {
  #solar-eclipse .action {
    flex: 1;
    margin: 5px 1%;
  }
}
@media all and (min-width: 768px) {
  #solar-eclipse .action {
    flex: 1;
  }
}
#solar-eclipse #live-feed-sidebar {
  /*** flexbox items ***/
  order: 2;
  -webkit-order: 2;
  -ms-flex-order: 2;
  align-self: auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  background: #292F33;
  color: white;
  /* targets the iPad Pro in portrait mode */
  /* targets desktops */
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-device-width : 1024px) and (max-device-width : 1024px) and (min-device-height : 1366px) and (max-device-height : 1366px) and (min-width: 1024px) and (max-width: 1024px) {
  #solar-eclipse #live-feed-sidebar {
    width: 250px;
  }
}
@media (min-width: 992px) {
  #solar-eclipse #live-feed-sidebar {
    width: 350px;
  }
}
#solar-eclipse #live-feed-sidebar .live-feed-social {
  /** flex container **/
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  align-content: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  border-bottom: 1px solid #303540;
  /* targets the iPad */
}
@media (min-width: 992px) {
  #solar-eclipse #live-feed-sidebar .live-feed-social {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #solar-eclipse #live-feed-sidebar .live-feed-social {
    display: none;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-device-width: 768px) and (max-device-width: 1024px) {
  #solar-eclipse #live-feed-sidebar .live-feed-social {
    display: none;
  }
}
#solar-eclipse #live-feed-sidebar .live-feed-heading {
  background-color: #303540;
  color: white;
  display: inline-block;
  font-weight: bold;
  padding: 1em 0.7em 1em 1em;
  /*** flexbox items ***/
  order: 1;
  -webkit-order: 1;
  -ms-flex-order: 1;
  align-self: auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  /*** flexbox basis shrink grow items ***/
  flex: 0 1 74%;
  -webkit-flex: 0 1 74%;
  -ms-flex: 0 1 74%;
}
#solar-eclipse #live-feed-sidebar .live-feed-follow {
  /*** flexbox items ***/
  order: 2;
  -webkit-order: 2;
  -ms-flex-order: 2;
  align-self: auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  /*** flexbox basis shrink grow items ***/
  flex: 0 1 65%;
  -webkit-flex: 0 1 65%;
  -ms-flex: 0 1 65%;
}
#solar-eclipse #live-feed-sidebar .live-feed-section {
  /** flex container **/
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  align-content: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  border-bottom: 0.11em solid white;
  padding-bottom: 0.5em;
}
#solar-eclipse #live-feed-sidebar .live-feed-header {
  background-color: #303540;
  color: white;
  display: inline-block;
  font-weight: bold;
  padding: 1em 0.7em 1em 1em;
  /*** flexbox items ***/
  order: 1;
  -webkit-order: 1;
  -ms-flex-order: 1;
  align-self: auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  /*** flexbox basis shrink grow items ***/
  flex: 0 1 90%;
  -webkit-flex: 0 1 90%;
  -ms-flex: 0 1 90%;
}
#solar-eclipse #live-feed-sidebar #live-feed-related {
  /** flex container **/
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  align-content: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
#solar-eclipse #live-feed-sidebar .live-feed-related-links {
  padding: 0.7em 0em 1em 2em;
}
#solar-eclipse #live-feed-sidebar .live-feed-related-links a {
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: bold;
  padding-bottom: 0.5em;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link {
  cursor: pointer;
  text-decoration: none;
  border-bottom: 0.11em solid white;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content {
  width: 100%;
  text-align: center;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content .player-wrapper {
  max-width: 757px;
  margin: 0 auto;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content iframe {
  border: none;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content .vjs-control-bar {
  top: inherit;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content video {
  display: none;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content .loaded video {
  display: inherit;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content .video-js {
  max-height: 427px;
  min-width: 280px;
  display: none;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content .video-js:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content .loaded .video-js {
  display: inherit;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content .empty-player {
  min-width: 300px;
  width: 100%;
  display: inline-block;
  position: relative;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content .empty-player:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content .darkloadingspin {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link #mobile-player-content .nasa-mobilerider-player-dimensions {
  width: inherit;
  height: inherit;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-link {
  color: white;
  padding: 0.5em;
  border-bottom: 0.11em solid white;
}
@media (min-width: 992px) {
  #solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-link {
    padding: 0.7em;
  }
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-link.active {
  background: #5d7fb9;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-link:hover, #solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-link:focus {
  background: #5d7fb9;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-link.stream-inactive {
  cursor: not-allowed;
  font-weight: bold;
  background: #808080;
  position: relative;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-link.stream-inactive:before {
  content: attr(tooltip) "Inactive Stream";
  display: none;
  left: 0;
  padding: 20px 0;
  position: absolute;
  text-align: center;
  top: 0;
  white-space: nowrap;
  z-index: 99;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-link.stream-inactive:hover:before {
  background: #111;
  background: rgba(0, 0, 0, 0.7);
  border: solid;
  border-color: #111 transparent;
  border-color: rgba(0, 0, 0, 0.7) transparent;
  display: block;
  height: 100%;
  width: 100%;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-container {
  margin-bottom: 0.5em;
  /** flex container **/
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  align-content: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-left {
  color: white;
  /*** flexbox items ***/
  order: 1;
  -webkit-order: 1;
  -ms-flex-order: 1;
  align-self: auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  /*** flexbox basis shrink grow items ***/
  flex: 0 1 75%;
  -webkit-flex: 0 1 75%;
  -ms-flex: 0 1 75%;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-left .stream-title {
  font-weight: bold;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-left .stream-location {
  padding-left: 1em;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-right {
  display: inline-block;
  /*** flexbox items ***/
  order: 2;
  -webkit-order: 2;
  -ms-flex-order: 2;
  align-self: auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  /*** flexbox basis shrink grow items ***/
  flex: 0 1 65%;
  -webkit-flex: 0 1 65%;
  -ms-flex: 0 1 65%;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-right .stream-status .stream-watch-now span.glyphicon {
  top: 0.27em;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-right .stream-status .stream-watch-now span.glyphicon:before {
  color: red;
  content: "";
  display: inline-block;
  font-size: 1em !important;
  line-height: 0;
  padding: 0.4em;
  transform: rotate(90deg);
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-right .stream-status .stream-watch-now label {
  cursor: pointer;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-right .stream-status .stream-watching span.glyphicon {
  top: 0.15em;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-right .stream-status .stream-watching span.glyphicon:before {
  color: red;
  content: "";
  display: inline-block;
  font-size: 1em !important;
  line-height: 0;
  padding: 0.3em;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-right .stream-status .stream-inactive {
  cursor: not-allowed;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-right .stream-status .stream-inactive span.glyphicon {
  top: 0.15em;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-right .stream-status .stream-inactive span.glyphicon:before {
  color: red;
  display: inline-block;
  font-size: 1em !important;
  line-height: 0;
  padding: 0.3em;
}
#solar-eclipse #live-feed-sidebar .solar-eclipse-event-link .stream-right .stream-status .stream-inactive label {
  cursor: not-allowed;
}
#solar-eclipse #newcontent {
  padding-left: 0.5em;
  /*** flexbox items ***/
  order: 1;
  -webkit-order: 1;
  -ms-flex-order: 1;
  align-self: auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
}
@media (min-width: 992px) {
  #solar-eclipse #newcontent {
    /*** flexbox items ***/
    order: 2;
    -webkit-order: 2;
    -ms-flex-order: 2;
    align-self: auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    width: 1366px;
  }
}
#solar-eclipse #newcontent .solar-eclipse-title {
  max-height: 40px;
  overflow: hidden;
  margin-bottom: 0.3em;
}
#solar-eclipse #newcontent .solar-eclipse-title a {
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 0.5em;
  overflow: hidden;
  background: #5d7fb9;
  -webkit-font-smoothing: antialiased;
  top: 0;
  font-size: 2em;
}
#solar-eclipse #newcontent .solar-eclipse-title .solar-eclipse-time {
  float: right;
  text-align: center;
  color: #fff;
  z-index: 1;
  padding-left: 5px;
  padding-right: 5px;
  overflow: hidden;
  background: #5d7fb9;
  -webkit-font-smoothing: antialiased;
  top: 0;
  font-size: 2em;
}
#solar-eclipse #newcontent a.streamlive-banner {
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  height: 25px;
  left: 0;
  margin: 0px 0px 0.3% 0px;
  padding-top: 2px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 6;
}
#solar-eclipse #newcontent a.streamlive-banner2 {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 6;
}
#solar-eclipse #newcontent #stream-player {
  padding-bottom: 57%;
  position: relative;
  display: block;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  #solar-eclipse #newcontent #desktop-player-content.nasatvcard {
    padding-bottom: 0.5em;
  }
}
@media (min-width: 992px) {
  #solar-eclipse #newcontent #desktop-player-content.nasatvcard {
    height: 653px !important;
    padding-bottom: 0.5em;
  }
  #solar-eclipse #newcontent .nasatvcard .player-wrapper {
    max-height: 565px;
    max-width: 1366px !important;
  }
  #solar-eclipse #newcontent .nasatvcard .vjs-control-bar {
    top: unset !important;
  }
  #solar-eclipse #newcontent .nasatvcard .video-js {
    max-height: 612px;
  }
}

.mobile-player-content .stream-eclipse-live-link {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 6;
}
.mobile-player-content .stream-eclipse-mobile {
  padding-bottom: 57%;
  position: relative;
  display: block;
  width: 100%;
}

#solarMap {
  max-width: 100%;
  height: auto;
}

.best-activity__body {
  background-color: #fff;
  padding-left: 2.2em;
  padding-right: 2.2em;
  padding-bottom: 2.2em;
}

.best-activity {
  min-height: 600px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media all and (min-width: 768px) {
  .best-activity {
    flex-direction: row;
  }
}
.best-activity .best-activity__sidebar {
  color: #fff;
  background-color: #252931;
  margin-right: 15px;
  width: 255px;
}
@media all and (min-width: 768px) {
  .best-activity .best-activity__sidebar {
    display: block;
  }
}
.best-activity ul {
  padding-left: 10px;
  max-height: 190px;
}
.best-activity label {
  font-weight: normal;
  cursor: pointer;
  transition: font-weight 0.5s;
}
.best-activity label:hover {
  font-weight: bold;
}
.best-activity section .header > .heading {
  background-color: #303540;
  padding: 10px;
  display: inline-block;
}
.best-activity .heading {
  font-weight: bold;
}
.best-activity .filters {
  margin-top: 10px;
  border-bottom: 1px solid #727272;
}
.best-activity .subheader {
  padding: 10px;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
  border-top: 1px solid #727272;
}

.best-activity__back {
  padding: 0.65em 2em;
  color: #fff;
  border: 1px solid #999;
  background-color: #9CA299;
  text-decoration: none;
  font-family: inherit;
  font-weight: bold;
  width: 100%;
}

.best-activity__vocab {
  padding-left: 10px;
  max-height: unset !important;
  text-transform: capitalize;
}

.best-activity__lists {
  padding-left: 10px;
  max-height: unset !important;
  text-transform: capitalize;
}

.best-activity__content {
  background-color: #F7F7F7;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .best-activity__content {
    background-color: black;
    padding-left: 0;
    padding-right: 0;
  }
}

.best-activity__content--form {
  background-color: #fff;
}

.best-activity__content--header {
  background-color: #F7F7F7;
  margin-bottom: 1em;
  max-height: 7em;
  padding: 1em 1em 0.5em 2em;
}

.best-activity__menu {
  padding-left: 10px;
  column-count: 2;
}
@media all and (min-width: 768px) {
  .best-activity__menu {
    position: -webkit-sticky;
    position: sticky;
    column-count: unset;
    max-height: unset !important;
  }
}

.best-activity__list--item {
  color: white;
  cursor: pointer;
  list-style: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-y: overlay;
}
.best-activity__list--item a {
  color: white;
}
@media all and (min-width: 768px) {
  .best-activity__list--item {
    position: -webkit-sticky;
    position: sticky;
    white-space: unset;
    text-overflow: unset;
    overflow-y: unset;
    max-height: unset !important;
  }
}

.best-activity__list--item a.active {
  background-color: #5d7fb9;
  font-weight: bold;
}

.best-activity__menu--wrapper {
  top: -150px;
  position: -webkit-sticky;
  position: sticky;
}

.best-activity__header--anchor {
  margin-top: -100px;
  padding-top: 250px;
  padding-bottom: 25px;
}
@media all and (min-width: 768px) {
  .best-activity__header--anchor {
    padding-top: 50px;
    margin-top: unset;
  }
}

.best-activity__header--anchor.isOpen {
  margin-top: unset;
  padding-top: unset;
}

.best-activity__test {
  position: -webkit-sticky;
  position: sticky;
}

.best-activity__floating--menu {
  cursor: pointer;
  top: 85px;
  background-color: #555555;
  width: 100%;
  height: 3.5em;
  padding-top: 0.4em;
  z-index: 999;
}
.best-activity__floating--menu.isTop {
  position: static;
}
.best-activity__floating--menu.isMoving {
  position: fixed;
}
.best-activity__floating--menu.isOpen {
  height: unset;
}
.best-activity__floating--menu .best-activity__floating--title {
  font-weight: bold;
  font-size: x-large;
  padding-left: 15px;
  padding-bottom: 15px;
}
.best-activity__floating--menu .best-activity__floating--title span.glyphicon {
  float: right;
  padding-right: 0.8em;
  padding-top: 0.25em;
}
.best-activity__floating--menu .best-activity__floating--title span.glyphicon:after {
  color: #fff;
  content: "";
  font-size: 1em;
}
.best-activity__floating--menu .best-activity__floating--span {
  color: white;
}

.best-activity__floating--title.isOpen span.glyphicon:after {
  color: red;
  display: inline-block;
  transform: rotate(180deg);
}

.best-activity__list--item + .tooltip {
  min-width: 200px;
}

.best-activity__list--item + .tooltip > .tooltip-inner {
  background-color: #cccccc;
  font-weight: bold;
  color: black;
}

.best-activity__list--item + .tooltip > .tooltip-arrow {
  border-right-color: #cccccc;
}

#best-education-search {
  display: flex;
}

#best-education-search > * {
  flex: 1 100%;
}

.search-education-body {
  background: #fff;
  color: #000;
  flex: 4 0px;
  order: 2;
  -webkit-order: 2;
}

#sidebar {
  background: #292F33;
  color: white;
  padding-right: 2em;
  max-width: 400px;
  order: 1;
}
#sidebar .heading {
  background-color: #303540;
  color: white;
  display: inline-block;
  font-weight: bold;
  padding: 1em 0.7em 1em 1em;
  order: 1;
  -webkit-order: 1;
  -ms-flex-order: 1;
  align-self: auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  flex: 0 1 74%;
  -webkit-flex: 0 1 74%;
  -ms-flex: 0 1 74%;
}

.information {
  color: white;
  font-size: 22px;
}

.poly:hover > .tile {
  stroke-width: 3px;
  stroke: white;
}

.poly > .tile.freeze {
  stroke: #dedede;
  stroke-width: 1px;
}

g.poly:hover > .tile.freeze {
  stroke: #dedede;
  stroke-width: 2px;
  filter: none;
  transform: rotate(0deg);
}

.best-search-form__search-wrapper {
  display: flex;
  flex-wrap: nowrap;
  height: 3em;
}

.best-search-form__input {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  align-content: space-between;
  padding-bottom: 20px;
}

.best-search-form__input > * {
  padding-left: 5px;
  padding-right: 5px;
}

.best-search-form__input input {
  background: url(/sites/all/themes/custom/nasatwo/images/search-grey.png) 0.25em 0.1em no-repeat;
  background-color: #fff;
  border: 1px solid #9C9C9C;
  color: #63717f;
  font-style: italic;
  padding-left: 4em;
  min-width: 12em;
  width: 18em;
}

.best-search-form__input button {
  background: #428BCA;
  color: #fff;
  border: none;
  padding: 0 1.5em;
}

.best-search-form .advanced-search__form {
  display: relative;
  justify-content: space-between;
  align-items: center;
  padding-top: 1em;
}
@media all and (min-width: 768px) {
  .best-search-form .advanced-search__form {
    display: flex;
  }
}
@media all and (min-width: 768px) {
  .best-search-form .best-search-form__input {
    padding-bottom: inherit;
  }
}

.best-search__hexSvg {
  width: 100%;
  height: auto;
}

.best-search__svg--wrapper {
  margin: 0.2em;
  min-height: 300vh;
  height: auto;
}
@media all and (min-width: 768px) {
  .best-search__svg--wrapper {
    min-height: 100vh;
  }
}

.best-search__svg--tile {
  transform-origin: 76px 76px;
  transition: all 200ms ease-out;
}

.best-search__svg--tile-active {
  filter: url(#dropshadow);
  cursor: pointer;
}

.best-search__svg--tile-text {
  text-anchor: middle;
  font-weight: 700;
  cursor: pointer;
}

.best-search__svg--info-container {
  transition: all 400ms ease-out;
}

.best-search__svg--info-container.active {
  transform-origin: 0px 0px;
}

.best-search__grid--toggle {
  color: #fff;
  border: 1px solid #999;
  background-color: #9CA299;
  text-decoration: none;
  font-family: inherit;
  font-weight: bold;
  opacity: 0;
  float: right;
}

.best-search-form__button {
  padding: 0.65em 2em;
  color: #fff;
  border: 1px solid #999;
  background-color: #9CA299;
  text-decoration: none;
  font-family: inherit;
  font-weight: bold;
  width: 100%;
}

.best-search__hide--tile {
  display: none;
}

.best-education__filter-count {
  color: #ababab;
  padding-left: 4px;
  font-size: 12px;
}

.best-search-panel {
  position: relative;
  background-color: #000;
  display: flex;
  justify-content: space-around;
}
@media all and (min-width: 768px) {
  .best-search-panel {
    position: relative;
  }
}
.best-search-panel .best-search__sidebar {
  color: #fff;
  background-color: #252931;
  margin-right: 15px;
  width: 300px;
}
.best-search-panel .best-search__content {
  background-color: #fff;
  width: 100%;
}
.best-search-panel ul {
  padding-left: 10px;
  overflow-y: auto;
}
.best-search-panel li.best-education__filter {
  list-style: none;
}
.best-search-panel label {
  font-weight: normal;
}
.best-search-panel section .header > .heading {
  background-color: #303540;
  padding: 10px;
  display: inline-block;
}
.best-search-panel .heading {
  font-weight: bold;
}
.best-search-panel .filters {
  margin-top: 10px;
  border-bottom: 1px solid #727272;
  overflow-y: auto;
  max-height: 50em;
}
.best-search-panel .filters::-webkit-scrollbar-track {
  border: 1px solid #000;
  padding: 2px 0;
  background-color: #404040;
}
.best-search-panel .filters::-webkit-scrollbar {
  width: 10px;
}
.best-search-panel .filters::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #737272;
  border: 1px solid #000;
}
.best-search-panel .subheader {
  padding: 10px;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
  border-top: 1px solid #727272;
}

.education-item {
  background: #fff;
}

.education-item__header {
  background: #000;
}
.education-item__header #landing-page-banner {
  background-color: #000;
  background-image: url("/sites/default/files/styles/card_page_banner/public/thumbnails/image/stem-v5.40.png");
}

.education-item__backlink {
  padding-top: 1em;
  padding-left: 2em;
  padding-right: 2em;
  font-weight: bold;
  height: 150px;
}
@media (min-width: 768px) {
  .education-item__backlink {
    height: 100px;
  }
}
.education-item__backlink .addthis-wrap {
  display: flex;
  justify-content: center;
  margin: 2em;
}
@media (min-width: 768px) {
  .education-item__backlink .addthis-wrap {
    display: inline;
    float: right;
    width: 200px;
    margin: 0em;
  }
}

.education-item__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .education-item__body {
    margin: 0 10em;
    flex-direction: row;
  }
}

.education-item__sharethis {
  text-align: center;
}

.education-item__image-wrap {
  object-fit: contain;
  max-width: 320px;
  box-shadow: 0 10px 5px -5px #333;
}
@media (min-width: 768px) {
  .education-item__image-wrap {
    align-self: start;
    margin: 1.4em 2em 2em 2em;
  }
}
.education-item__image-wrap img {
  width: 100%;
}

.education-item__image-mobile {
  width: 100%;
}

.education-item__title--bar {
  margin: 1em 0;
}

.education-item__info {
  font-size: 1em;
  padding-top: 1em;
}
.education-item__info ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.education-item__info p:not(:last-of-type):after {
  content: ",";
}
.education-item__info h4, .education-item__info p {
  display: inline;
}

.education-item__content {
  flex: 1 1 auto;
  padding: 0em 2em 2em 2em;
  /* style to look the same as ubernode headers */
}
.education-item__content h1 {
  font-size: 2.2em;
  font-weight: 600;
}
.education-item__content p {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 1.1em;
  line-height: 1.4em;
  padding-left: 0.2em;
  text-shadow: #fff 0px 1px 1px;
}
.education-item__content h4 {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: bold;
  font-size: 1.2em;
}
@media (min-width: 768px) {
  .education-item__content {
    flex: 1 1 50%;
  }
}

.education-search__banner {
  background-color: #000;
  background-image: url("/sites/default/files/styles/card_page_banner/public/thumbnails/image/stem-v5.40.png");
}

.education-search__reset--btn {
  background: #5d7fb9;
  color: #fff;
  border: 1px solid #5d7fb9;
  cursor: pointer;
  padding: 0.3em 1.5em;
  font-weight: bold;
}
.education-search__reset--btn:hover, .education-search__reset--btn:focus {
  background: #44669f;
}

.education-search__form--body {
  min-height: 20em;
  padding: 0 1em 1em;
}
.education-search__form--body h3 {
  margin-top: 0;
}

/* This is being used to hide the selected number on the top pagination bar  when the search autocomplete window comes into view. */
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 0 !important;
}

.education-search__panel--wrapper {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media all and (min-width: 768px) {
  .education-search__panel--wrapper {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.education-search-filter {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  -webkit-flex: 0 1 22%;
  -ms-flex: 0 1 22%;
  flex: 0 1 22%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  min-width: 20em;
}
.education-search-filter h3 {
  font-weight: 500;
}

.education-search__form--results {
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
}
@media all and (min-width: 768px) {
  .education-search__form--results {
    margin: 0.1em 0 0 0.3em;
    flex-direction: row;
    align-items: center;
  }
}
.education-search__form--results .search-results-summary {
  padding-bottom: 1em;
  border-bottom: 1px solid #999;
  margin-top: 1em;
  text-align: center;
}
@media all and (min-width: 768px) {
  .education-search__form--results .search-results-summary {
    margin-top: 0em;
    text-align: left;
  }
}

.education-search__loading {
  color: #777777;
  font-size: 1.4em;
  margin-top: 0.5em;
  margin-left: 0.5em;
}
.education-search__loading .glyphicon {
  color: #777777;
}
.education-search__loading .glyphicon-refresh-animate {
  -animation: spin 0.8s infinite linear;
  -webkit-animation: spin-webkit 0.8s infinite linear;
}
@keyframes spin {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes spin-webkit {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

.education-search__arrow {
  background: none;
  border: transparent;
  color: #000;
  font-size: 1.5em;
  margin: 0;
  padding: 0;
  height: auto;
  min-width: 1.3em;
}

.listing-page__header {
  padding: 20px;
}

.education-search__page {
  min-width: 320px;
  margin: 0px;
  padding: 0px;
}

.education-search .pager li {
  padding: 0.1em;
}
@media all and (min-width: 430px) {
  .education-search .pager li {
    padding: 0.5em;
  }
}
.education-search .pager li > a,
.education-search .pager li > span {
  border-radius: 0;
}
.education-search .education-search__pager {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.education-search input[type=checkbox] {
  margin: 0;
  vertical-align: middle;
}

.education-search button.education-search__filter-toggle {
  transition-duration: 0.3s;
}
.education-search button.education-search__filter-toggle:after {
  content: "►";
  font-size: 1em;
  display: inline-block;
  margin-left: 2em;
  color: #fff;
  transform: rotate(-90deg);
}
.education-search button.education-search__filter-toggle.open:after {
  transform: rotate(90deg);
}
.education-search button.education-search__filter-accessibility {
  background: none;
  border: transparent;
  color: #000;
  display: inherit;
  overflow: hidden;
  padding: 0;
  height: 0px;
  width: 0px;
}
.education-search button.education-search__filter-accessibility:focus {
  height: auto;
  width: auto;
  padding: 0.5em 1.5em;
}
.education-search button.education-search__search-button {
  background: #428BCA;
  color: #fff;
  border: none;
}

.education-search-category__group {
  display: flex;
  flex-direction: column;
}

.education-search__category--list {
  display: flex;
  flex-flow: row wrap;
  padding-left: 1em;
}

.education-search__categories {
  display: flex;
  flex-flow: column nowrap;
  padding-top: 1.5em;
}

.education-search__category {
  flex: 1 auto;
  list-style: none;
  padding-left: 0;
}
.education-search__category .child {
  padding-left: 1.5em;
}
.education-search__category h3 {
  padding-left: 1em;
}
.education-search__category ul {
  padding-left: 0em;
}

.education-search__form {
  background-color: #fff;
}
.education-search__form .submenu-topics {
  display: inline-block;
}

.education-search-form__input {
  display: flex;
  padding-bottom: 2em;
}
.education-search-form__input input {
  background: url("/sites/all/themes/custom/nasatwo/images/search-grey.png") 0.25em 0.1em no-repeat;
  background-color: #fff;
  border: 1px solid #9C9C9C;
  color: #63717f;
  font-style: italic;
  height: 3em;
  padding-left: 4em;
  min-width: 12em;
  width: 25em;
}

.education-search__result {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 2em 0;
  padding-bottom: 2em;
  border-bottom: 1px solid #999;
}
@media all and (min-width: 768px) {
  .education-search__result {
    display: flex;
    float: none;
  }
}
.education-search__result h2 {
  margin-top: 0;
}
.education-search__result h4 {
  margin: 0 0 0.6em 0;
  font-size: 1.5em;
  line-height: 1.2;
}
.education-search__result cite {
  font-size: 1.1em;
}
.education-search__result--img {
  margin-right: 2em;
  float: left;
}
.education-search__result--img img {
  border: 1px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16), 0 6px 6px rgba(0, 0, 0, 0.2);
  width: 150px;
}
/* term labels */
.education-search .term {
  font-weight: normal;
  padding: 0;
  flex: 2;
  font-size: 1em;
}

.education-search .parent-term {
  font-weight: bold;
  padding: 0;
  flex: 2;
  font-size: 1.2em;
}

.education-search__term {
  display: flex;
  flex-flow: column nowrap;
}
.education-search__term-block {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  min-width: 18em;
  max-height: 1.5em;
}

.education-search__term--input {
  margin: 0;
  vertical-align: middle;
}

.education-search__term--child {
  padding-left: 1.3em;
}

.education-search__term-block > * {
  margin: 0 0 0 0.4em;
}
@media all and (min-width: 768px) {
  .education-search__term-block > * {
    margin: 0.1em 0 0 0.3em;
  }
}

.education-search__datepicker--container {
  border: 0;
  margin-top: 0.5em;
  margin-left: 2.2em;
}

.education-search__datepicker {
  padding-left: 4px;
  background: url("/sites/default/themes/NASAPortal/images/calendar_icon.png") 99% 50% no-repeat;
  max-width: 8.5em;
}

.education-search__hide {
  display: none;
}

.education-search__loading {
  color: #777777;
  font-size: 1.4em;
  margin-top: 0.5em;
  margin-left: 0.5em;
}
.education-search__loading .glyphicon {
  color: #777777;
}
.education-search__loading .glyphicon-refresh-animate {
  -animation: spin 0.8s infinite linear;
  -webkit-animation: spin-webkit 0.8s infinite linear;
}
@keyframes spin {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes spin-webkit {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

.education-search-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2em 0;
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (min-width: 768px) {
  .education-search-header {
    padding: 2em;
  }
}
.education-search-header h2, .education-search-header .education-search-quick-tag-select {
  margin: 2rem 0 2rem;
}
.education-search-header--no-break {
  white-space: nowrap;
}
.education-search-header .search-input {
  width: 100%;
  max-width: 50em;
}
.education-search-header a {
  cursor: pointer;
}
.education-search-header .autocomplete-input {
  width: 100%;
}
.education-search-header .autocomplete-input input {
  width: 100%;
}
.education-search-header .autocomplete-results {
  background-color: #fff;
  border: 1px solid #9C9C9C;
  border-top: none;
  list-style-type: none;
  padding: 10px;
  width: 100%;
  max-width: 50em;
  color: #63717f;
  position: absolute;
}
.education-search-header .autocomplete-results .highlight {
  color: black;
  background-color: #D3D3D3;
}
.education-search-header .autocomplete-result-item:hover {
  color: black;
  background-color: #D3D3D3;
  cursor: pointer;
}
.education-search-header button[name=reset] {
  background: none;
  color: black;
  font-weight: normal;
  border-color: transparent;
}
@media (min-width: 768px) {
  .education-search-header button[name=reset] {
    margin-right: -5em;
  }
}
.education-search-header button[name=reset]:hover, .education-search-header button[name=reset]:focus {
  background: #777777;
  color: white;
}

.education-search-header-quick-tag-select {
  font-weight: 400;
  margin: 0.25em 0;
  text-align: center;
}
.education-search-header-quick-tag-select__header {
  font-size: 1em;
}
.education-search-header-quick-tag-select__dropdown {
  display: inline;
}
.education-search-header-quick-tag-select__button {
  background: transparent;
  border: none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  height: 2.8em;
  margin-top: -3px;
  outline: none;
  padding: 0 0.6em;
}
.education-search-header-quick-tag-select__button:after {
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  border-top: 0.3em solid;
  content: "";
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
}
.education-search-header-quick-tag-select__button a {
  color: #333333;
  text-decoration: none;
}
.education-search-header-quick-tag-select .active__button--students {
  background: #5a5a5a;
  color: #fff;
}
.education-search-header-quick-tag-select .active__button--educators {
  background: #404040;
  color: #fff;
}
.education-search-header-quick-tag-select .active__anchor {
  background: none;
  color: #fff !important;
}
.education-search-header-quick-tag-select__categories {
  color: #fff;
  left: 0;
  margin-top: -5px;
  padding: 2.2em;
  position: absolute;
  right: 0;
  width: auto;
  z-index: 3;
}
.education-search-header-quick-tag-select .active__educators {
  background: #404040;
}
.education-search-header-quick-tag-select .active__students {
  background: #5a5a5a;
}
@media screen and (min-width: 576px) {
  .education-search-header-quick-tag-select {
    width: 60%;
  }
  .education-search-header-quick-tag-select__break {
    display: none;
  }
  .education-search-header-quick-tag-select__categories {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 652px) {
  .education-search-header-quick-tag-select__categories {
    margin: 0 auto;
    top: auto;
    width: 75%;
  }
}

.education-item .education-search-header-quick-tag-select {
  margin-top: 1em;
}
.education-item .education-search-header-quick-tag-select__categories {
  margin-top: 0;
  top: auto;
}
.education-item .education-search-header-quick-tag-select__header {
  font-size: 1.2em;
}

.education-search-header-category {
  display: flex;
  flex-flow: column nowrap;
  padding: 0 2em;
  text-align: left;
  /* Hide all checkboxes */
}
.education-search-header-category.topic-search {
  margin-top: 0.5rem;
}
.education-search-header-category .topic-search__label {
  color: #e3e3e3;
  font-size: 1.1em !important;
}
.education-search-header-category .topic-search__label:hover {
  cursor: pointer;
  text-decoration: underline;
}
.education-search-header-category__title {
  display: flex;
  font-size: 1em;
}
.education-search-header-category .parent-term {
  flex-grow: 1;
  font-size: 1em;
  font-weight: normal;
  margin: 0;
  padding: 2px 0 10px;
}
.education-search-header-category__arrow {
  background: none;
  border: transparent;
  color: #fff;
  display: inherit;
  font-size: 1.2em;
  height: auto;
  margin: 0;
  min-width: 1.5em;
  outline: none;
  padding: 0;
}
.education-search-header-category__arrow.subTerm {
  margin-top: 0.3em;
}
.education-search-header-category__arrow:before {
  content: ">";
  margin-right: 0.5em;
  transition-duration: 0.2s;
}
.education-search-header-category .open:before {
  transform: rotate(90deg);
}
.education-search-header-category input[type=checkbox] {
  display: none;
}
.education-search-header-category__list {
  background: inherit;
  border-left: none;
  display: flex;
  flex-flow: column nowrap;
  padding: 0;
}
.education-search-header-category__child {
  background-color: #15418c;
  padding: 0;
  border-left: 1em solid #5d7fb9;
  margin: 1em -0.5em -0.5em -0.5em;
}
@media screen and (min-width: 576px) {
  .education-search-header-category {
    width: 50%;
  }
  .education-search-header-category__arrow, .education-search-header-category__arrow:before {
    display: none;
  }
  .education-search-header-category.topic-search {
    width: 100% !important;
  }
}
@media screen and (min-width: 992px) {
  .education-search-header-category {
    width: 25%;
  }
}

.education-search-header-term {
  flex-flow: column nowrap;
  list-style: none;
  margin-bottom: 10px;
  padding: 0;
}
.education-search-header-term__block {
  align-items: start;
  color: #cccccc;
  display: flex;
  flex-flow: row nowrap;
  line-height: 1;
}
.education-search-header-term__block > input[type=checkbox] {
  min-width: 16px;
  height: 16px;
}
.education-search-header-term__block > * {
  margin: 0 0 0 0.4em;
}
@media all and (min-width: 768px) {
  .education-search-header-term__block > * {
    margin: 0.1em 0 0 0.3em;
  }
}
.education-search-header-term label {
  cursor: pointer;
  font-size: 1em;
  font-weight: normal;
}
.education-search-header-term label:hover {
  color: #fff;
  text-decoration: underline;
}
.education-search-header-term__child {
  padding-left: 1.2em;
}
.education-search-header-term__arrow {
  background: none;
  border: transparent;
  color: #000;
  display: none;
  font-size: 1.2em;
  margin: 0;
  padding: 0;
  height: auto;
  min-width: 1.5em;
}
.education-search-header-term__arrow.children:before {
  content: "►";
  margin-right: 0.5em;
  transition-duration: 0.2s;
}
.education-search-header-term__arrow.children.open:before {
  transform: rotate(90deg);
}
@media all and (min-width: 768px) {
  .education-search-header-term__arrow {
    font-size: 1.2em;
    width: 1em;
  }
}

@media (max-width: 767px) {
  .education-search-header-term__block > input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .education-search-header-term__block > * {
    padding: 5px 0px;
  }
}
.education-lp__addthis {
  margin-top: 2em;
  margin-bottom: -2.5em;
  text-align: right;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .education-lp__addthis {
    margin-top: 1em;
    margin-bottom: 1em;
    float: right;
    text-align: center;
  }
}
.education-lp__addthis .addthis-bar label {
  margin-top: 0.6em;
}
.education-lp__addthis .addthis-bar > div {
  float: right;
  margin-left: 1em;
  position: relative;
  top: -0.5em;
}
.education-lp__addthis--mobile {
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}
.education-lp__body {
  background: white;
}
.education-lp__body .education-search-header {
  background: #ededed;
  padding: 0 1.5em 1.5em;
}
.education-lp__section--hero {
  background-color: #5075B4;
  color: white;
}
.education-lp__section--hero h1 {
  font-weight: bold;
  padding-left: 4.8%;
  padding-top: 0.2em;
  font-size: 1.8em;
}
.education-lp__section--sliders {
  margin: 0 auto;
  max-width: 90%;
}
.education-lp__section--sliders h2 {
  margin: 2em 0 1em 0;
}
.education-lp__section .swiper-wrapper {
  padding: 2em 0 2.5em 0;
}
@media screen and (min-width: 768px) {
  .education-lp__section .swiper-wrapper img {
    height: 210px;
  }
}
.education-lp__section .swiper-wrapper .node-thumb__container--desktop {
  width: 210px;
  transition: 0.3s ease-in-out;
}
.education-lp__section .swiper-wrapper .node-thumb__container--desktop:hover, .education-lp__section .swiper-wrapper .node-thumb__container--desktop:focus {
  -ms-transform: scale(1.2);
  z-index: 1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.6);
}
.education-lp__section .swiper-wrapper .node-thumb__container--desktop:hover, .education-lp__section .swiper-wrapper .node-thumb__container--desktop:focus-within {
  transform: scale(1.2, 1.2);
  z-index: 1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.6);
}
.education-lp__hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 0.22em solid #333333;
}
.education-lp__section {
  margin: auto;
  padding-bottom: 1em;
}
.education-lp__section--h4 {
  font-size: 1.5em;
  font-weight: bold;
}
.education-lp__see-all {
  font-size: 0.67em;
  margin-left: 2em;
  font-weight: normal;
}
.education-lp .submenu-topics {
  display: inline-block;
}

/*
 * Swiper css overrides
 */
.swiper-wrapper .swiper-slide {
  color: #fff;
  text-align: center;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  color: #000;
}

.swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2218%22%20height%3D%2232%22%20viewBox%3D%220%200%2018%2032%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M3.237%2017.237v-2.474l14%2014c.684.683.684%201.79%200%202.474-.683.684-1.79.684-2.474%200l-14-14c-.684-.683-.684-1.79%200-2.474l14-14c.683-.684%201.79-.684%202.474%200%20.684.683.684%201.79%200%202.474l-14%2014z%22%20fill-rule%3D%22nonzero%22%20fill%3D%22%23EFF1F1%22%2F%3E%3C%2Fsvg%3E");
  left: 0;
}
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 1;
}

.swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2218%22%20height%3D%2232%22%20viewBox%3D%220%200%2018%2032%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14.763%2017.237v-2.474l-14%2014c-.684.683-.684%201.79%200%202.474.683.684%201.79.684%202.474%200l14-14c.684-.683.684-1.79%200-2.474l-14-14C2.554.08%201.447.08.763.763c-.684.683-.684%201.79%200%202.474l14%2014z%22%20fill-rule%3D%22nonzero%22%20fill%3D%22%23EFF1F1%22%2F%3E%3C%2Fsvg%3E");
  right: 0;
}
.swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 1;
}

.swiper-button-prev, .swiper-button-next {
  width: 3em;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.3);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1.5em;
  height: 25%;
  color: transparent;
  border: 0 none;
  position: absolute;
  z-index: 1;
  top: 40%;
  outline: 0 none;
  opacity: 1;
  border-radius: 0;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}

.education-lp__hero--swiper .swiper-button-next {
  background-color: transparent !important;
}

.education-lp__hero--swiper .swiper-button-prev {
  background-color: transparent !important;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  display: none;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.education-search-category {
  display: flex;
  flex-flow: column nowrap;
}
.education-search-category__list {
  display: flex;
  flex-flow: column nowrap;
  padding-left: 1em;
}
.education-search-category__title {
  display: flex;
}
.education-search-category__title label {
  font-size: 1.2em;
}
.education-search-category__arrow {
  background: none;
  border: transparent;
  color: #000;
  display: inherit;
  font-size: 1.2em;
  margin: 0;
  padding: 0;
  height: auto;
  min-width: 1.5em;
}
.education-search-category__arrow.children:before {
  content: "►";
  margin-right: 0.5em;
  transition-duration: 0.2s;
}
.education-search-category__arrow.children.open:before {
  transform: rotate(90deg);
}
.education-search-category__arrow.subTerm {
  margin-top: 0.3em;
}
@media all and (min-width: 768px) {
  .education-search-category__arrow {
    font-size: 1.2em;
    width: 1em;
  }
}

.education-search-term {
  flex-flow: column nowrap;
  list-style: none;
}
.education-search-term label {
  font-size: 1.2em;
}
.education-search-term__child {
  padding-left: 1.2em;
}
.education-search-term__block {
  align-items: start;
  display: flex;
  flex-flow: row nowrap;
}
.education-search-term__block > input[type=checkbox] {
  min-width: 16px;
  height: 16px;
}
.education-search-term__block > * {
  margin: 0 0 0 0.4em;
}
@media all and (min-width: 768px) {
  .education-search-term__block > * {
    margin: 0.1em 0 0 0.3em;
  }
}
.education-search-term__arrow {
  background: none;
  border: transparent;
  color: #000;
  display: inherit;
  font-size: 1.2em;
  margin: 0;
  padding: 0;
  height: auto;
  min-width: 1.5em;
}
.education-search-term__arrow.children:before {
  content: "►";
  margin-right: 0.5em;
  transition-duration: 0.2s;
}
.education-search-term__arrow.children.open:before {
  transform: rotate(90deg);
}
@media all and (min-width: 768px) {
  .education-search-term__arrow {
    font-size: 1.2em;
    width: 1em;
  }
}

@media (max-width: 767px) {
  .education-search-term__block > input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .education-search-term__block > * {
    padding: 5px 0px;
  }
}
.education-feed {
  /*
   * Swiper css overrides
   */
  /*
   * Media overrides
   * @TODO: Set up better way of positioning swiper buttons and bullets (formula?)
  */
}
.education-feed__addthis {
  margin-top: 2em;
  margin-bottom: -2.5em;
  text-align: right;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .education-feed__addthis {
    margin-top: 1em;
    margin-bottom: 1em;
    float: right;
    text-align: center;
  }
}
.education-feed__addthis .addthis-bar label {
  margin-top: 0.6em;
}
.education-feed__addthis .addthis-bar > div {
  float: right;
  margin-left: 1em;
  position: relative;
  top: -0.5em;
}
.education-feed__addthis--mobile {
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}
.education-feed__body {
  background: white;
}
.education-feed__section--hero {
  background-color: #5075B4;
  color: white;
}
.education-feed__section--hero h1 {
  font-weight: bold;
  padding-left: 4.8%;
  padding-top: 0.2em;
  font-size: 1.8em;
}
.education-feed__section--sliders {
  margin: 0 auto;
  max-width: 90%;
}
.education-feed__section--sliders h2 {
  margin: 2em 0 1em 0;
}
.education-feed__section .swiper-wrapper {
  padding: 2em 0 2.5em 0;
}
@media screen and (min-width: 768px) {
  .education-feed__section .swiper-wrapper img {
    height: 210px;
  }
}
.education-feed__section .swiper-wrapper .node-thumb__container--desktop {
  width: 210px;
  transition: 0.3s ease-in-out;
}
.education-feed__section .swiper-wrapper .node-thumb__container--desktop:hover, .education-feed__section .swiper-wrapper .node-thumb__container--desktop:focus, .education-feed__section .swiper-wrapper .node-thumb__container--desktop:focus-within {
  -ms-transform: scale(1.2);
  transform: scale(1.2, 1.2);
  z-index: 1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.6);
}
.education-feed__hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 0.22em solid #333333;
}
.education-feed__section {
  margin: auto;
  padding-bottom: 1em;
}
.education-feed__section--h4 {
  font-size: 1.5em;
  font-weight: bold;
}
.education-feed__see-all {
  font-size: 0.67em;
  margin-left: 2em;
  font-weight: normal;
}
.education-feed .submenu-topics {
  display: inline-block;
}
.education-feed .node-hero {
  color: #fff;
  font-family: "TitilliumWeb-Regular", Arial, sans-serif;
}
.education-feed .node-hero__title a {
  color: #fff;
}
.education-feed .node-hero--desktop {
  width: 100%;
}
.education-feed .node-hero__flex--item {
  flex-grow: 2;
}
.education-feed .node-hero__description--mobile {
  margin: 1em;
}
.education-feed .node-hero__image {
  background: none;
  margin-bottom: 0;
  object-fit: cover;
}
.education-feed .node-hero__body--mobile {
  font-size: 1em;
  margin: 1em 1em 0.5em;
}
.education-feed .node-hero__body p {
  font-size: 0.95em;
}
.education-feed .node-thumb__container--title {
  font-weight: normal;
}
.education-feed .pagination {
  display: none;
}
.education-feed .swiper-button-next.swiper-button-disabled, .education-feed .swiper-button-prev.swiper-button-disabled {
  display: none;
}
.education-feed .education-feed__see-all {
  color: #007bff;
}
.education-feed .swiper-wrapper .swiper-slide {
  color: #fff;
  text-align: center;
}
.education-feed .swiper-button-prev, .education-feed .swiper-container-rtl .swiper-button-next {
  color: #000;
}
.education-feed .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2218%22%20height%3D%2232%22%20viewBox%3D%220%200%2018%2032%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M3.237%2017.237v-2.474l14%2014c.684.683.684%201.79%200%202.474-.683.684-1.79.684-2.474%200l-14-14c-.684-.683-.684-1.79%200-2.474l14-14c.683-.684%201.79-.684%202.474%200%20.684.683.684%201.79%200%202.474l-14%2014z%22%20fill-rule%3D%22nonzero%22%20fill%3D%22%23EFF1F1%22%2F%3E%3C%2Fsvg%3E");
  left: 0;
}
.education-feed .swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 1;
}
.education-feed .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2218%22%20height%3D%2232%22%20viewBox%3D%220%200%2018%2032%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14.763%2017.237v-2.474l-14%2014c-.684.683-.684%201.79%200%202.474.683.684%201.79.684%202.474%200l14-14c.684-.683.684-1.79%200-2.474l-14-14C2.554.08%201.447.08.763.763c-.684.683-.684%201.79%200%202.474l14%2014z%22%20fill-rule%3D%22nonzero%22%20fill%3D%22%23EFF1F1%22%2F%3E%3C%2Fsvg%3E");
  right: 0;
}
.education-feed .swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 1;
}
.education-feed .swiper-button-prev, .education-feed .swiper-button-next {
  background-color: rgba(0, 0, 0, 0.3);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1.5em;
  border: 0 none;
  border-radius: 0;
  color: transparent;
  height: 25%;
  opacity: 1;
  outline: 0 none;
  padding: 0;
  position: absolute;
  top: calc(100vw / 1.9);
  transition: opacity 0.25s ease, background-color 0.25s ease;
  width: 3em;
  z-index: 11;
}
.education-feed .education-feed__hero--swiper .swiper-button-next {
  background-color: transparent !important;
}
.education-feed .education-feed__hero--swiper .swiper-button-prev {
  background-color: transparent !important;
}
.education-feed .swiper-pagination-bullets {
  top: calc(100vw / 1.5);
}
.education-feed .swiper-pagination-bullet {
  background: #869791;
}
.education-feed .swiper-pagination-bullet-active {
  background: #D6D6D6;
}
@media screen and (min-width: 652px) {
  .education-feed .node-hero {
    flex-flow: row-reverse;
  }
  .education-feed .node-hero a {
    height: 25.2em;
  }
  .education-feed .education-feed__hero--swiper .swiper-wrapper {
    height: 25.2em;
  }
  .education-feed .node-hero__title {
    font-size: 1.6em;
  }
  .education-feed .node-hero__title a {
    font-weight: bold;
  }
  .education-feed .node-hero__flex--item {
    align-items: normal;
    padding: 2em 0 0 1em;
  }
  .education-feed .node-hero__body {
    padding-right: 3.5em;
    padding-top: 0.6em;
    text-align: left;
  }
  .education-feed .node-hero__body p {
    font-size: 1.1em;
  }
  .education-feed .node-hero__image {
    height: 100%;
    width: 320px;
  }
  .education-feed .swiper-button-prev, .education-feed .swiper-button-next {
    top: 45%;
  }
  .education-feed .swiper-pagination-bullets {
    bottom: 5%;
    left: 0;
    top: unset;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .education-feed .node-hero__flex--item {
    padding: 0;
  }
  .education-feed .node-hero__body--desktop {
    padding-top: 3.2em;
  }
  .education-feed .node-hero__image--desktop {
    width: 384px;
  }
}
@media screen and (min-width: 960px) {
  .education-feed .swiper-pagination-bullets {
    left: 50%;
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .education-feed .node-hero__body--desktop {
    padding-top: 2.8em;
  }
  .education-feed .node-hero__title--desktop {
    font-size: 2em;
  }
  .education-feed .node-hero__image--desktop {
    width: 512px;
  }
}
@media screen and (min-width: 1200px) {
  .education-feed .node-hero__body--desktop {
    padding-top: 3.2em;
  }
  .education-feed .node-hero__image--desktop {
    width: 608px;
  }
  .education-feed .node-hero__title {
    font-size: 2.3em;
  }
}

.edu-feed-banner {
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.edu-feed-banner__img {
  position: relative;
  width: 100%;
}
.edu-feed-banner__title {
  bottom: 1em;
  color: #fff;
  font-size: calc(1.8rem + (31 - 16) * ((100vw - 300px) / (1600 - 300)));
  left: 1em;
  line-height: calc(1.3rem + (1.5 - 1.2) * ((100vw - 300px)/(1600 - 300)));
  margin: 0;
  position: absolute;
}
@media screen and (min-width: 466px) {
  .edu-feed-banner__title {
    bottom: 1.4em;
    font-size: calc(2.08rem + (31 - 16) * ((100vw - 300px) / (1600 - 300)));
    line-height: calc(0.3rem + (1.5 - 1.2) * ((100vw - 300px)/(1600 - 300)));
  }
}

.education-feed-search-header {
  align-items: center;
  background: #ededed;
  display: flex;
  flex-direction: column;
  font-family: "TitilliumWeb-Regular", Arial, sans-serif;
  justify-content: center;
  padding: 1em;
  position: relative;
  z-index: 2;
  width: 100%;
}
.education-feed-search-header--no-break {
  white-space: nowrap;
}
.education-feed-search-header a {
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .education-feed-search-header {
    flex-direction: row;
    padding: 0 1em;
  }
}

.education-feed-search-input {
  margin: 0.5em 0;
  max-width: 700px;
  text-align: center;
  width: 100%;
}
.education-feed-search-input .ember-text-field {
  background: #fff;
  border: none;
  color: #63717f;
  flex: 1 0 5em;
  height: 2.35em;
  margin-left: 2em;
  padding: 0.375rem 0.75rem;
  position: relative;
  width: 100%;
}
.education-feed-search-input .ember-text-field:placeholder-shown {
  font-size: 0.8em;
  padding-left: 0;
  text-align: center;
}
@media screen and (min-width: 410px) {
  .education-feed-search-input .ember-text-field:placeholder-shown {
    font-size: inherit;
  }
}
.education-feed-search-input .education-feed-search-input__button {
  background: #fff;
  margin-right: 2em;
  width: 1.8em;
  z-index: 2;
}
.education-feed-search-input .education-feed-search-input button {
  background: url(/sites/all/themes/custom/nasatwo/images/search-grey.png) no-repeat;
  background-position: center center;
  border: none;
  height: 100%;
  outline: none;
  padding: 0;
  width: 100%;
}
.education-feed-search-input .autocomplete-input {
  display: flex;
}
.education-feed-search-input .autocomplete-results {
  background-color: #fff;
  border: 1px solid #9C9C9C;
  border-top: none;
  list-style-type: none;
  padding: 10px;
  width: 100%;
  max-width: 50em;
  color: #63717f;
  position: absolute;
  top: 8.5em;
}
.education-feed-search-input .autocomplete-results .highlight {
  color: black;
  background-color: #D3D3D3;
}
.education-feed-search-input .autocomplete-result-item:hover {
  color: black;
  background-color: #D3D3D3;
  cursor: pointer;
}
@media screen and (min-width: 576px) {
  .education-feed-search-input {
    padding: 0 2em;
  }
  .education-feed-search-input .autocomplete-results {
    top: 7.4em;
  }
}
@media screen and (min-width: 768px) {
  .education-feed-search-input .autocomplete-input {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .education-feed-search-input {
    max-width: 640px;
    padding: 0 3.5em 0 0;
  }
  .education-feed-search-input .autocomplete-results {
    top: 3.3em;
  }
}

.node-thumb__container {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  transition: text-shadow 0.3s;
}
.node-thumb__container a {
  position: relative;
}
.node-thumb__container--desktop {
  max-width: 290px;
}
.node-thumb__container--image {
  width: 100%;
}
.node-thumb__container--overlay {
  background-color: black;
  bottom: 0;
  max-width: 320px;
  opacity: 0.8;
  overflow-y: hidden;
  padding: 0.5em;
  position: absolute;
  width: 100%;
}
.node-thumb__container--title {
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.16), 0 6px 6px rgba(0, 0, 0, 0.2);
}
.node-thumb:hover {
  text-shadow: 0 0 0.75px #fff, 0 0 0.75px #fff;
}

.node-hero {
  display: flex;
  flex-flow: column-reverse;
  overflow: hidden;
}
.node-hero--desktop {
  flex-flow: row;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .node-hero--desktop {
    flex-flow: column-reverse;
    max-width: 100%;
    padding-left: 0;
  }
  .node-hero--desktop p {
    margin: 0;
    padding-top: 1em;
  }
}
.node-hero__flex--item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.node-hero__title {
  font-size: 1.5em;
  font-weight: bold;
  padding-bottom: 0.7em;
  line-height: 1.2;
}
.node-hero__title a {
  color: #fff;
  font-weight: normal;
}
.node-hero__title--desktop {
  font-size: 2em;
}
@media screen and (min-width: 1100px) {
  .node-hero__title--desktop {
    font-size: 2.6em;
  }
}
.node-hero__image {
  margin-bottom: 2em;
  object-fit: contain;
  background: #000;
  width: 100%;
}
.node-hero__image--desktop {
  margin-bottom: 0;
  width: 628px;
  height: 460px;
}
.node-hero__body {
  flex: 1 1 auto;
  overflow-wrap: break-word;
  text-align: center;
}
.node-hero__body--mobile {
  margin: 15px;
  font-size: 1.5em;
}
.node-hero__body--desktop {
  padding: 1.5em 3.5em 1.5em 1.5em;
  text-align: left;
  height: 100%;
}
@media screen and (min-width: 1100px) {
  .node-hero__body--desktop {
    padding: 4em 6.5em 1em 4em;
  }
}
.node-hero__body p {
  font-size: 1.4em;
  padding-top: 0.7em;
  line-height: 1.5;
}
.node-hero__description--mobile {
  margin-bottom: 30px;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.loadingvoid {
  padding-bottom: 30px;
}

.loadingspin {
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.loadingspin.loading-calendar {
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  z-index: 1;
}

.loadingspin:before {
  display: block;
  width: 28px;
  height: 28px;
  border-top: 2px solid #eee;
  border-right: 2px solid #888;
  border-left: 2px solid #888;
  border-bottom: 2px solid #eee;
  content: "";
  animation: spinner 0.8s linear infinite;
  -webkit-animation: spinner 0.8s linear infinite;
  border-radius: 100%;
}

.loadingspin.loading-calendar:before {
  width: 36px;
  height: 36px;
}

.darkloadingspin {
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.darkloadingspin:before {
  display: block;
  width: 38px;
  height: 38px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #333;
  border-left: 2px solid #333;
  border-bottom: 2px solid #ccc;
  content: "";
  animation: spinner 0.8s linear infinite;
  -webkit-animation: spinner 0.8s linear infinite;
  border-radius: 100%;
}

.flex-wrapper img {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.flex-wrapper.loaded img {
  opacity: 1;
}

.flex-wrapper.loaded .css_spinner {
  display: none;
}

.css_spinner {
  margin: 4em auto;
  font-size: 1.5em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 33%;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
}

@-webkit-keyframes load5 {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
#footer {
  width: 100%;
  background: #000;
  padding: 1.25em 0.7em 3em;
  overflow: hidden;
}

#footer-info .logo {
  float: left;
}
#footer-info .logo img {
  width: 80px;
}
#footer-info #status {
  clear: left;
  margin: 1em 0;
  line-height: 1.2em;
}
#footer-info #status > span {
  display: block;
  color: #fff;
  font-weight: 600;
  margin: 0;
  font-size: 0.95em;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
}

#footer-links {
  margin: 20px 0;
  padding-left: 0;
}
#footer-links li {
  display: inline-block;
  width: 100%;
}
#footer-links li a {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  color: #5d7fb9;
  font-weight: bold;
  font-size: 0.9em;
}

@media (min-width: 1101px) {
  #footer #footer-info #status {
    clear: none;
  }
  #footer #footer-links {
    float: right;
  }
  #footer #footer-links li {
    padding-left: 30px;
    display: inline-block;
    width: auto;
  }
}
.sitewide-banner {
  color: white;
  display: none;
  margin: 0 auto;
  max-width: 1366px;
  padding-left: 1em;
  position: relative;
}
.sitewide-banner--visible {
  display: block;
}
.sitewide-banner img {
  display: none;
}
.sitewide-banner:hover, .sitewide-banner:focus {
  text-decoration: none;
}

@media (min-width: 1021px) {
  .sitewide-banner--visible {
    height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .sitewide-banner img {
    position: absolute;
    top: 0;
    z-index: 1;
    color: black;
    display: block;
    height: 85px;
    width: 100%;
    z-index: 1;
  }
  .sitewide-banner h3 {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 2px 2px #000000;
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .live-coverage-homepage #cards .card:nth-child(2) {
    margin-bottom: 15px;
    margin-top: 53px;
  }
}

.livecoveragehomepagetv {
  height: unset !important;
  max-height: 695px;
  width: 100%;
  /* Safari 8: setting flexbox */
  /* Targeting IE 10+ and setting flexbox for larger screens */
  /* Targeting IE 10+ and setting flexbox for smaller screens */
  /* Targeting IE 10+ and setting flexbox for screens smaller than 768 on channe links */
  /* Targeting IE 10+ and setting flexbox for screens larger than 768 on channel links */
}
.livecoveragehomepagetv--title {
  color: #fff;
  display: inline-block;
  font-size: 1.5em;
  text-align: left;
  width: 100%;
}
.livecoveragehomepagetv__flexcontainer {
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  /* target the iPad Pro in portrait mode */
}
@media (min-width: 992px) {
  .livecoveragehomepagetv__flexcontainer {
    flex-direction: row;
    flex-flow: wrap;
    height: 680px;
  }
}
@media (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 1024px) and (max-width: 1024px) {
  .livecoveragehomepagetv__flexcontainer {
    flex-direction: column;
  }
}
.livecoveragehomepagetv .player-wrapper {
  flex: 1 6 71%;
  order: 1;
  width: 100%;
}
@media (min-width: 992px) {
  .livecoveragehomepagetv .player-wrapper {
    max-height: 569px;
    max-width: 1018px;
  }
}
.livecoveragehomepagetv__player {
  display: block;
  padding-bottom: 57%;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .livecoveragehomepagetv__player {
    padding-bottom: 56.4%;
  }
}
@-moz-document url-prefix() {
  .livecoveragehomepagetv .vjs-control-bar {
    top: unset !important;
  }
}
.livecoveragehomepagetv .vjs-control-bar {
  top: inherit;
}
.livecoveragehomepagetv video {
  display: none;
}
.livecoveragehomepagetv .loaded video {
  display: inherit;
}
.livecoveragehomepagetv .vjs-fullscreen {
  max-height: unset !important;
}
.livecoveragehomepagetv .video-js {
  max-height: 427px;
  min-width: 280px;
  min-height: 54vmin;
}
@media (min-width: 992px) {
  .livecoveragehomepagetv .video-js {
    min-height: unset !important;
    max-height: 565px;
  }
}
.livecoveragehomepagetv .video-js:after {
  display: block;
  content: "";
}
.livecoveragehomepagetv .video-js .vjs-tech {
  position: absolute;
}
.livecoveragehomepagetv .loaded .video-js {
  display: inherit;
}
.livecoveragehomepagetv .empty-player {
  min-width: 300px;
  width: 100%;
  display: inline-block;
  position: relative;
}
.livecoveragehomepagetv .empty-player:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.livecoveragehomepagetv .darkloadingspin {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@-moz-document url-prefix() {
  .livecoveragehomepagetv .nasa-mobilerider-player-dimensions {
    width: inherit !important;
    height: inherit !important;
  }
}
.livecoveragehomepagetv .nasa-mobilerider-player-dimensions {
  width: inherit;
  height: inherit;
}
.livecoveragehomepagetv _::-webkit-full-page-media, .livecoveragehomepagetv _:future, .livecoveragehomepagetv :root .channels {
  display: -webkit-flex;
  -webkit-flex-flow: column;
}
@media screen and (min-width: 512px) {
  .livecoveragehomepagetv _::-webkit-full-page-media, .livecoveragehomepagetv _:future, .livecoveragehomepagetv :root .channels {
    -webkit-flex-direction: row;
  }
}
.livecoveragehomepagetv _::-webkit-full-page-media.active .audience, .livecoveragehomepagetv _::-webkit-full-page-media.focus .audience, .livecoveragehomepagetv _:future.active .audience, .livecoveragehomepagetv _:future.focus .audience, .livecoveragehomepagetv :root .channels__link.active .audience, .livecoveragehomepagetv :root .channels__link.focus .audience {
  width: 100%;
}
@media (min-width: 512px) {
  .livecoveragehomepagetv _:-ms-input-placeholder .channels, .livecoveragehomepagetv :root .channels {
    display: -ms-flexbox;
  }
  .livecoveragehomepagetv _:-ms-input-placeholder .channels a, .livecoveragehomepagetv :root .channels a {
    -ms-flex: 0 1 auto;
  }
  .livecoveragehomepagetv _:-ms-input-placeholder ::-ms-backdrop, .livecoveragehomepagetv _:-ms-input-placeholder .channels, .livecoveragehomepagetv :root ::-ms-backdrop, .livecoveragehomepagetv :root .channels {
    display: flex;
    display: -ms-flexbox;
    flex-flow: row nowrap;
  }
}
@media (max-width: 768px) {
  .livecoveragehomepagetv _:-ms-input-placeholder .channels, .livecoveragehomepagetv :root .channels {
    display: -ms-flexbox;
    -ms-flex-direction: column;
  }
}
.livecoveragehomepagetv .channels {
  align-content: flex-end;
  border-bottom: 0.3em solid black;
  display: flex;
  display: -ms-flexbox;
  width: 100%;
  margin: 0 auto;
  flex-flow: column;
  justify-content: space-around;
  order: 2;
}
@media all and (min-width: 512px) {
  .livecoveragehomepagetv .channels {
    flex-flow: row wrap;
  }
}
@media (min-width: 992px) {
  .livecoveragehomepagetv .channels {
    order: 3;
    -webkit-order: 3;
    -ms-flex-order: 3;
    z-index: 100;
  }
}
@media (max-width: 768px) {
  .livecoveragehomepagetv _:-ms-input-placeholder .channels__link, .livecoveragehomepagetv :root .channels__link {
    display: -ms-flexbox;
    margin: 5px 0;
  }
}
@media (min-width: 768px) {
  .livecoveragehomepagetv _:-ms-input-placeholder .channels__link, .livecoveragehomepagetv :root .channels__link {
    display: -ms-flexbox;
  }
}
.livecoveragehomepagetv .channels__link {
  background-color: #292F33;
  color: #fff;
  flex: 1;
  height: 40px;
  margin: 5px 0;
  padding: 10px 20px;
  text-align: left;
  width: 100%;
}
@media (min-width: 992px) {
  .livecoveragehomepagetv .channels__link {
    margin: 5px 1%;
  }
}
@media (min-width: 512px) and (max-width: 991px) {
  .livecoveragehomepagetv .channels__link {
    margin: 5px 1%;
  }
}
.livecoveragehomepagetv .channels__link:first-child {
  margin-left: 0;
}
.livecoveragehomepagetv .channels__link:last-child {
  margin-right: 0;
}
.livecoveragehomepagetv .channels__link:hover, .livecoveragehomepagetv .channels__link.active, .livecoveragehomepagetv .channels__link:focus {
  color: #fff;
  background: #488cc8;
  text-decoration: none;
  cursor: pointer;
  /* IE: this is needed for placing the glyph on the right side */
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .livecoveragehomepagetv .channels__link:hover .audience, .livecoveragehomepagetv .channels__link.active .audience, .livecoveragehomepagetv .channels__link:focus .audience {
    width: 100%;
  }
}
.livecoveragehomepagetv .channels__link:hover .audience .glyphicon-check, .livecoveragehomepagetv .channels__link.active .audience .glyphicon-check, .livecoveragehomepagetv .channels__link:focus .audience .glyphicon-check {
  display: block;
  margin-top: 3px;
}
@media all and (min-width: 768px) {
  .livecoveragehomepagetv .channels__link {
    display: -ms-flexbox;
    flex: 1;
  }
  .livecoveragehomepagetv .channels__link:nth-of-type(2n+0) {
    margin-right: 1%;
  }
  .livecoveragehomepagetv .channels__link:nth-of-type(3n+0) {
    margin-left: 1%;
  }
  .livecoveragehomepagetv .channels__link:last-child {
    margin-right: 0;
  }
}

.livecoveragehomepageanyfeed__anyfeed-feed {
  height: unset;
}
.livecoveragehomepageanyfeed .pull-left {
  margin-bottom: 15px;
}

.nasa-calendar {
  /* Nasa Calendar Card Styles & Overrides */
}
.nasa-calendar__title {
  color: #15418c;
  padding: 5px 10px 0;
  font-weight: bold;
}
.nasa-calendar--card .bg-calendar-card-panel {
  background-color: white;
  padding: 5px;
}
.nasa-calendar--card .ember-power-calendar-nav {
  color: #000;
  background-color: #fff;
}
.nasa-calendar--card .ember-power-calendar-week {
  min-height: 45px;
}
.nasa-calendar--card .ember-power-calendar-day {
  vertical-align: unset;
  border: none !important;
  padding: 0;
  position: relative;
  display: flex;
}
.nasa-calendar--card .ember-power-calendar-day .epc-day-number {
  text-align: center;
  float: none;
  font-weight: 550;
  position: relative;
  z-index: 1;
}
.nasa-calendar--card .ember-power-calendar-day .ember-tooltip-base {
  background-color: #5d7fb9;
  opacity: 0.7;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.nasa-calendar .ember-popover {
  padding: 5px;
  background-color: #000;
  font-size: 14px;
}
.nasa-calendar .ember-popover-description {
  text-align: left;
}
.nasa-calendar .ember-popover img {
  width: 64px;
  height: 64px;
  float: left;
  margin: 5px 5px 5px 3px;
}
.nasa-calendar .ember-popover[x-placement=top] .tooltip-arrow {
  border-top-color: #000;
  border-bottom-color: #000;
}
.nasa-calendar .ember-popover[x-placement=right] .tooltip-arrow {
  border-right-color: #000;
}
.nasa-calendar .ember-popover[x-placement=bottom] .tooltip-arrow {
  border-top-color: #000;
  border-bottom-color: #000;
}
.nasa-calendar .ember-popover[x-placement=left] .tooltip-arrow {
  border-left-color: #000;
}
.nasa-calendar .ember-popover a {
  color: #fff;
}
.nasa-calendar__spinner {
  opacity: 0.5;
}
.nasa-calendar__spinner:before {
  content: "";
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20100%20100%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%231F77BD%22%20stroke-width%3D%225%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M12.6%2077.6C7%2070%203.6%2060.3%203.6%2050%203.6%2024.3%2024.2%203.5%2050%203.5S96.5%2024.3%2096.5%2050c0%205.4-1%2010.5-2.6%2015.3%22/%3E%3C/svg%3E");
  width: 50px;
  height: 50px;
  animation: spin360 1s linear infinite;
}

.epc-day-number {
  float: right;
  font-weight: bold;
}
.epc-event-container {
  margin-left: 3px;
}
.epc-day-grid-event {
  background-color: transparent;
  color: #3970a0;
  border: 0;
  font-size: 0.85em;
}
.epc-day-grid-event:hover {
  text-decoration: underline;
}
.epc-content {
  white-space: normal;
  line-height: 1.2em;
  margin-bottom: 0.15em;
}
.epc-title {
  text-align: left;
}

.ember-power-calendar {
  max-width: 1000px;
  color: #1b1b1b;
  margin: 0 auto;
  /* Border changes would not work without !important */
}
.ember-power-calendar-nav {
  background-color: #555555;
  margin-bottom: 0;
  height: 32px;
  color: #fff;
  justify-content: center;
}
.ember-power-calendar-nav-title {
  font-weight: bold;
  flex: 0;
  min-width: 110px;
}
.ember-power-calendar-nav-control {
  font-size: 175%;
}
.ember-power-calendar-weekdays {
  background-color: #3970a0 !important;
  color: #fff;
  height: 32px;
}
.ember-power-calendar-weekdays .epc-sun {
  border-width: 0 1px 0 0 !important;
}
.ember-power-calendar-weekdays .epc-sat {
  border-width: 0 0 0 1px !important;
}
.ember-power-calendar-weekday {
  font-weight: bold;
  border: 1px solid #e3e3e3;
  border-width: 0 1px 0 1px !important;
}
.ember-power-calendar-week {
  min-height: 142px;
  background-color: #fff;
  color: #1b1b1b;
}
.ember-power-calendar-day {
  border: 1px solid #e3e3e3 !important;
  vertical-align: top;
  padding: 0.4em;
}
.ember-power-calendar-day--other-month {
  background-color: #eeeeee;
  opacity: 1;
}

.flex-slider-video__video {
  min-height: 330px;
  position: relative;
}
@media screen and (min-width: 500px) {
  .flex-slider-video__video {
    min-height: 360px;
  }
}
.flex-slider-video__video iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

@media (min-width: 992px) {
  .twitter2016.cards--card.cards--2row {
    padding-bottom: 20px;
  }
  .twitter2016.cards--card.cards--2row .twitter-timeline {
    height: 615px !important;
  }
}
.doc-viewer {
  height: 100%;
  max-width: 1366px;
  width: 100%;
}

/**
 * EPUB specific css
 */
.doc-viewer--epub {
  background: #000;
  position: relative;
}
.doc-viewer--epub #document-container {
  background: #fff;
  margin: auto;
  min-height: 250px;
}
.doc-viewer--epub .epub-container {
  margin: auto;
  margin-bottom: 10px;
}
.doc-viewer--epub .doc-viewer__nav {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .doc-viewer--epub .doc-viewer__nav {
    display: flex;
    height: 30px;
    position: sticky;
    top: 85px;
    /* Keeps it below the NASA nav */
    width: 100%;
    z-index: 4;
  }
}
.doc-viewer--epub .doc-viewer__nav--prev, .doc-viewer--epub .doc-viewer__nav--next {
  bottom: 40px;
  height: 100%;
  position: fixed;
  width: 40px;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .doc-viewer--epub .doc-viewer__nav--prev, .doc-viewer--epub .doc-viewer__nav--next {
    background: #fff;
    bottom: unset;
    height: 30px;
    margin-top: 5px;
    position: relative;
    width: 50%;
  }
}
.doc-viewer--epub .doc-viewer__nav--next {
  background: url("https://api.iconify.design/oi-chevron-right.svg?color=%23b2b2b2&height=32") no-repeat center center;
  right: 0;
}
@media screen and (min-width: 768px) {
  .doc-viewer--epub .doc-viewer__nav--next {
    background: url("https://api.iconify.design/oi-chevron-right.svg?color=%23b2b2b2") no-repeat center center/contain;
  }
}
.doc-viewer--epub .doc-viewer__nav--prev {
  background: url("https://api.iconify.design/oi-chevron-left.svg?color=%23b2b2b2&height=32") no-repeat center center;
  left: 0;
}
@media screen and (min-width: 768px) {
  .doc-viewer--epub .doc-viewer__nav--prev {
    background: url("https://api.iconify.design/oi-chevron-left.svg?color=%23b2b2b2") no-repeat center center/contain;
  }
}

.iframecard__container {
  height: 100%;
  max-width: 1366px;
  position: relative;
  width: 100%;
}

.interactive-globe .hide {
  display: none;
}

.interactive-globe__header {
  color: #fff;
  font-size: 30px;
  margin: 2px 0 10px 0;
  text-align: center;
}
.interactive-globe__header--subtitle {
  font-size: 22px;
}
@media (min-width: 768px) {
  .interactive-globe__header--subtitle {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .interactive-globe__header {
    font-size: 38px;
  }
}

#openglobus-container {
  height: 400px;
}
@media (min-width: 768px) {
  #openglobus-container {
    height: 650px;
  }
}
@media (min-width: 992px) {
  #openglobus-container {
    height: 620px;
  }
}
#openglobus-container .ogAttribution {
  left: 0;
  right: unset;
}
#openglobus-container .ogZoomControl {
  left: 0;
  right: unset;
}
#openglobus-container .ogEarthCoordinatesControl {
  display: none;
}
#openglobus-container .og-scale-container {
  bottom: 24px;
  left: 0;
  right: unest;
}
#openglobus-container .og-popup {
  bottom: unset !important;
  height: 100%;
  left: unset !important;
  overflow: hidden;
  padding-bottom: 107px;
  position: fixed;
  right: 0;
  top: 107px;
  width: 100%;
}
@media (min-width: 768px) {
  #openglobus-container .og-popup {
    height: 85%;
    padding-bottom: unset;
    right: 0;
    top: 107px;
    width: 50%;
  }
}
@media (min-width: 992px) {
  #openglobus-container .og-popup {
    width: 30%;
  }
}
#openglobus-container .og-popup-content-wrapper {
  border-radius: 0;
  font-size: 16px;
  height: 100%;
}
#openglobus-container .og-popup-link {
  margin-left: 12px;
  margin-right: 12px;
}
#openglobus-container .og-popup-title {
  font-size: 20px;
  font-weight: bold;
  margin: 5px 10px;
  top: 5px;
}
#openglobus-container .og-popup-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 70px 12px 10px;
  padding-bottom: 17px;
}
@media (min-width: 768px) {
  #openglobus-container .og-popup-content {
    padding-bottom: unset;
  }
}
#openglobus-container .og-popup-btn {
  font-size: 20px;
  height: 20px;
  width: 20px;
}
#openglobus-container .og-popup-tip-container {
  display: none;
}

.interactive-globe__filters {
  color: white;
}
.interactive-globe__filters select {
  color: black;
  margin-left: 5px;
}

.interactive-globe-popup {
  min-height: 400px;
}

.interactive-globe-popup__dir-container--hide {
  display: none;
}

.interactive-globe-popup__directorate {
  font-weight: 550;
}

.interactive-globe-popup__tabs {
  list-style-type: none;
  margin: 0 0 15px 10px;
  padding-left: 0;
}
.interactive-globe-popup__tabs li::before {
  padding-right: 5px;
}

.iglobe-popup-tab--hide {
  display: none;
}

.iglobe-bullet--armd::before {
  content: url("https://api.iconify.design/noto-airplane.svg?height=16");
  vertical-align: -0.125em;
}
.iglobe-bullet--heomd::before {
  content: url("https://api.iconify.design/fa-solid-user-astronaut.svg?height=16");
  vertical-align: -0.125em;
}
.iglobe-bullet--smd::before {
  content: "🔬";
}
.iglobe-bullet--stmd::before {
  content: "🚀";
}
.iglobe-bullet--uncat::before {
  content: "★";
}

.interactive-globe-popup__body {
  margin-bottom: 100px;
  margin-top: 5px;
  overflow-y: auto;
}
.interactive-globe-popup__body .dnd-atom-wrapper {
  height: 215px;
  width: 340px;
}

.interactive-globe__body {
  display: grid;
  grid-template-columns: 70% 30%;
  margin-top: 10px;
  word-wrap: break-word;
}
.interactive-globe__body p {
  margin-bottom: 2px;
  margin-top: 2px;
}
.interactive-globe__body--popup {
  background-color: #fff;
  height: 100%;
  max-width: 1366px;
  overflow: auto;
  padding-top: 10px;
  position: fixed;
  top: 107px;
  width: 100%;
  z-index: 2;
}
@media (min-width: 768px) {
  .interactive-globe__body--popup {
    height: 85%;
    left: 0;
    position: absolute;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .interactive-globe__body--popup {
    width: 30%;
  }
}

.interactive-globe__info--open-btn,
.interactive-globe__accessibility--open-btn {
  background: #0b3d91;
  border: #0b3d91;
  border-radius: 3px;
  color: #fff;
  padding: 4px;
}

.interactive-globe__info--open-btn {
  max-width: 194px;
}

.interactive-globe__accessibility--open-btn {
  justify-self: end;
  max-width: 92px;
}

.interactive-globe__info--close-btn,
.interactive-globe__accessibility--close-btn {
  background: none;
  border: none;
}
.interactive-globe__info--close-btn::after,
.interactive-globe__accessibility--close-btn::after {
  content: "×";
  display: inline-block;
  font-size: 20px;
}

.interactive-globe__info--close-btn {
  position: absolute;
  right: 2px;
  top: -5px;
}

.interactive-globe__accessibility--close-btn {
  color: white;
}
.interactive-globe__accessibility--close-btn span {
  display: none;
}

.interactive-globe__disclaimer {
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  position: absolute;
  right: 0;
  width: 50%;
}
@media (min-width: 512px) {
  .interactive-globe__disclaimer {
    left: 40%;
    width: 293px;
  }
}

.interactive-globe__accessibility {
  color: #fff;
  text-align: center;
}
.interactive-globe__accessibility--countries {
  font-size: 18px;
}
.interactive-globe__accessibility--countries button {
  padding: 0;
}
.interactive-globe__accessibility--countries button::after {
  color: #fff;
  content: "|";
  margin: 0 5px;
}
.interactive-globe__accessibility--countries button:last-child::after {
  display: none;
}
.interactive-globe__accessibility--data {
  margin-top: 10px;
  min-height: 200px;
  max-height: 650px;
  overflow: auto;
}
.interactive-globe__accessibility--data button {
  background: none;
  border: none;
  color: #5d7fb9;
}
.interactive-globe__accessibility--country-name {
  margin-bottom: 20px;
}
.interactive-globe__accessibility--pin-name {
  margin-bottom: 15px;
}
.interactive-globe__accessibility--directorate-name {
  font-weight: bold;
}
.interactive-globe__accessibility--directorate ul {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  list-style-type: none;
  padding: 0;
}
.interactive-globe__accessibility--directorate ul li button::before {
  color: #fff;
  content: "★";
}
.interactive-globe__accessibility--mission-body {
  margin-top: 5px;
}

#form-soap-display {
  max-width: 100%;
}

#nssc-form-results-table {
  border-collapse: collapse;
  max-width: 100%;
}
#nssc-form-results-table td, #nssc-form-results-table th {
  border: 1px solid #ddd;
  padding: 6px;
  word-wrap: break-word;
  max-width: 125px;
  font-weight: normal;
  font-size: 0.85em;
}
#nssc-form-results-table #nssc-table-header {
  color: #fff;
  background-color: #555;
}
#nssc-form-results-table #nssc-table-header th {
  font-weight: bold;
  padding-right: 12px;
}
#nssc-form-results-table #nssc-table-header .table-sort--asc:after {
  position: relative;
  content: " ";
  left: 4px;
  border: 8px solid transparent;
  top: 12px;
  border-top-color: #ffffff;
}
#nssc-form-results-table #nssc-table-header .table-sort--desc:after {
  position: relative;
  content: " ";
  left: 4px;
  border: 8px solid transparent;
  bottom: 12px;
  border-bottom-color: #ffffff;
}
#nssc-form-results-table .nssc-table-row--odd {
  background-color: #f2f2f2;
}
#nssc-form-results-table .nssc-table-row:hover {
  background-color: #ddd;
}

.soap-return-to-form {
  margin: 2em 10px 2em 0;
}

.soap-search-results-summary {
  border-bottom: 1px solid #999;
  margin-bottom: 2em;
  padding-bottom: 2em;
}
.soap-search-results-summary h3 {
  margin: 0;
}
.soap-search-results-summary h2 {
  font-size: 20px;
  color: red;
}

.soap-row {
  border-bottom: 1px solid #999;
  margin-bottom: 2em;
  padding: 1em 1em 2em;
}

.soap-cell {
  display: flex;
  align-items: center;
}
.soap-cell--odd {
  background-color: #eee;
}
.soap-cell__item {
  flex-basis: 75%;
}
.soap-cell__item--header {
  color: #333333;
  flex-basis: 25%;
  font-size: 1.2em;
  line-height: 1.2em;
  padding-right: 1em;
}

.proxy-card__prod {
  display: none;
}

.bootstrap-tab .nav-tabs {
  margin-bottom: 5px;
}
.bootstrap-tab .nav-tabs li a {
  background: #15418c;
  color: #fff;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bootstrap-tab .nav-tabs li.active a {
  background-color: #072F54;
  color: #fff;
}
.bootstrap-tab .nav-tabs li.active a:hover {
  background: #072F54;
}
.bootstrap-tab .nav-tabs li a.active {
  background-color: #072F54;
  color: #fff;
}
.bootstrap-tab .nav-tabs li a.active:hover {
  background-color: #072F54;
}
.bootstrap-tab .tabs-mobile-dropdown {
  background: #15418c;
  border: none;
  border-radius: 0.25em;
  color: #fff;
  margin-bottom: 5px;
  max-width: 320px;
  overflow: hidden;
  padding: 3px;
  text-overflow: ellipsis;
}
.bootstrap-tab .tab-content {
  word-break: break-word;
}

/* RESPONSIVE BREAKPOINT MIXINS */
/*
  usage:
  @include for-phone-only {
    phone only styles here
  }
*/
.node-type-send-your-name #navbar {
  z-index: 998;
}

@media (min-width: 600px) {
  .fl-responsive-phone {
    display: none;
  }
}

@media (max-width: 600px) {
  .fl-responsive-tablet-port-up {
    display: none;
  }
}

@media (max-width: 900px) {
  .fl-responsive-tablet-landscape-up {
    display: none;
  }
}

@media (max-width: 1200px) {
  .fl-responsive-desktop-up {
    display: none;
  }
}

@media (min-width: 900px) {
  .fl-responsive-tablet-port-down {
    display: none;
  }
}

@media (min-width: 1200px) {
  .fl-responsive-tablet-landscape-down {
    display: none;
  }
}

@media (max-width: 599px) {
  xbody {
    border-left: 3px solid red;
  }
}
@media (min-width: 601px) {
  xbody {
    border-left: 3px solid yellow;
  }
}
@media (min-width: 901px) {
  xbody {
    border-left: 3px solid green;
  }
}
@media (min-width: 1201px) {
  xbody {
    border-left: 3px solid blue;
  }
}

/* VARIABLES: flight log fonts and colors */
/* TYPOGRAPHY: flight log specific font colors and styles */
.flight-log h1 {
  margin-top: 0;
  color: #1d76bc;
}
.flight-log h3 {
  color: #2a3c92;
  font-size: 28px;
}

.fl-pink {
  color: #ec3893;
}

.fl-underline {
  text-decoration: underline;
}

/* CLASSES: flight log specific miscelanous classes any styles */
.flight-log .fl-flex-centered {
  justify-content: center;
}
.flight-log .fl-flex-space-between {
  justify-content: space-between;
}
.flight-log .fl-hidden {
  display: none;
}
.flight-log .fl-active {
  display: block;
}
.flight-log .fl-left {
  float: left;
}
.flight-log .fl-right {
  float: right;
}
.flight-log .fl-center {
  margin-left: auto;
  margin-right: auto;
}
.flight-log .fl-text-right {
  text-align: right;
}
.flight-log .fl-text-left {
  text-align: left;
}
.flight-log .fl-text-center {
  text-align: center;
}
.flight-log .fl-overflow {
  overflow: hidden;
}
.flight-log .fl-flex {
  display: flex;
}
.flight-log .fl-flex.fl-gap-20 {
  gap: 20px;
}
@media (min-width: 601px) {
  .flight-log .fl-flex-portrait {
    display: flex;
  }
  .flight-log .fl-flex-portrait.fl-gap-20 {
    gap: 20px;
  }
}
@media (min-width: 901px) {
  .flight-log .fl-flex-landscape {
    display: flex;
  }
  .flight-log .fl-flex-landscape.fl-gap-20 {
    gap: 20px;
  }
}
@media (min-width: 1201px) {
  .flight-log .fl-flex-desktop {
    display: flex;
  }
  .flight-log .fl-flex-desktop.fl-gap-20 {
    gap: 20px;
  }
}
@media (min-width: 901px) {
  .flight-log .fl-menu-flex {
    display: flex;
  }
  .flight-log .fl-menu-flex.fl-gap-20 {
    gap: 20px;
  }
}
.flight-log ul {
  list-style: none;
}
.flight-log.fl-background-white, .flight-log .fl-background-white {
  background-color: #fff;
}
.flight-log .fl-underline-light-blue {
  border-bottom: 2px solid #b2e9ed;
}
.flight-log .fl-form-description {
  display: block;
  font-size: 14px;
}
.flight-log .fl-form-error {
  color: #c01141;
  font-size: 24px;
  font-weight: bold;
}
.flight-log input.fl-form-blue {
  border: 1px solid #b2e9ed;
  background-color: #b2e9ed;
  color: #2a3c92;
  font-size: 32px;
  margin-top: 4px;
  width: 100%;
}
.flight-log input.fl-form-underline {
  border: 0;
  border-bottom: 2px solid #b2e9ed;
  background-color: transparent;
  color: #2a3c92;
  width: 100%;
  font-size: 30px;
}
.flight-log input.fl-form-underline::placeholder {
  color: #2a3c92;
}
.flight-log button.fl-submit-button {
  background-color: #2a3c92;
  color: #fff;
  font-size: 24px;
  border: 0;
  padding: 4px 24px 4px 16px;
  margin-top: -7px;
}
.flight-log select.fl-form-select {
  font-size: 20px;
  border: 0;
  background-color: transparent;
}
.flight-log .fl-modal {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  z-index: 990;
}
.flight-log .fl-modal__border {
  background-image: url("/sites/all/ember/dist/images/flight-log/red-blue-white-stripes.png");
  height: 20px;
  background-repeat: no-repeat;
}
.flight-log .fl-modal__border--bottom {
  background-position: right;
  margin-bottom: -4px;
}
.flight-log .fl-modal__content {
  background-color: #fff;
  border-radius: 30px;
  filter: drop-shadow(6px 6px 6px #d0cfcf);
  width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -200px;
  margin-left: -250px;
  overflow: hidden;
}
.flight-log .fl-modal__content-content {
  height: 220px;
  padding: 12px;
}
.flight-log .fl-modal__close {
  float: right;
  border: 0;
  background-color: #fff;
  color: #2a3c92;
  font-size: 24px;
  font-weight: bold;
}
.flight-log .fl-modal__link {
  display: inline-block;
  background-color: #2a3c92;
  color: #fff;
  margin: 6px;
  padding: 6px 30px;
  text-align: center;
  font-size: 28px;
  margin-top: 24px;
}
.flight-log .fl-modal__link:hover {
  background-color: #c01141;
}
.flight-log .fl-modal__buttons {
  display: flex;
  justify-content: space-evenly;
}

/* TEMPLATE COMPONENT: styles for the overall layout of the app */
.flight-log {
  background-image: url("/sites/all/ember/dist/images/flight-log/Blue-White-Gradient-Background.png");
  background-size: cover;
  background-repeat: repeat-x;
  min-height: 966px;
}
.flight-log__attended {
  color: #000;
}
.flight-log__unattended {
  color: #a9a9a9;
}
.flight-log__clouds {
  background-image: url("/sites/all/ember/dist/images/flight-log/clouds.png");
  background-size: cover;
  position: relative;
  z-index: 995;
  background-position: bottom center;
  padding-bottom: 60px;
}
@media (min-width: 601px) {
  .flight-log__clouds {
    padding-bottom: 75px;
  }
}
@media (min-width: 901px) {
  .flight-log__clouds {
    padding-bottom: 100px;
  }
}
.flight-log__stripe {
  background-image: url("/sites/all/ember/dist/images/flight-log/red-blue-white-stripes.png");
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 10px;
  margin-bottom: 10px;
}
@media (min-width: 901px) {
  .flight-log__stripe {
    margin-bottom: 20px;
  }
}
.flight-log__banner {
  margin-left: 25px;
}
@media (max-width: 900px) {
  .flight-log__banner {
    margin-left: 0;
    padding-left: 75px;
    width: calc(100% - 75px);
    text-align: center;
  }
  .flight-log__banner .fl-banner-flex {
    justify-content: center;
  }
  .flight-log__banner img {
    max-width: 600px;
  }
}
@media (max-width: 599px) {
  .flight-log__banner img {
    max-width: 100%;
  }
}
.flight-log__banner img.fl-meatball {
  width: 90px;
  height: auto;
}
.flight-log__banner img.fl-banner {
  height: auto;
  width: calc(100% - 24px);
}
@media (min-width: 901px) {
  .flight-log__banner img.fl-meatball {
    width: 90px;
    height: auto;
  }
  .flight-log__banner img.fl-banner {
    width: 510px;
    height: auto;
  }
}
.flight-log__main-menu {
  margin-top: 5px;
  list-style: none;
  /* MAIN MENU ICONS */
}
.flight-log__main-menu .active {
  color: #c01141;
}
@media (max-width: 900px) {
  .flight-log__main-menu {
    background-color: #fff;
    margin-left: -100px;
    width: calc(100% + 25px);
    padding-bottom: 24px;
    position: absolute;
    display: none;
    top: 10vw;
  }
  .flight-log__main-menu.show-menu {
    display: block;
  }
}
@media (min-width: 1201px) {
  .flight-log__main-menu {
    margin-left: 60px;
  }
}
@media (max-width: 900px) {
  .flight-log__main-menu li {
    margin-top: 24px;
  }
}
@media (min-width: 1201px) {
  .flight-log__main-menu li {
    margin-right: 0;
  }
}
.flight-log__main-menu li a {
  color: #2a3c92;
  font-family: "Bebas Neue", "Titillium Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
}
.flight-log__main-menu li a:after {
  content: "";
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 6px;
  margin-bottom: -1px;
  width: 32px;
}
@media (min-width: 1201px) {
  .flight-log__main-menu li a:after {
    width: 40px;
  }
}
.flight-log__main-menu li a:hover {
  color: #c01141;
}
.flight-log__main-menu li a.flight-log__main-menu--option:after {
  content: "";
  height: unset;
  width: unset;
}
.flight-log__main-menu--name:hover .flight-log__main-menu--options {
  display: block;
}
.flight-log__main-menu--name-text:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/name-menu-icon-blue.png");
}
.flight-log__main-menu--name-text:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/name-menu-icon-red.png");
}
.flight-log__main-menu--options {
  display: none;
  position: absolute;
}
.flight-log__main-menu--options button, .flight-log__main-menu--options a {
  display: inline-block;
  color: #fff !important;
  padding: 8px 12px;
  width: 210px;
  text-align: left;
  background-color: #2a3c92;
}
.flight-log__main-menu--options button:hover, .flight-log__main-menu--options a:hover {
  background-color: #c01141;
}
.flight-log__main-menu--flight-log:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/flight-log-icon-blue.png");
}
.flight-log__main-menu--flight-log:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/flight-log-icon-red.png");
}
.flight-log__main-menu--flight-log.active:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/flight-log-icon-red.png");
}
.flight-log__main-menu--logout {
  background: none;
  border: none;
  padding: 0;
  color: #2a3c92;
  font-family: "Bebas Neue", "Titillium Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
}
.flight-log__main-menu--logout:after {
  content: "";
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 6px;
  margin-bottom: -1px;
  width: 32px;
}
@media (min-width: 1201px) {
  .flight-log__main-menu--logout:after {
    width: 40px;
  }
}
.flight-log__main-menu--logout:hover {
  color: #c01141;
}
.flight-log__main-menu--available-flights:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/select-flights-icon.png");
}
.flight-log__main-menu--available-flights:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/select-flights-icon-red.png");
}
.flight-log__main-menu--available-flights.active:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/select-flights-icon-red.png");
}
.flight-log__main-menu--boarding-pass:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/boarding-pass-icon-blue.png");
}
.flight-log__main-menu--boarding-pass:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/boarding-pass-icon-red.png");
}
.flight-log__main-menu--boarding-pass.active:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/boarding-pass-icon-red.png");
}
.flight-log__main-menu--maps:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/maps-icon-blue.png");
}
.flight-log__main-menu--maps:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/maps-icon-red.png");
}
.flight-log__main-menu--maps.active:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/maps-icon-red.png");
}
.flight-log__main-menu--learn-more:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/learn-more-icon-blue.png");
}
.flight-log__main-menu--learn-more:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/learn-more-icon-red.png");
}
.flight-log__main-menu--learn-more.active:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/learn-more-icon-red.png");
}
.flight-log__main-menu--do-more-stem:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/do-more-icon-blue.png");
}
.flight-log__main-menu--do-more-stem:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/do-more-icon-red.png");
}
.flight-log__main-menu--do-more-stem.active:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/do-more-icon-red.png");
}
.flight-log__number-media {
  margin-top: -8px;
}
.flight-log__number-media--under-banner {
  width: calc(100% - 125px);
}
@media (max-width: 900px) {
  .flight-log__number-media--under-banner {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 599px) {
  .flight-log__number-media--under-banner {
    width: 100%;
  }
}
.flight-log__number-media--number {
  font-family: "Bebas Neue", "Titillium Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1d76bc;
  text-align: right;
  font-size: 18px;
  margin-bottom: 8px;
  margin-right: 24px;
}
@media (min-width: 1201px) {
  .flight-log__number-media--number {
    margin-bottom: 20px;
  }
}
.flight-log__number-media--number.under-banner {
  text-align: left;
  margin-left: 20px;
  display: inline-block;
}
.flight-log__number-media--media {
  margin-right: 24px;
}
.flight-log__number-media--media ul {
  justify-content: flex-end;
}
@media (min-width: 1201px) {
  .flight-log__number-media--media ul {
    margin-right: 20px;
  }
}
.flight-log__number-media--media ul li {
  margin-right: 8px;
}
@media (min-width: 1201px) {
  .flight-log__number-media--media ul li {
    margin-right: 20px;
  }
}
.flight-log__number-media--media ul img {
  height: 32px;
}
@media (min-width: 1201px) {
  .flight-log__number-media--media ul img {
    height: 50px;
  }
}
@media (max-width: 1200px) {
  .flight-log__number-media--media ul img {
    margin: 0 12px;
  }
}
@media (max-width: 599px) {
  .flight-log__number-media--media ul img {
    height: 24px;
    margin: 0 8px;
  }
}
@media (max-width: 900px) {
  .flight-log__number-media--media.under-banner {
    margin-left: 0;
    width: 100%;
  }
  .flight-log__number-media--media.under-banner ul {
    justify-content: center;
  }
}
.flight-log__content-content {
  position: relative;
}
.flight-log__content-content select.form-control {
  margin: 24px;
  width: calc(100% - 48px);
}

.flight-log--available {
  display: block;
}
.flight-log--available .flight-log__content-wrapper {
  background-image: url("/sites/all/ember/dist/images/flight-log/select-flight-background.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 966px;
}
.flight-log--available .flight-log__content {
  width: 100%;
}

/* COMPONENTS: flight-log__<component> components that create specific screens */
.flight-log {
  /* <FlightLog::AboutFlightLogs> */
  /* <FlightLog::AvailableFlights> */
  /* <FlightLog::BoardingPass> */
  /* <FlightLog::BoardingPassFooter> */
  /* <FlightLog::Calendar> */
  /* <FlightLog::ContentArea> */
  /* <FlightLog::Endorsements> */
  /* <FlightLog::FlightLog> */
  /* <FlightLog::HowItWorksPage> */
  /* <FlightLog::Footer> */
  /* <FlightLog::Grid> */
  /* <FlightLog::HowItWorks> */
  /* <FlightLog::Upcoming> */
  /* <FlightLog::Landing> */
  /* <FlightLog::Maps> */
  /* <FlightLog::MapCount> */
  /* <FlightLog::MissionPatches> */
  /* <FlightLog::Search> */
  /* <FlightLog::Signup> */
  /* <FlightLog::SignupEducator> */
  /* <FlightLog::Slider> */
  /* <FlightLog::Tabs> */
  /* <FlightLog::ToggleMap> */
  /* <FlightLog::UsaMap> */
  /* <FlightLog::Videos> */
  /* <FlightLog::WorldMap> */
}
.flight-log--pad-bot {
  padding-bottom: 50px;
}
.flight-log__about-flight-logs img {
  pointer-events: none;
  cursor: none;
}
.flight-log__available-flights .fl-flights {
  height: 100%;
}
.flight-log__available-flights .fl-flights--scroll img {
  height: 50px;
  width: 50px;
}
.flight-log__available-flights .fl-flights-container--right {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  position: absolute;
  top: 225px;
  padding-left: 25px;
}
.flight-log__available-flights .fl-flights-container--left {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  position: absolute;
  top: 225px;
  padding-left: 25px;
}
.flight-log__available-flights .fl-flights-container {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  white-space: nowrap;
  width: calc(100% - 200px);
  margin-left: 100px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}
.flight-log__available-flights .fl-flights-container::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}
.flight-log__available-flights #fl-available-flights-left {
  height: 50px;
  width: 50px;
  background-image: url("/sites/all/ember/dist/images/flight-log/select-flights-left-button-blue.png");
  display: inline-block;
  background-size: contain;
}
.flight-log__available-flights #fl-available-flights-left:hover {
  background-image: url("/sites/all/ember/dist/images/flight-log/select-flights-left-button-red.png");
}
.flight-log__available-flights #fl-available-flights-right {
  height: 50px;
  width: 50px;
  background-image: url("/sites/all/ember/dist/images/flight-log/select-flights-right-button-blue.png");
  display: inline-block;
  background-size: contain;
}
.flight-log__available-flights #fl-available-flights-right:hover {
  background-image: url("/sites/all/ember/dist/images/flight-log/select-flights-right-button-red.png");
}
.flight-log__available-flights .fl-flight {
  width: 100%;
  height: 100%;
  padding: 100px 20px 20px;
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 901px) {
  .flight-log__available-flights .fl-flight {
    width: 50%;
  }
}
@media (min-width: 1201px) {
  .flight-log__available-flights .fl-flight {
    width: 33%;
  }
}
.flight-log__available-flights .fl-flight img {
  max-width: 100%;
}
.flight-log__available-flights .fl-center {
  margin-top: 40px;
}
.flight-log__available-flights button.fl-submit-button {
  padding: 5px 12px 5px 12px;
  margin-top: 0px;
  max-width: 100%;
}
.flight-log__available-flights button.fl-submit-button:disabled {
  background-color: #d6d6d6 !important;
  color: #A9A9A9 !important;
  cursor: default !important;
}
.flight-log__available-flights button.fl-submit-button:hover {
  cursor: default;
  background-color: #c01141;
}
.flight-log__available-flights button.fl-submit-button--sub {
  width: 100%;
}
@media (max-width: 500px) {
  .flight-log__available-flights button.fl-submit-button--sub {
    font-size: 18px;
    max-width: unset;
    width: unset;
  }
}
.flight-log__available-flights button.fl-submit-button--sub:hover {
  cursor: pointer;
}
@media (max-width: 500px) {
  .flight-log__available-flights button.fl-submit-button {
    font-size: 18px;
    max-width: unset;
  }
}
.flight-log__available-flights .flight-buttons:hover .flight-options {
  display: block;
}
.flight-log__boarding-pass {
  border: 1px solid #d0cfcf;
  width: 1366px;
  height: 570px;
  padding-left: 475px;
  padding-top: 35px;
  background-size: 100% 100%;
  text-transform: uppercase;
  font-family: tahoma;
}
.flight-log__boarding-pass--scroll {
  overflow-x: scroll;
}
.flight-log__boarding-pass .right {
  float: right;
}
.flight-log__boarding-pass .left {
  float: left;
}
.flight-log__boarding-pass #boarding-pass-number {
  text-align: right;
  padding-right: 6.5%;
  min-width: 400px;
}
.flight-log__boarding-pass #content-table {
  width: 100%;
}
.flight-log__boarding-pass #content-table-sub {
  margin-top: 4px;
  margin-bottom: 80px;
}
.flight-log__boarding-pass #content-table-sub td {
  padding-top: 18px;
}
.flight-log__boarding-pass .blue {
  color: #0a8ec2;
}
.flight-log__boarding-pass .black {
  color: #000;
}
.flight-log__boarding-pass .x-large {
  font-size: 64px;
}
.flight-log__boarding-pass .large {
  font-size: 45px;
}
.flight-log__boarding-pass .heading {
  font-size: 28px;
}
.flight-log__boarding-pass .medium {
  font-size: 32px;
}
.flight-log__boarding-pass .small {
  font-size: 18px;
}
.flight-log__boarding-pass .x-small {
  font-size: 16px;
}
.flight-log__boarding-pass-pdf {
  border: 1px solid #d0cfcf;
  width: 700px;
  height: 310px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-transform: uppercase;
  font-family: tahoma;
}
.flight-log__boarding-pass-pdf .right {
  float: right;
}
.flight-log__boarding-pass-pdf .left {
  float: left;
}
.flight-log__boarding-pass-pdf #content-table {
  margin-left: 250px;
  margin-top: 12px;
}
.flight-log__boarding-pass-pdf #content-table-sub {
  margin-top: 4px;
  margin-bottom: 24px;
}
.flight-log__boarding-pass-pdf .blue {
  color: #0a8ec2;
}
.flight-log__boarding-pass-pdf .black {
  color: #000;
}
.flight-log__boarding-pass-pdf .x-large {
  font-size: 32px;
}
.flight-log__boarding-pass-pdf .large {
  font-size: 24px;
}
.flight-log__boarding-pass-pdf .heading {
  font-size: 18px;
}
.flight-log__boarding-pass-pdf .medium {
  font-size: 16px;
}
.flight-log__boarding-pass-pdf .small {
  font-size: 10px;
}
.flight-log__boarding-pass-pdf .x-small {
  font-size: 8px;
}
.flight-log__calendar {
  padding: 50px 50px 50px 25px;
  justify-content: center;
  flex-wrap: wrap;
}
.flight-log__calendar h1.flight-log__calendar--heading {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #2a3c92;
}
.flight-log__calendar .ember-power-calendar-nav {
  color: #ec3893;
  background-color: #22428D;
  border-top-left-radius: 25px;
  height: 48px;
}
.flight-log__calendar .ember-power-calendar-nav-title {
  min-width: 210px;
}
.flight-log__calendar .ember-power-calendar-day--other-month {
  background-color: #22428D;
  color: #d6d6d6;
  font-size: 0;
}
.flight-log__calendar .ember-power-calendar-days {
  background-color: #22428D;
  height: 272px;
  border-bottom-left-radius: 25px;
}
.flight-log__calendar .ember-power-calendar-weekday {
  color: #4360ab;
  background-color: #22428D;
  border: 0;
}
.flight-log__calendar .ember-power-calendar-week {
  background-color: transparent;
  min-height: 40px;
}
.flight-log__calendar .ember-power-calendar-week button {
  color: #fff;
}
.flight-log__calendar .ember-power-calendar-day {
  border: 0 !important;
}
.flight-log__calendar .ember-power-calendar-day.fl-calendar-clickable {
  color: #ec3893;
  font-weight: bold;
}
.flight-log__calendar .ember-power-calendar-day.fl-calendar-clickable:hover {
  background-color: #4360ab;
}
.flight-log__calendar .ember-power-calendar-day--selected {
  background-color: #ec3893;
  border-radius: 25px;
  max-width: 40px;
}
.flight-log__calendar .ember-power-calendar-day--selected.ember-power-calendar-day.fl-calendar-clickable {
  color: #fff;
}
.flight-log__calendar .ember-power-calendar-nav-title {
  font-size: 26px;
}
.flight-log__calendar--calendar {
  width: 60%;
}
.flight-log__calendar--event {
  width: 40%;
  background-color: #002162;
  height: 320px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  color: #fff;
}
.flight-log__calendar--event span {
  display: block;
}
.flight-log__calendar--event span.calendar_event__day {
  color: #ec3893;
  font-size: 64px;
  text-align: center;
  padding-top: 12px;
}
.flight-log__calendar--event span.calendar_event__date, .flight-log__calendar--event span.calendar_event__first {
  color: #ec3893;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}
.flight-log__calendar--event span.calendar_event__multiple {
  color: #ec3893;
  font-weight: 700;
  text-decoration: underline;
  text-align: center;
}
.flight-log__calendar--event span.calendar_event__content {
  padding: 9px 18px 18px;
  overflow-y: scroll;
  height: 170px;
}
.flight-log__content-area {
  margin: 0 25px 25px 25px;
  padding: 25px;
  width: calc(100% - 50px);
  height: auto;
  border-bottom: 5px solid #2a3c92;
}
.flight-log__content-area--more {
  overflow-y: auto;
}
.flight-log__endorsements--passport-items {
  position: absolute;
  top: 15%;
  width: 100%;
  height: 70%;
}
.flight-log__endorsements--passport-items-0 {
  max-width: 180px;
  max-height: 180px;
  position: absolute;
  top: 0;
  left: 12%;
}
.flight-log__endorsements--passport-items-1 {
  max-width: 180px;
  max-height: 180px;
  position: absolute;
  top: 50%;
  left: 20%;
}
.flight-log__endorsements--passport-items-2 {
  max-width: 180px;
  max-height: 180px;
  position: absolute;
  top: 0;
  right: 12%;
}
.flight-log__endorsements--passport-items-3 {
  max-width: 180px;
  max-height: 180px;
  position: absolute;
  top: 50%;
  right: 20%;
}
.flight-log__endorsements--passport-item {
  border-bottom: 1px solid #1d76bc;
  margin-bottom: 12px;
}
.flight-log__endorsements--item {
  display: flex;
}
.flight-log__endorsements--left {
  flex: 0 64%;
  height: 585px;
  position: relative;
}
.flight-log__endorsements--left #firstPage {
  font-family: "Bebas Neue", "Titillium Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1d76bc;
  font-size: 3rem;
  position: absolute;
  bottom: 10%;
  left: 10.25%;
}
.flight-log__endorsements--left #nextPage {
  font-family: "Bebas Neue", "Titillium Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1d76bc;
  font-size: 3rem;
  position: absolute;
  bottom: 10%;
  right: 9.25%;
}
.flight-log__endorsements--left .swiper-button-next {
  margin-right: 3%;
}
.flight-log__endorsements--left .swiper-button-prev {
  margin-left: 4%;
}
.flight-log__endorsements--left img.flight-log__endorsements--passport-img {
  height: 200px;
  width: 200px;
}
.flight-log__endorsements--left img.flight-log__endorsements--passport {
  width: 100%;
  height: 100%;
}
.flight-log__endorsements--right {
  display: flex;
  flex-direction: column;
  flex: 0 32%;
}
.flight-log__endorsements--right-title {
  color: #1d76bc;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.flight-log__endorsements--right-items {
  color: #1d76bc;
  flex-grow: 1;
  font-size: 2rem;
  font-weight: 400;
}
.flight-log__endorsements--right form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.flight-log__endorsements--right form p {
  flex-basis: 100%;
}
.flight-log__endorsements--right form input {
  flex-grow: 1;
}
@media (max-width: 1200px) {
  .flight-log__endorsements img.flight-log__endorsements--passport-img {
    height: 160px;
    width: 160px;
  }
  .flight-log__endorsements--passport-items-0 {
    position: absolute;
    top: 0;
    left: 15%;
  }
  .flight-log__endorsements--passport-items-1 {
    position: absolute;
    top: 50%;
    left: 15%;
  }
  .flight-log__endorsements--passport-items-2 {
    position: absolute;
    top: 0;
    right: 15%;
  }
  .flight-log__endorsements--passport-items-3 {
    position: absolute;
    top: 50%;
    right: 15%;
  }
}
@media (max-width: 900px) {
  .flight-log__endorsements--item {
    flex-direction: column;
  }
  .flight-log__endorsements img.flight-log__endorsements--passport-img {
    height: auto;
    width: 100%;
    max-height: 160px;
  }
}
@media (max-width: 600px) {
  .flight-log__endorsements--left #firstPage {
    font-size: 2rem;
  }
  .flight-log__endorsements--left #nextPage {
    font-size: 2rem;
  }
  .flight-log__endorsements--right form {
    flex-direction: column;
  }
}
@media (max-width: 599px) {
  .flight-log__endorsements img.flight-log__endorsements--passport-img {
    height: auto;
    width: 100%;
    max-height: 100px;
  }
  .flight-log__endorsements--passport-items-0 {
    top: 20%;
    left: 15%;
    height: auto;
    max-width: 30%;
  }
  .flight-log__endorsements--passport-items-1 {
    top: 20%;
    right: 15%;
    left: unset;
    height: auto;
    max-width: 30%;
  }
  .flight-log__endorsements .swiper-button-prev {
    width: 10%;
    height: 20%;
    top: 50%;
  }
  .flight-log__endorsements .swiper-button-next {
    width: 10%;
    height: 20%;
    top: 50%;
  }
}
@media (max-width: 415px) {
  .flight-log__endorsements--left #firstPage {
    font-size: 1rem;
  }
  .flight-log__endorsements--left #nextPage {
    font-size: 1rem;
  }
}
.flight-log__flight-log .flight-log__table {
  border: 1px solid lightgray;
}
.flight-log__flight-log .flight-log__table--columnheader {
  background-color: #ffffff;
  border: 1px solid lightgray;
  font-weight: 600;
  padding: 6px 12px;
}
.flight-log__flight-log .flight-log__table--row:nth-child(odd) {
  background-color: #b2e9ed;
}
.flight-log__flight-log .flight-log__table--cell {
  padding: 3px 6px;
  border: 1px solid lightgray;
}
.flight-log__flight-log .flight-log__table--mobile {
  border: 0;
  width: 100%;
}
.flight-log__flight-log .flight-log__table--mobile thead {
  border: none;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.flight-log__flight-log .flight-log__table--mobile tr {
  background-color: #ffffff !important;
  border-bottom: 3px solid #ddd;
  display: block;
  margin-bottom: 0.625rem;
}
.flight-log__flight-log .flight-log__table--mobile td {
  border-bottom: 1px solid #ddd;
  display: block;
  font-size: 0.8em;
  text-align: right;
  min-height: 2rem;
}
.flight-log__flight-log .flight-log__table--mobile td:before {
  content: attr(data-label);
  float: left;
  font-weight: bold;
  text-transform: uppercase;
}
.flight-log__how-it-works-page {
  padding: 0 50px;
}
.flight-log__how-it-works-page .fl-modal__content {
  margin-top: -140px;
  width: 1000px;
  height: 550px;
  margin-left: -500px;
  margin-top: -225px;
}
.flight-log__how-it-works-page .fl-modal__content-content {
  color: #2a3c92;
  font-size: 18px;
  height: auto;
}
.flight-log__how-it-works-page .fl-modal__content-content a {
  color: #ec3893;
  margin-left: 0;
  text-decoration: underline;
}
.flight-log__how-it-works-page .fl-modal__content-content p:first-of-type {
  padding-top: 40px;
}
.flight-log__how-it-works-page--tabbed {
  padding: 0 !important;
  background-image: url("/sites/all/ember/dist/images/flight-log/Blue-White-Gradient-Background.png");
  background-size: cover;
}
.flight-log__how-it-works-page--header {
  text-align: center;
  color: #2a3c92;
  font-size: 24px;
  padding: 75px;
}
@media (max-width: 600px) {
  .flight-log__how-it-works-page--header {
    padding: 15px;
  }
}
.flight-log__how-it-works-page--balloon {
  min-height: calc(100vh - 600px);
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/hot-air-balloon.png");
  background-repeat: no-repeat;
  background-size: 10%;
  background-position: 10% 10%;
}
.flight-log__how-it-works-page--one-bird {
  min-height: calc(100vh - 600px);
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/one-bird.png");
  background-repeat: no-repeat;
  background-position: 70% 15%;
  background-size: 10%;
}
.flight-log__how-it-works-page--two-birds {
  min-height: calc(100vh - 600px);
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/two-birds.png");
  background-repeat: no-repeat;
  background-position: 60% bottom;
  background-size: 15%;
}
.flight-log__how-it-works-page--plane {
  min-height: calc(100vh - 600px);
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/read-more-plane-with-dotted-line.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
.flight-log__how-it-works-page--sun {
  min-height: calc(100vh - 600px);
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/sun.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 30%;
}
.flight-log__how-it-works-page--clouds {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10%;
}
.flight-log__how-it-works-page--clouds div {
  flex-basis: 25%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 24px;
  margin: 4% -8%;
  font-size: 18px;
  height: 240px;
}
@media (min-width: 901px) {
  .flight-log__how-it-works-page--clouds div {
    font-size: 14px;
    margin-bottom: 0;
  }
}
@media (min-width: 1201px) {
  .flight-log__how-it-works-page--clouds div {
    font-size: 18px;
    height: 280px;
  }
}
.flight-log__how-it-works-page--clouds-1, .flight-log__how-it-works-page--clouds-3, .flight-log__how-it-works-page--clouds-6, .flight-log__how-it-works-page--clouds-8 {
  color: #c01141;
}
.flight-log__how-it-works-page--clouds-2, .flight-log__how-it-works-page--clouds-4, .flight-log__how-it-works-page--clouds-5, .flight-log__how-it-works-page--clouds-7 {
  color: #1d76bc;
}
.flight-log__how-it-works-page--clouds-1 {
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/1-cloud-w-o-text.png");
  flex-basis: 90% !important;
  margin-left: 5% !important;
  padding-bottom: 10% !important;
}
@media (min-width: 901px) {
  .flight-log__how-it-works-page--clouds-1 {
    flex-basis: 20% !important;
    margin-left: 0% !important;
    padding-bottom: 95px !important;
  }
}
@media (max-width: 500px) {
  .flight-log__how-it-works-page--clouds-1 {
    padding-bottom: 22% !important;
    font-size: 16px !important;
  }
}
@media (max-width: 415px) {
  .flight-log__how-it-works-page--clouds-1 {
    padding-bottom: 26% !important;
    font-size: 14px !important;
  }
}
.flight-log__how-it-works-page--clouds-2 {
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/2-cloud-w-o-text.png");
  padding-bottom: 5% !important;
  flex-basis: 90% !important;
  margin-left: 5% !important;
}
@media (min-width: 601px) {
  .flight-log__how-it-works-page--clouds-2 {
    padding-bottom: 3% !important;
  }
}
@media (min-width: 901px) {
  .flight-log__how-it-works-page--clouds-2 {
    padding-bottom: 45px !important;
    flex-basis: 34% !important;
  }
}
@media (max-width: 500px) {
  .flight-log__how-it-works-page--clouds-2 {
    padding-bottom: 11% !important;
    font-size: 16px !important;
  }
}
@media (max-width: 415px) {
  .flight-log__how-it-works-page--clouds-2 {
    padding-bottom: 19% !important;
    font-size: 14px !important;
  }
}
.flight-log__how-it-works-page--clouds-3 {
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/3-cloud-w-o-text.png");
  z-index: 200;
  padding-bottom: 5% !important;
  flex-basis: 90% !important;
  margin-left: 5% !important;
}
@media (min-width: 901px) {
  .flight-log__how-it-works-page--clouds-3 {
    padding-bottom: 60px !important;
    flex-basis: 24% !important;
  }
}
@media (max-width: 500px) {
  .flight-log__how-it-works-page--clouds-3 {
    padding-bottom: 11% !important;
    font-size: 16px !important;
  }
}
@media (max-width: 415px) {
  .flight-log__how-it-works-page--clouds-3 {
    padding-bottom: 18% !important;
    font-size: 14px !important;
  }
}
.flight-log__how-it-works-page--clouds-4 {
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/4-cloud-w-o-text.png");
  z-index: 100;
  margin-right: 2% !important;
  padding-bottom: 5% !important;
  flex-basis: 90% !important;
  margin-left: 5% !important;
}
@media (min-width: 901px) {
  .flight-log__how-it-works-page--clouds-4 {
    flex-basis: 29% !important;
    padding-bottom: 60px !important;
  }
}
@media (max-width: 500px) {
  .flight-log__how-it-works-page--clouds-4 {
    padding-bottom: 11% !important;
    font-size: 16px !important;
  }
}
@media (max-width: 415px) {
  .flight-log__how-it-works-page--clouds-4 {
    padding-bottom: 21% !important;
    font-size: 14px !important;
  }
}
.flight-log__how-it-works-page--clouds-5 {
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/5-cloud-w-o-text.png");
  flex-basis: 90% !important;
  margin-left: 5% !important;
}
@media (min-width: 901px) {
  .flight-log__how-it-works-page--clouds-5 {
    margin-right: -5% !important;
    height: 200px !important;
    margin-top: -40px !important;
    margin-left: 0 !important;
    flex-basis: 35% !important;
  }
}
@media (min-width: 1201px) {
  .flight-log__how-it-works-page--clouds-5 {
    height: 240px !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 500px) {
  .flight-log__how-it-works-page--clouds-5 {
    padding-bottom: 8% !important;
    font-size: 16px !important;
  }
}
@media (max-width: 415px) {
  .flight-log__how-it-works-page--clouds-5 {
    padding-bottom: 15% !important;
    font-size: 14px !important;
  }
}
.flight-log__how-it-works-page--clouds-6 {
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/6-cloud-w-o-text.png");
  flex-basis: 90% !important;
  margin-left: 5% !important;
}
@media (min-width: 901px) {
  .flight-log__how-it-works-page--clouds-6 {
    margin-left: -2% !important;
    flex-basis: 36% !important;
    padding-bottom: 30px !important;
    margin-top: -40px !important;
    background-position: center bottom !important;
  }
}
@media (min-width: 1201px) {
  .flight-log__how-it-works-page--clouds-6 {
    margin-top: 0 !important;
  }
}
@media (max-width: 500px) {
  .flight-log__how-it-works-page--clouds-6 {
    padding-bottom: 17% !important;
    font-size: 16px !important;
  }
}
@media (max-width: 415px) {
  .flight-log__how-it-works-page--clouds-6 {
    padding-bottom: 23% !important;
    font-size: 14px !important;
  }
}
.flight-log__how-it-works-page--clouds-7 {
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/7-cloud-w-o-text.png");
  flex-basis: 90% !important;
  margin-left: 5% !important;
  padding-bottom: 10% !important;
}
@media (min-width: 601px) {
  .flight-log__how-it-works-page--clouds-7 {
    padding-bottom: 8% !important;
  }
}
@media (min-width: 901px) {
  .flight-log__how-it-works-page--clouds-7 {
    flex-basis: 22% !important;
    height: 190px !important;
    padding-bottom: 50px !important;
    margin-left: -2% !important;
    margin-top: -60px !important;
  }
}
@media (min-width: 1201px) {
  .flight-log__how-it-works-page--clouds-7 {
    margin-left: 0 !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 500px) {
  .flight-log__how-it-works-page--clouds-7 {
    padding-bottom: 17% !important;
    font-size: 16px !important;
  }
}
@media (max-width: 415px) {
  .flight-log__how-it-works-page--clouds-7 {
    padding-bottom: 25% !important;
    font-size: 14px !important;
  }
}
.flight-log__how-it-works-page--clouds-8 {
  background-image: url("/sites/all/ember/dist/images/flight-log/how-it-works/8-cloud-w-o-text.png");
  padding-bottom: 10% !important;
  flex-basis: 90% !important;
  margin-left: 5% !important;
}
@media (min-width: 601px) {
  .flight-log__how-it-works-page--clouds-8 {
    padding-bottom: 6% !important;
  }
}
@media (min-width: 901px) {
  .flight-log__how-it-works-page--clouds-8 {
    flex-basis: 34% !important;
    margin-left: -6% !important;
    margin-right: 0 !important;
    background-position: center bottom !important;
    margin-top: -40px !important;
    padding-bottom: 20px !important;
  }
}
@media (min-width: 1201px) {
  .flight-log__how-it-works-page--clouds-8 {
    margin-top: 0 !important;
  }
}
@media (max-width: 500px) {
  .flight-log__how-it-works-page--clouds-8 {
    padding-bottom: 14% !important;
    font-size: 16px !important;
  }
}
@media (max-width: 415px) {
  .flight-log__how-it-works-page--clouds-8 {
    padding-bottom: 20% !important;
    font-size: 14px !important;
  }
}
.flight-log__mission-patches--code {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.flight-log__mission-patches .grayscale {
  filter: grayscale(100%);
}
.flight-log__mission-patches--header {
  color: #1d76bc;
  font-size: 28px;
  font: "Bebas Neue", "Titillium Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.flight-log__mission-patches--patches {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: stretch;
}
.flight-log__mission-patches img {
  max-width: 30%;
  max-height: 400px;
  padding: 30px 0;
}
.flight-log__code--input {
  border: 1px solid #b2e9ed;
  background-color: #b2e9ed;
  color: #2a3c92;
  font-size: 20px;
}
.flight-log__code button {
  padding: 1px 20px;
  border: 0px;
  color: #fff;
  background-color: #2a3c92;
  font-size: 20px;
}
.flight-log__code-error {
  color: red;
}
.flight-log__code-success {
  color: #2a3c92;
}
.flight-log__past-passes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.flight-log__past-passes h3 {
  text-align: center;
}
.flight-log__footer {
  font-size: 18px;
  padding-top: 16px;
}
.flight-log__footer--link {
  color: #000;
  text-decoration: none;
}
.flight-log__footer--link:hover {
  color: #d6d6d6;
  text-decoration: none;
}
.flight-log__footer--left .flight-log__footer--utils {
  justify-content: center;
  width: calc(100% - 48px);
  margin-bottom: 24px;
}
@media (min-width: 1201px) {
  .flight-log__footer--left .flight-log__footer--utils {
    float: left;
    width: auto;
  }
}
.flight-log__footer--left .flight-log__footer--utils li:after {
  content: "|";
  padding-left: 2rem;
}
.flight-log__footer--left .flight-log__footer--utils li:last-child:after {
  padding-left: 0px;
  content: "";
}
.flight-log__footer--right {
  color: #2a3c92;
  padding-right: 24px;
  justify-content: center;
}
@media (min-width: 601px) {
  .flight-log__footer--right {
    width: calc(100% - 48px);
  }
}
@media (min-width: 1201px) {
  .flight-log__footer--right {
    float: right;
    width: auto;
  }
}
.flight-log__footer--right ul {
  justify-content: center;
}
@media (min-width: 1201px) {
  .flight-log__footer--right ul {
    justify-content: flex-end;
  }
}
@media (max-width: 599px) {
  .flight-log__footer--right ul a {
    display: inline-block;
    margin-top: 24px;
    text-align: center;
    width: 100%;
  }
}
.flight-log__footer--rlink {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  text-decoration: underline;
  font-family: "Bebas Neue", "Titillium Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.flight-log__footer--rlink:after {
  content: "";
  height: 30px;
  width: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 6px;
  margin-bottom: -1px;
}
.flight-log__footer--do-more:hover {
  color: #c01141;
}
.flight-log__footer--do-more:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/do-more-bottom-icon-red.png");
}
.flight-log__footer--do-more:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/do-more-bottom-icon-blue.png");
}
.flight-log__footer--print:hover {
  color: #c01141;
}
.flight-log__footer--print:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/printer-icon-red.png");
}
.flight-log__footer--print:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/printer-icon-blue.png");
}
.flight-log__footer--download:hover {
  color: #c01141;
}
.flight-log__footer--download:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/download-icon-red.png");
}
.flight-log__footer--download:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/download-icon-blue.png");
}
.flight-log__footer--activities:hover {
  color: #c01141;
}
.flight-log__footer--activities:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/flight-log-activities-icon-red.png");
}
.flight-log__footer--activities:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/flight-log-activities-icon.png");
}
.flight-log__footer--nasa-videos:hover {
  color: #c01141;
}
.flight-log__footer--nasa-videos:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/flight-logs-video-icon-red.png");
}
.flight-log__footer--nasa-videos:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/flight-logs-video-icon.png");
}
.flight-log__footer--print-endorsements:hover {
  color: #c01141;
}
.flight-log__footer--print-endorsements:hover:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/printer-icon-red.png");
}
.flight-log__footer--print-endorsements:after {
  background-image: url("/sites/all/ember/dist/images/flight-log/printer-icon-blue.png");
}
.flight-log__footer ul {
  gap: 20px;
}
.flight-log__grid {
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;
}
.flight-log__grid .flight-log__grid-item {
  display: flex;
  flex-direction: column;
  flex: 0 100%;
}
@media (min-width: 601px) {
  .flight-log__grid .flight-log__grid-item {
    flex: 0 45%;
  }
}
@media (min-width: 901px) {
  .flight-log__grid .flight-log__grid-item {
    flex: 0 30%;
  }
}
.flight-log__grid .flight-log__grid-item a img {
  width: 100%;
  height: 200px;
}
.flight-log__grid .flight-log__grid-item .more-link {
  font-size: 2rem;
  font-weight: 600;
}
.flight-log__grid .flight-log__grid-item .more-link:after {
  content: "";
  height: 14px;
  width: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 6px;
  margin-bottom: -1px;
  background-image: url("/sites/all/ember/dist/images/flight-log/learn-more-icon-blue.png");
}
.flight-log__how-it-works--button {
  display: inline-block;
  border: none;
  background-color: #2a3c92;
  color: #fff;
  margin: 6px;
  padding: 6px 30px;
  text-align: center;
  font-size: 28px;
  margin-top: 24px;
}
.flight-log__how-it-works--button:hover {
  background-color: #c01141;
}
.flight-log__how-it-works .fl-modal__content {
  margin-top: -140px;
  width: 1000px;
  height: 550px;
  margin-left: -500px;
  margin-top: -225px;
}
.flight-log__how-it-works .fl-modal__content-content {
  color: #2a3c92;
  font-size: 18px;
  height: auto;
}
.flight-log__how-it-works .fl-modal__content-content a {
  color: #ec3893;
  margin-left: 0;
  text-decoration: underline;
}
.flight-log__how-it-works .fl-modal__content-content p:first-of-type {
  padding-top: 40px;
}
.flight-log__upcoming {
  background-image: url("/sites/all/ember/dist/images/flight-log/Blue-White-Gradient-Background.png");
  background-size: cover;
  padding: 16px 32px;
}
.flight-log__upcoming--items {
  padding: 16px;
}
.flight-log__upcoming--item {
  display: flex;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid #d6d6d6;
  padding-bottom: 8px;
}
.flight-log__upcoming--date {
  color: #2a3c92;
  flex-basis: 40%;
}
.flight-log__upcoming--title {
  color: #ec3893;
  flex-basis: 60%;
}
.flight-log__upcoming h1.flight-log__upcoming--heading {
  color: #2a3c92;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 599px) {
  .flight-log__upcoming--item {
    flex-direction: column;
  }
}
.flight-log__landing {
  padding: 12px 12px 24px 12px;
  gap: 20px;
}
.flight-log__landing .flight-log__youtube-link {
  width: 100%;
  max-width: 400px;
  height: auto;
  padding-bottom: 20px;
}
.flight-log__landing-content {
  flex-basis: 58%;
  width: 100%;
  color: #2a3c92;
  font-size: 20px;
  font-weight: 600;
  padding: 50px 25px 50px 50px;
}
.flight-log__landing-content a {
  color: #ec3893;
  text-decoration: underline;
}
.flight-log__landing-content--links {
  gap: 20px;
  font-size: 24px;
  line-height: 42px;
}
.flight-log__landing-content--links .flight-log__landing-button {
  color: #fff;
  background-color: #2a3c92;
  padding: 2px 20px;
  text-decoration: none;
  font-size: 20px;
}
.flight-log__landing-content--links button.flight-log__landing-button {
  padding: 1px 20px;
  border: 0px;
  margin-bottom: 24px;
}
.flight-log__landing-content--links a.flight-log__landing-button {
  margin-bottom: 24px;
  display: inline-block;
}
.flight-log__landing-calendar {
  padding: 12px;
  width: 100%;
}
.flight-log__landing-upcoming {
  padding: 50px 50px 50px 25px;
  flex-basis: 38%;
}
.flight-log__maps-world, .flight-log__maps-usa {
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.flight-log__maps-world .flight-log__world-map, .flight-log__maps-usa .flight-log__world-map {
  width: 100%;
}
@media (min-width: 901px) {
  .flight-log__maps-world .flight-log__world-map, .flight-log__maps-usa .flight-log__world-map {
    float: left;
    width: 75%;
  }
}
.flight-log__maps-world .flight-log__usa-map, .flight-log__maps-usa .flight-log__usa-map {
  width: 100%;
}
@media (min-width: 901px) {
  .flight-log__maps-world .flight-log__usa-map, .flight-log__maps-usa .flight-log__usa-map {
    float: left;
    width: 70%;
  }
}
.flight-log__map-count {
  color: #2a3c92;
  font-size: 18px;
  width: calc(100% - 48px);
  margin-left: 24px;
  margin-bottom: 24px;
}
@media (min-width: 901px) {
  .flight-log__map-count {
    float: right;
    width: calc(25% - 20px);
    margin-right: 20px;
  }
}
.flight-log__map-count--border {
  background-image: url("/sites/all/ember/dist/images/flight-log/red-blue-white-stripes.png");
  height: 13px;
  background-repeat: no-repeat;
}
.flight-log__map-count--table-wrapper {
  padding: 20px;
}
.flight-log__map-count table {
  width: 100%;
}
.flight-log__map-count tbody, .flight-log__map-count thead tr {
  display: block;
}
.flight-log__map-count thead {
  border-bottom: 3px solid #d6d6d6;
}
.flight-log__map-count tbody {
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}
.flight-log__map-count tbody tr {
  border-bottom: 1px solid #d6d6d6;
  display: flex;
  justify-content: space-between;
}
.flight-log__map-count .total-table {
  border-top: 3px solid #d6d6d6;
  width: 100%;
  margin-top: 5px;
}
.flight-log__map-count .flight-log__map-count--table .fl-text-left {
  width: 50%;
}
.flight-log__search {
  padding: 35px;
  color: #2a3c92;
}
.flight-log__search h3 {
  margin-top: 0px;
}
.flight-log__search .fl-form {
  gap: 45px;
}
@media (min-width: 601px) {
  .flight-log__search .fl-form div {
    width: 45%;
  }
}
@media (min-width: 901px) {
  .flight-log__search .fl-form div {
    width: calc(100% - 24px);
  }
}
@media (min-width: 1201px) {
  .flight-log__search .fl-form div {
    width: 45%;
  }
}
.flight-log__search-left {
  flex-basis: 58%;
  width: 100%;
  font-size: 30px;
  padding-right: 20px;
}
.flight-log__search-left .fl-form-item {
  width: 50%;
  padding-bottom: 20px;
}
@media (min-width: 601px) {
  .flight-log__search-left .fl-form-item {
    width: 50%;
  }
}
@media (min-width: 901px) {
  .flight-log__search-left .fl-form-item {
    width: calc(100% - 20px);
  }
}
@media (min-width: 1201px) {
  .flight-log__search-left .fl-form-item {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .flight-log__search-left .fl-form-item {
    width: 100%;
  }
}
.flight-log__search-left p {
  font-size: 14px;
}
.flight-log__search-right {
  width: 100%;
  padding-top: 35px;
}
.flight-log__search-right p {
  font-size: 16px;
}
.flight-log__search-right strong {
  font-size: 20px;
}
.flight-log__search-options {
  color: #2a3c92;
  font-size: 20px;
}
.flight-log__search .fl-form-select {
  font-size: 16px;
  width: calc(100% - 120px);
}
.flight-log__signup {
  padding: 12px 12px 24px 12px;
  gap: 24px;
  color: #2a3c92;
}
.flight-log__signup .fl-form {
  column-gap: 45px;
}
.flight-log__signup-left {
  flex-basis: 58%;
  width: 100%;
  font-size: 38px;
}
.flight-log__signup-left .flight-log__checkbox {
  display: inline;
  font-size: 24px;
  line-height: 24px;
  font-weight: normal;
}
@media (max-width: 1200px) and (min-width: 900px) {
  .flight-log__signup-left .fl-flex-portrait {
    display: block;
  }
}
.flight-log__signup-left .fl-form {
  justify-content: space-around;
}
.flight-log__signup-left .fl-signup-location {
  justify-content: space-around;
}
.flight-log__signup-right {
  flex-basis: 38%;
  width: 100%;
  padding-top: 35px;
}
.flight-log__signup-right p {
  font-size: 16px;
}
.flight-log__signup-right strong {
  font-size: 20px;
}
.flight-log__signup-options {
  color: #2a3c92;
  font-size: 20px;
}
.flight-log__signup-options--location {
  font-size: 30px;
}
@media (min-width: 601px) {
  .flight-log__signup-options--location {
    padding-right: 24px;
  }
}
.flight-log__signup-options--submit {
  font-size: 30px;
}
.flight-log__signup .fl-form-select {
  width: 250px;
}
@media (min-width: 601px) {
  .flight-log__signup .fl-form-select {
    width: 160px;
  }
}
.flight-log__signup--educator {
  /* inherits all the styles from .flight-log__signup */
  padding: 35px;
}
.flight-log__signup--educator .flight-log__signup-left {
  font-size: 24px;
}
.flight-log__signup--educator .flight-log__signup-left .flight-log__checkbox {
  display: inline;
  font-size: 24px;
  line-height: 24px;
  font-weight: normal;
}
.flight-log__signup--educator input.fl-form-underline {
  font-size: 24px;
}
.flight-log__signup--educator .fl-form-double {
  width: 95%;
  margin-top: 20px;
}
.flight-log__signup--educator .flight-log__landing-button {
  margin-top: 50px;
}
.flight-log__signup--educator .fl-form-select {
  width: 280px;
}
.flight-log__slider {
  position: absolute;
  width: 100%;
  top: -130px;
  z-index: 980;
  /* .flight-log__slider-spacer */
}
.flight-log__slider .swiper-slide {
  margin-top: 90px;
  height: auto;
}
@media (min-width: 601px) {
  .flight-log__slider .swiper-slide {
    margin-top: 0;
    height: 500px;
  }
}
.flight-log__slider img {
  width: 100%;
  height: 100%;
}
.flight-log__slider .flex-direction-nav a {
  height: 50px;
}
.flight-log__slider .flex-direction-nav a:before {
  color: #fff;
  text-shadow: 0 1px 1px rbga(0, 0, 0, 0.3);
}
.flight-log__slider .flex-control-nav {
  bottom: 10px;
  z-index: 999;
}
.flight-log__slider .flex-control-nav a {
  background-color: #fff;
  height: 12px;
  width: 12px;
  box-shadow: none;
}
.flight-log__slider .flex-control-nav a.flex-active {
  background-color: #c01141;
}
.flight-log__slider .flex-control-nav a:hover {
  background-color: #d6d6d6;
}
.flight-log__slider .flex-control-paging {
  display: block;
}
.flight-log__slider-spacer {
  width: 100%;
  height: 220px;
}
@media (min-width: 415px) {
  .flight-log__slider-spacer {
    height: 365px;
  }
}
.flight-log__tabs {
  column-gap: 10px;
  margin: 50px 25px 0 25px;
  border-bottom: 3px solid #d0cfcf;
  padding-left: 0;
}
.flight-log__tabs button {
  border: 0;
  background-color: #d6d6d6;
  color: #2a3c92;
  padding: 5px 12px;
  font-size: 16px;
}
@media (min-width: 1201px) {
  .flight-log__tabs button {
    font-size: 24px;
  }
}
.flight-log__tabs button.fl-active {
  background-color: #fff;
}
.flight-log__toggle-map {
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.flight-log__toggle-map button {
  color: #2a3c92;
  background-color: #d6d6d6;
  border: 0;
  font-size: 24px;
  padding: 5px 30px;
}
.flight-log__toggle-map button#world-map-button {
  border-radius: 25px 0 0 25px;
}
.flight-log__toggle-map button#usa-map-button {
  border-radius: 0 25px 25px 0;
}
.flight-log__toggle-map button.fl-active {
  background-color: #2a3c92;
  color: #d6d6d6;
}
.flight-log__usa-map {
  width: 75%;
  padding: 0 100px;
}
.flight-log__videos--code form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.flight-log__videos--code form .flight-log__code--input,
.flight-log__videos--code form .flight-log__code--button {
  flex-grow: 1;
}
.flight-log__videos--code form p {
  flex-basis: 100%;
}
.flight-log__videos--code form input {
  flex-grow: 1;
}
.flight-log__videos img {
  width: 240px;
  height: 135px;
}
.flight-log__videos a.grayscale {
  filter: grayscale(100%);
}
.flight-log__videos a:hover {
  text-decoration: none;
}
.flight-log__videos a.disabled {
  pointer-events: none;
  cursor: default;
}
.flight-log__videos--title {
  text-transform: none;
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
}
.flight-log__videos--description {
  text-transform: none;
  color: #000;
}
.flight-log__videos--body-title {
  font-family: "Bebas Neue", "Titillium Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 5rem;
  line-height: 5rem;
  text-transform: uppercase;
  padding-bottom: 2rem;
  color: #1d76bc;
}
.flight-log__videos--body-text {
  flex-grow: 1;
  font-size: 2rem;
  color: #1d76bc;
  line-height: 2.5rem;
}
.flight-log__videos--item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flight-log__videos--item-left {
  display: flex;
  flex: 0 1 64%;
}
.flight-log__videos--item-right {
  display: flex;
  flex-direction: column;
  flex: 0 1 32%;
}
.flight-log__videos nav {
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .flight-log__videos--body-text {
    padding-bottom: 25px;
  }
  .flight-log__videos--code form {
    flex-direction: column;
  }
  .flight-log__videos--item {
    flex-direction: column;
  }
  .flight-log__videos--item-left {
    order: 1;
  }
  .flight-log__videos--item-right {
    order: 0;
  }
}
@media (max-width: 600px) {
  .flight-log__videos .flight-log__grid-item {
    flex: 0 100%;
    flex-direction: column;
    align-items: center;
  }
}
.flight-log__world-map {
  width: 75%;
  padding: 0 100px;
  margin-left: -10%;
}

/*  New styles should fit into one of the groups above. */
/* VARIABLES: send youzor name fonts and colors */
/* RESPONSIVE BREAKPOINT MIXINS */
@media (max-width: 600px) {
  xbody {
    border-left: 3px solid red;
  }
}
@media (min-width: 601px) {
  xbody {
    border-left: 3px solid yellow;
  }
}
@media (min-width: 900px) {
  xbody {
    border-left: 3px solid green;
  }
}
@media (min-width: 1366px) {
  xbody {
    border-left: 3px solid blue;
  }
}

/* CLASSES: send-your-name specific miscelanous classes any styles */
.synts__error {
  font-size: 28px;
  color: #dd0000;
  font-weight: bold;
}
.synts__text {
  color: #ffffff;
  font-size: 22px;
}
.synts__text p {
  filter: drop-shadow(2px 2px 1px #000000);
}
.synts__links ul {
  transform: rotate(-30deg);
  list-style: none;
  padding-top: 5%;
  padding-bottom: 10%;
  margin-right: 43%;
}
@media (min-width: 601px) {
  .synts__links ul {
    margin-right: 45%;
  }
}
@media (min-width: 700px) {
  .synts__links ul {
    margin-right: 55%;
  }
}
@media (min-width: 900px) {
  .synts__links ul {
    margin-right: 35%;
  }
}
@media (min-width: 1366px) {
  .synts__links ul {
    margin-right: 240px;
  }
}
.synts__links li {
  padding-top: 10%;
  text-align: right;
  transform: rotate(30deg);
  margin-right: -5%;
}
.synts__links li::after {
  content: "➤";
  color: #ffffff;
  margin-left: 2%;
  font-size: 20px;
  filter: drop-shadow(2px 2px 1px #000000);
}
@media (min-width: 900px) {
  .synts__links li::after {
    font-size: 28px;
  }
}
.synts__links li.synts__2-rows::after {
  vertical-align: 50%;
}
.synts__links a, .synts__links button {
  color: #ffffff;
  display: inline-block;
  line-height: 1;
  filter: drop-shadow(2px 2px 1px #000000);
  font-size: 24px;
  border: 0;
  background-color: transparent;
}
@media (min-width: 900px) {
  .synts__links a, .synts__links button {
    font-size: 32px;
  }
}
@media (min-width: 1366px) {
  .synts__links a, .synts__links button {
    font-size: 36px;
  }
}

/* TEMPLATE COMPONENT: styles for the overall layout of the app */
.synts {
  background-image: url("/sites/all/ember/dist/images/send-your-name/background.png");
  background-size: cover;
  background-position: center;
  min-height: 800px;
}
.synts.learn-more {
  background-image: url("/sites/all/ember/dist/images/send-your-name/background-learn-more.png");
}
.synts.signup, .synts.search {
  background-image: url("/sites/all/ember/dist/images/send-your-name/background-signup.png");
}
.synts.boarding-pass {
  background-image: url("/sites/all/ember/dist/images/send-your-name/background-boarding-pass.png");
}
@media (min-width: 601px) {
  .synts {
    min-height: 84vw;
  }
}
@media (min-width: 900px) {
  .synts {
    min-height: 56vw;
  }
}
@media (min-width: 1366px) {
  .synts {
    min-height: 770px;
  }
}
.synts__logout {
  float: right;
  margin-right: 24px;
  margin-top: -48px;
}
.synts__logout button {
  color: #ffffff;
  display: inline-block;
  line-height: 1;
  filter: drop-shadow(2px 2px 1px #000000);
  font-size: 24px;
  border: 0;
  background-color: transparent;
}
.synts__heading {
  width: 100%;
}
@media (min-width: 601px) {
  .synts__heading {
    display: flex;
  }
}
.synts__heading--banner {
  padding: 3%;
  flex-basis: 100%;
}
@media (min-width: 601px) {
  .synts__heading--banner {
    flex-basis: 79%;
  }
}
.synts__heading--banner img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(2px 2px 1px #000000);
}
.synts__heading--logos {
  padding: 3%;
  display: flex;
  justify-content: center;
  flex-basis: 100%;
}
@media (min-width: 601px) {
  .synts__heading--logos {
    flex-basis: 21%;
  }
}
.synts__heading--logos img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  .synts__heading--logos img {
    width: 25%;
  }
}
.synts__content {
  display: flex;
  column-gap: 5%;
  min-height: 650px;
}
@media (min-width: 601px) {
  .synts__content {
    min-height: 72vw;
  }
}
@media (min-width: 900px) {
  .synts__content {
    min-height: 45vw;
  }
}
@media (min-width: 1366px) {
  .synts__content {
    min-height: 600px;
  }
}
.synts__content--social-media {
  display: flex;
  flex-direction: column-reverse;
  width: 10%;
}
.synts__content--social-media #synts__atremis-logo {
  height: auto;
  width: 175%;
  margin-left: 30%;
  max-width: 125px;
  margin-bottom: 25%;
}

/* COMPONENTS: synts__<component> components that create specific screens */
.synts__landing {
  margin-top: 3%;
  margin-left: 5%;
  width: 90%;
}
@media (min-width: 900px) {
  .synts__landing {
    margin-left: 15%;
    width: 55%;
  }
}
.synts__learn-more {
  margin-top: 3%;
  margin-left: 5%;
  width: 90%;
}
@media (min-width: 900px) {
  .synts__learn-more {
    margin-left: 15%;
    width: 80%;
  }
}
.synts__learn-more .synts__links ul {
  margin-right: 30%;
}
@media (min-width: 601px) {
  .synts__learn-more .synts__links ul {
    margin-right: 40%;
  }
}
@media (min-width: 700px) {
  .synts__learn-more .synts__links ul {
    margin-right: 45%;
  }
}
@media (min-width: 900px) {
  .synts__learn-more .synts__links ul {
    margin-right: 54%;
  }
}
@media (min-width: 1366px) {
  .synts__learn-more .synts__links ul {
    margin-right: 540px;
  }
}
.synts__learn-more .synts__links li::after {
  font-size: 20px;
}
@media (min-width: 900px) {
  .synts__learn-more .synts__links li::after {
    font-size: 24px;
  }
}
@media (min-width: 1366px) {
  .synts__learn-more .synts__links li::after {
    font-size: 28px;
  }
}
.synts__learn-more .synts__links a {
  font-size: 20px;
}
@media (min-width: 900px) {
  .synts__learn-more .synts__links a {
    font-size: 26px;
  }
}
@media (min-width: 1366px) {
  .synts__learn-more .synts__links a {
    font-size: 36px;
  }
}
.synts__social-media {
  display: flex;
  flex-direction: column;
  max-width: 75px;
}
.synts__social-media img {
  width: 45px;
  height: auto;
}
.synts__signup form {
  border-top: 1px solid #e3ddf3;
  background-color: transparent;
  width: 90%;
}
@media (max-width: 600px) {
  .synts__signup form {
    width: 75%;
  }
}
.synts__signup input {
  color: #ffffff;
  padding-top: 2%;
}
.synts__signup input::placeholder {
  color: #ffffff;
}
@media (min-width: 601px) {
  .synts__signup input:nth-child(1) {
    margin-left: 8%;
    width: 92%;
  }
  .synts__signup input:nth-child(2) {
    margin-left: 16%;
    width: 84%;
  }
  .synts__signup input:nth-child(3) {
    margin-left: 22%;
    width: 78%;
  }
}
.synts__signup .synts__signup-checkbox {
  margin-top: 3%;
  color: white;
  font-size: 32px;
}
@media (min-width: 601px) {
  .synts__signup .synts__signup-checkbox {
    margin-left: 25%;
  }
}
.synts__signup .synts__signup-checkbox .synts-form-description {
  font-size: 18px;
  display: inline-block;
  margin-left: 34px;
  filter: drop-shadow(2px 2px 1px #000000);
}
.synts__signup .synts__signup-checkbox label {
  filter: drop-shadow(2px 2px 1px #000000);
}
.synts__signup .synts__signup-checkbox input {
  width: auto;
  margin-left: 0;
  height: 24px;
  width: 24px;
}
.synts__signup input.synts-form-big {
  border: 0;
  border-bottom: 1px solid #e3ddf3;
  background-color: transparent;
  font-weight: bold;
  font-size: 50px;
  max-width: 100%;
}
.synts__signup input.synts-form-small {
  border: 0;
  border-bottom: 1px solid #e3ddf3;
  background-color: transparent;
  font-weight: bold;
  font-size: 36px;
  max-width: 100%;
}
.synts__signup button {
  border: 0;
  background-color: transparent;
  color: #ffffff;
  font-size: 32px;
  margin-top: 2%;
  font-weight: bold;
  filter: drop-shadow(2px 2px 1px #000000);
}
@media (min-width: 601px) {
  .synts__signup button {
    margin-left: 26%;
  }
}
.synts__signup button::after {
  content: "➤";
  font-size: 32px;
  color: #ffffff;
  margin-left: 6%;
  vertical-align: 6%;
}
.synts__boarding-pass--menu {
  padding-bottom: 24px;
}
@media (min-width: 601px) {
  .synts__boarding-pass--menu {
    text-align: right;
  }
}
.synts__boarding-pass--menu a {
  display: inline-block;
  padding-left: 48px;
  font-size: 28px;
  color: #ffffff;
  filter: drop-shadow(2px 2px 1px #000000);
}
.synts__boarding-pass--menu #synts-download::after {
  content: "";
  margin-left: 6px;
  margin-bottom: -4px;
  height: 27px;
  width: 27px;
  display: inline-block;
  background-image: url("/sites/all/ember/dist/images/send-your-name/icon-download.png");
}
.synts__boarding-pass--menu #synts-print::after {
  content: "";
  margin-left: 6px;
  margin-bottom: -4px;
  height: 27px;
  width: 27px;
  display: inline-block;
  background-image: url("/sites/all/ember/dist/images/send-your-name/icon-print.png");
}
.synts__boarding-pass--wrapper {
  height: 451px;
  max-width: calc(100vw - 130px);
  overflow-x: scroll;
}
.synts__boarding-pass--pass {
  height: 415px;
  width: 1000px;
  background-size: contain;
  background-image: url("/sites/all/ember/dist/images/send-your-name/boarding-pass.png");
}
.synts__boarding-pass--name {
  font-size: 42px;
  font-weight: bold;
  color: #000000;
  padding-top: 110px;
  padding-left: 360px;
}

.skip-link {
  position: absolute;
  top: 10px;
  z-index: -1;
  margin-left: 10px;
  padding: 8px;
  color: #fff;
  background-color: #002052;
  border-radius: 3px;
}

.skip-link:focus-visible {
  z-index: 500;
}

.skip-link:hover {
  color: #C7511F;
  cursor: pointer;
  text-decoration: underline;
  outline-width: 3px;
  outline-color: #C7511F;
}

.atm-s > a:focus {
  background: #2095f0;
  text-decoration: none;
  color: #fff !important;
}

@font-face {
  font-family: "Glyphicons Halflings";
  src: url(/sites/all/themes/custom/nasatwo/fonts/glyphicons-halflings-regular.eot);
  src: url(/sites/all/themes/custom/nasatwo/fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(/sites/all/themes/custom/nasatwo/fonts/glyphicons-halflings-regular.woff) format("woff"), url(/sites/all/themes/custom/nasatwo/fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(/sites/all/themes/custom/nasatwo/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}