/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */

/*
 * Body
 */

/*html,*/
body {
  background: #000;
  margin: 0;
  padding: 0;
}

#header, #main, .region-bottom {
   max-width: 100%;
}

.th-wrapper {background-color: black;}

@-webkit-keyframes movetophat {
  0%   {top: -32px; opacity: 0;}
  50%   {top: -16px; opacity: 0;}
  100% {top: 0px; opacity: 1;}
}
@-moz-keyframes movetophat {
  0%   {top: -32px; opacity: 0;}
  50%   {top: -16px; opacity: 0;}
  100% {top: 0px; opacity: 1;}
}
@-o-keyframes movetophat {
  0%   {top: -32px; opacity: 0;}
  50%   {top: -16px; opacity: 0;}
  100% {top: 0px; opacity: 1;}
}
@keyframes movetophat {
  0%   {top: -32px; opacity: 0;}
  50%   {top: -16px; opacity: 0;}
  100% {top: 0px; opacity: 1;}
}

#earthdata-tophat2 {
  -webkit-animation: movetophat 1s;
  -moz-animation:    movetophat 1s;
  -o-animation:      movetophat 1s;
  animation:         movetophat 1s;
  position: relative;
  width: 100% !important;
  height: 32px !important;
}
#earthdata-tophat2 a:link, #earthdata-tophat2 a:visited {
  color:white !important;
}
#name-and-slogan a:link, #name-and-slogan a:visited {
  color: black !important;
}

/**
 * Dynamic Iframe Markup
 */
.dynamic-iframe {
	position: relative;
	width: 100%;
	height: 0;
	padding: 0;
	margin: 0;
}
.dynamic-iframe iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 * See the element-focusable rule in system.base.css.
 */

#skip-link {
  margin: 0;
}
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/*
 * Header
 */
#browser-compatibility {
  color: #c34545;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  padding: 10px;
  text-align: center;
}
#browser-compatibility a,
#browser-compatibility a:hover {
  color: #3d81be;
}
#header-container {
  position: relative;
  z-index: 5;
  overflow-x: hidden;
  background-color: #000;
}
#header {
  position: relative;
  z-index: 15;
  padding-bottom: 25px;
}
@media all and (max-width: 950px) {
  #header {
    padding-bottom: 52px;
  }
}
header,
footer,
#navigation,
#earthdata-tophat2 {
  font-size: 13px;
  line-height: normal;
}

#navigation { position: relative; }

#header-banner {
	position: absolute;
	z-index: 5;
	bottom: 0;
	width: 1500px;
	height: 195px;
	min-width: 1500px;
	max-width: none;
	left: 50%;
	margin-left: -750px;
	background-image: url('../images/header-banner@x1.jpg');
	background-repeat: no-repeat;
	-webkit-background-size: 1500px;
	-moz-background-size: 1500px;
	-o-background-size: 1500px;
	background-size: 1500px;
  }
  #header-satellite {
	position: absolute;
	z-index: 5;
	/*bottom: 10px;*/ bottom: 15px;
	right: 10px;
	width: 420px;
	height: 84px;
	background-image: url('../images/satellite@x1.png');
	background-repeat: no-repeat;
	-webkit-background-size: 420px 84px;
	-moz-background-size: 420px 84px;
	-o-background-size: 420px 84px;
	background-size: 420px 84px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
  opacity: 0.7;
  transition: all 0.5s ease-in-out;
  }
  #name-and-slogan { /* Wrapper for website name and slogan */
	position: relative;
	z-index: 10;
	float: left;
	clear: both;
	width: 350px;
  }

#logo { /* Wrapping link for logo */
  display: block; /* LTR */
  margin: 0;
  padding: 0;
}
#logo img {
  vertical-align: bottom;
  width: 320px;
  height: 70px;
}
#JPL-banner {
  height: 70px;
  /*margin-top: 0px;*/
}
#site-name { /* The name of the website */
  display: none;
  /* margin: 0; */
  /* font-size: 2em; */
  /* line-height: 1.5em; */
}
#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}
#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}
#site-slogan { /* The slogan (or tagline) of a website */
  margin: 0;
  color: #fff;
  font-size: 0.8em;
  font-weight: normal;
  font-family: "Futura", Arial, Sans-serif;
}
.region-header { /* Wrapper for any blocks placed in the header region */
  clear: both; /* Clear the logo */
}
div.contextual-links-wrapper a {
	line-height: 1.5em !important;
}


/*
 * Main (container for everything else)
 */

.front #main {
  position: relative;
  z-index: 10;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
  padding-bottom: 10px;
}

#main-container {
  position: relative;
  z-index: 10;
  top: -15px;
}

.front #content-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  height: 100%;
  width: 100%;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.front #backdrop {
  background: #162b48;
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #1f3c62;
}
.region-content {
  padding-left: 0;
  padding-right: 0;
}

.not-front #main {
  background-color:transparent;
  background:#fff;
  border-radius: 0;
}

.not-front #main-container {
  top: 0;
  background-color: #fff;
}


@media all and (max-width: 767px) {
  #content-container {
   margin-top: 0px !important;
  }
}
#content-container,
.content-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.not-front #content-container {
  margin-bottom: 1em;
}

.front #content-container {
  padding-top: 1em;
  background-color: #c7dcf6;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  -o-border-radius: 15px 15px 0 0;
  border-radius: 15px 15px 0 0;
  max-width: 1100px;
}

/* .page.provider-pocloud #content-container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
} */

.front #footer {
  background-color: #c7dcf6;
  -webkit-border-radius: 0 0 15px 15px;
  -moz-border-radius: 0 0 15px 15px;
  -o-border-radius: 0 0 15px 15px;
  border-radius: 0 0 15px 15px;
  padding-bottom: 1em;
}

.node-type-mission-template #content-container {
  max-width: 100%;
}

#content {
  border-radius: 0;
  border: 0;
}

#navigation {
  background: #162b48;
}
#navigation a { color: #fff; }
/*
 * Content
 */

#content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  /*
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #5978a0;
  */
  background: #fff;
  padding: 10px;
}
@media only screen and (max-width: 414px){
  .region-content {
    padding-left: 0px;
    padding-right: 0px;
  }
}
#content a,
.sidebar a {
  color: #2f518f;
	white-space: pre-wrap;
}

.region-highlighted {
}

.breadcrumb { /* The path to the current page in the form of a list of links */
}
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1.title, /* The title of the page */
h2.node-title, /* Title of a piece of content when it is given in a list of content */
h2.block-title, /* Block title */
h2.title, /* Comment section heading */
h2.comment-form, /* Comment form heading */
h3.title { /* Comment title */
  margin: 0.75em 0;
}

tr.even { /* Some tables have rows marked even or odd. */
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

.tabs { /* See also the tabs.css file. */
}

.region-help { /* Help text on a page */
}

.more-help-link { /* Link to more help */
}

.region-content { /* Wrapper for the actual page content */
}

ul.inline { /* List of links generated by theme_links() */
  display: inline;
  padding: 0;
}
ul.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0; /* LTR */
}

span.field-label { /* The inline field label used by the Fences module */
  padding: 0 1em 0 0; /* LTR */
}

.item-list .pager { /* A list of page numbers when more than 1 page of content is available */
  padding: 0;
}
.item-list .pager li { /* Each page number in the pager list */
  padding: 0 0.2em;
}

.feed-icon { /* The link to the RSS or Atom feed for the current list of content */
}

.more-link { /* Aggregator, blog, and forum more link */
}

/*
 * Sidebar Styles
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first-container
 * and .region-sidebar-second-container (see the layout.css file.)
 */
.sidebar {
  /*border: 1px solid #2f518f;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;*/
  background: rgba(235, 235, 235, 0.9);
  color: #000;
  margin: 0.5em 1em;
  padding: 1em;
  box-sizing: border-box;
  word-wrap: break-word;
}
@media only screen and (max-width: 749px){
	.sidebar {
    margin: 0.5em -1em 0.5em 1em;
    padding: 1em;
    width: Calc(100% - 2em);
  }
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first-container
 * (see the layout.css file.)
 */

.region-sidebar-first-container {
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second-container
 * (see the layout.css file.)
 */

.region-sidebar-second-container{
}


/*
 * Page bottom
 */

.region-bottom { /* Wrapper for any blocks placed in the page bottom region */
}
#podaac-jpl-clearance {
	float: right;
	clear: both;
	color: #6ba5d9;
	margin-right: 10px;
	margin-bottom: 10px;
}

/**
 * portal search page
 */
#views-exposed-form-search-content-page .views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 0;
}

.content-container img, article img, #content-container .region img, #content-container .content img {
  border: 0;
}


/*start small waves*/
.elementor *, .elementor :after, .elementor :before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.elementor-section {
  position: relative;
}

.measurement-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding-bottom:25px;
}
.elementor .elementor-background-overlay {
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
}
.measurement-container > .elementor-background-overlay {
  background-color: rgba(0,0,0,0.45);
  opacity: 0.5;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}


.elementor-shape {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
}
.measurement-container {position: relative;}
.elementor-shape-bottom {
  bottom: -16px;
}
.elementor-shape[data-negative=false].elementor-shape-bottom, .elementor-shape[data-negative=true].elementor-shape-top {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
svg:not(:root) {
  overflow: hidden;
}
.elementor-shape svg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.elementor-shape-top {
  top: -1px;
}
.measurement-container > .elementor-shape-top svg {
  width: calc(100% + 1.3px);
  height: 30px;
  transform: translateX(-50%) rotateY(180deg);
}

.measurement-container > .elementor-shape-bottom svg {
  height: 30px;
  transform: translateX(-50%) rotateY(180deg);
}

.elementor-shape .elementor-shape-fill {
  fill: #fff;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
/*end small waves*/

/* earthdata styles */
.eui-banner--danger {
  border: 0px solid #e4b9b9;
  border-top: 3px solid #e4b9b9;
  background-color: #f2dede;
  color: #963b3b;
}

.eui-banner--danger, .eui-banner--info, .eui-banner--success, .eui-banner--warn {
  padding: 0.75em 1em;
  text-align: center;
}

.eui-banner__message {
  margin: 0;
}

.anchor-wrapper {
  position: relative;
}

.field-type-field-collection .field-name-field-title {
  padding: 5px;
  color: #323232;
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 1.154em;
  margin-bottom: 1.154em;
  font-weight: bold;
  overflow: visible;
  border-bottom: 1px solid #ccc;
}

.block-title-anchor {
  position: absolute; top: -100px;
}

#back-to-top-outer {
	display: block;
  position: fixed;
  bottom: 80px;
  right: 25px;
	z-index: 11;
}
.front #back-to-top-outer {
	right: 25px;
}

#back-to-top {
	/*display: block !important;*/
    cursor: pointer;
    /*font-size:2rem;*/ font-size: 19px;
    display: none;
    opacity:1;
    color:#4676b4;
    text-decoration: none;
}
#back-to-top:hover { color:#add7fe; opacity:0.8}
#back-to-top .top {
	/*font-size: 0.5em;*/ font-size: 16px;
    font-weight: normal;
	text-align: center;
	font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}

.ui-accordion .ui-accordion-content {
  font-size: 16px;
  line-height: 24px;
  font-family: 'Open Sans',sans-serif!important;
}

.ckeditor-accordion-container > dl {
  border: 0;
}

.ckeditor-accordion-container > dl dt {
  background-color: #eee;
  border-bottom: 0;
}

.ckeditor-accordion-container > dl dd {
  padding-left: 2.2em;
}

.ckeditor-accordion-container > dl dt > a,
.ckeditor-accordion-container > dl dt:last-of-type > a {
    background-color: #eee;
    border-bottom: 3px solid #fff;
    padding: .5em .5em .5em .7em;
    padding-left: 2.2em;
}

.ckeditor-accordion-container > dl dt.active,
.ckeditor-accordion-container > dl dt > a:hover,
.ckeditor-accordion-container > dl dt.active > a {
  background-color: #ccc;
}

.ckeditor-accordion-container > dl dt.active {
  border-bottom: 0;
}

.ckeditor-accordion-container > dl dt > a:hover,
.ckeditor-accordion-container > dl dt.active > a {
  border-bottom: 3px solid #162b48;
}

.ckeditor-accordion-container > dl dt > .ckeditor-accordion-toggle {
  left: auto;
  right: 16px;
  top: calc(50% + 4px);
}

.ckeditor-accordion-container > dl dt.active > .ckeditor-accordion-toggle {
  top: calc(50% - 8px);
  right: 20px;
}

.ckeditor-accordion-container > dl dt > .ckeditor-accordion-toggle:before,
.ckeditor-accordion-container > dl dt > .ckeditor-accordion-toggle:after {
  content: "";
  -webkit-transform: none;
  transform: none;
  background: none;
  transition: none;
}

.ckeditor-accordion-container > dl dt > .ckeditor-accordion-toggle:before {
  content: "\f10d";
  font: normal normal normal 14px/1 "eui-icon-library";
  transform: rotate(180deg);
}

.ckeditor-accordion-container > dl dt.active > .ckeditor-accordion-toggle:before {
  transform: none;
}

.field table {
  width: 100%;
  margin-top: 0;
  border-color: #eee;
}

.field table th {
  /*font-size: 18px;*/
  font-weight: 300;
  background-color: #2f518f;
  color: #fff!important;
  vertical-align: middle;
  padding: 0.4em 0.6em;
  border: 1px solid #FFF;
}

.field table th, .field table td {
  vertical-align: top !important;
  text-align: left !important;
}

#page .field table tr:nth-child(even) {
  background-color: whitesmoke;
}

.field table td {
  border-right: 1px solid #fff;
  padding: 0.4em 0.6em;
  border: 1px solid #eee;
}
