/***
Spectrum Colorpicker v1.8.1
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/

.sp-container {
    position:absolute;
    top:0;
    left:0;
    display:inline-block;
    *display: inline;
    *zoom: 1;
    /* https://github.com/bgrins/spectrum/issues/40 */
    z-index: 9999994;
    overflow: hidden;
}
.sp-container.sp-flat {
    position: relative;
}

/* Fix for * { box-sizing: border-box; } */
.sp-container,
.sp-container * {
    -webkit-box-sizing: content-box;
       -moz-box-sizing: content-box;
            box-sizing: content-box;
}

/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
.sp-top {
  position:relative;
  width: 100%;
  display:inline-block;
}
.sp-top-inner {
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
}
.sp-color {
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:20%;
}
.sp-hue {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:84%;
    height: 100%;
}

.sp-clear-enabled .sp-hue {
    top:33px;
    height: 77.5%;
}

.sp-fill {
    padding-top: 80%;
}
.sp-sat, .sp-val {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.sp-alpha-enabled .sp-top {
    margin-bottom: 18px;
}
.sp-alpha-enabled .sp-alpha {
    display: block;
}
.sp-alpha-handle {
    position:absolute;
    top:-4px;
    bottom: -4px;
    width: 6px;
    left: 50%;
    cursor: pointer;
    border: 1px solid black;
    background: white;
    opacity: .8;
}
.sp-alpha {
    display: none;
    position: absolute;
    bottom: -14px;
    right: 0;
    left: 0;
    height: 8px;
}
.sp-alpha-inner {
    border: solid 1px #333;
}

.sp-clear {
    display: none;
}

.sp-clear.sp-clear-display {
    background-position: center;
}

.sp-clear-enabled .sp-clear {
    display: block;
    position:absolute;
    top:0px;
    right:0;
    bottom:0;
    left:84%;
    height: 28px;
}

/* Don't allow text selection */
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button  {
    -webkit-user-select:none;
    -moz-user-select: -moz-none;
    -o-user-select:none;
    user-select: none;
}

.sp-container.sp-input-disabled .sp-input-container {
    display: none;
}
.sp-container.sp-buttons-disabled .sp-button-container {
    display: none;
}
.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
    display: none;
}
.sp-palette-only .sp-picker-container {
    display: none;
}
.sp-palette-disabled .sp-palette-container {
    display: none;
}

.sp-initial-disabled .sp-initial {
    display: none;
}


/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */
.sp-sat {
    background-image: -webkit-gradient(linear,  0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
    filter : progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
}
.sp-val {
    background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
    filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
}

.sp-hue {
    background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
    background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
.sp-1 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
}
.sp-2 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
}
.sp-3 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
}
.sp-4 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
}
.sp-5 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
}
.sp-6 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
}

.sp-hidden {
    display: none !important;
}

/* Clearfix hack */
.sp-cf:before, .sp-cf:after { content: ""; display: table; }
.sp-cf:after { clear: both; }
.sp-cf { *zoom: 1; }

/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-device-width: 480px) {
    .sp-color { right: 40%; }
    .sp-hue { left: 63%; }
    .sp-fill { padding-top: 60%; }
}
.sp-dragger {
   border-radius: 5px;
   height: 5px;
   width: 5px;
   border: 1px solid #fff;
   background: #000;
   cursor: pointer;
   position:absolute;
   top:0;
   left: 0;
}
.sp-slider {
    position: absolute;
    top:0;
    cursor:pointer;
    height: 3px;
    left: -1px;
    right: -1px;
    border: 1px solid #000;
    background: white;
    opacity: .8;
}

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/

.sp-container {
    border-radius: 0;
    background-color: #ECECEC;
    border: solid 1px #f0c49B;
    padding: 0;
}
.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
    font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.sp-top {
    margin-bottom: 3px;
}
.sp-color, .sp-hue, .sp-clear {
    border: solid 1px #666;
}

/* Input */
.sp-input-container {
    float:right;
    width: 100px;
    margin-bottom: 4px;
}
.sp-initial-disabled  .sp-input-container {
    width: 100%;
}
.sp-input {
   font-size: 12px !important;
   border: 1px inset;
   padding: 4px 5px;
   margin: 0;
   width: 100%;
   //background:transparent;
   border-radius: 3px;
   color: #222;
}
.sp-input:focus  {
    border: 1px solid orange;
}
.sp-input.sp-validation-error {
    border: 1px solid red;
    background: #fdd;
}
.sp-picker-container , .sp-palette-container {
    float:left;
    position: relative;
    padding: 10px;
    padding-bottom: 300px;
    margin-bottom: -290px;
}
.sp-picker-container {
    width: 172px;
    border-left: solid 1px #fff;
}

/* Palettes */
.sp-palette-container {
    border-right: solid 1px #ccc;
}

.sp-palette-only .sp-palette-container {
    border: 0;
}

.sp-palette .sp-thumb-el {
    display: block;
    position:relative;
    float:left;
    width: 24px;
    height: 15px;
    margin: 3px;
    cursor: pointer;
    border:solid 2px transparent;
}
.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
    border-color: orange;
}
.sp-thumb-el {
    position:relative;
}

/* Initial */
.sp-initial {
    float: left;
    border: solid 1px #333;
}
.sp-initial span {
    width: 30px;
    height: 25px;
    border:none;
    display:block;
    float:left;
    margin:0;
}

.sp-initial .sp-clear-display {
    background-position: center;
}

/* Buttons */
.sp-palette-button-container,
.sp-button-container {
    float: right;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer {
    margin:0;
    overflow:hidden;
    cursor:pointer;
    padding: 4px;
    display:inline-block;
    *zoom: 1;
    *display: inline;
    border: solid 1px #91765d;
    background: #eee;
    color: #333;
    vertical-align: middle;
}
.sp-replacer:hover, .sp-replacer.sp-active {
    border-color: #F0C49B;
    color: #111;
}
.sp-replacer.sp-disabled {
    cursor:default;
    border-color: silver;
    color: silver;
}
.sp-dd {
    padding: 2px 0;
    height: 16px;
    line-height: 16px;
    float:left;
    font-size:10px;
}
.sp-preview {
    position:relative;
    width:25px;
    height: 20px;
    border: solid 1px #222;
    margin-right: 5px;
    float:left;
    z-index: 0;
}

.sp-palette {
    *width: 220px;
    max-width: 220px;
}
.sp-palette .sp-thumb-el {
    width:16px;
    height: 16px;
    margin:2px 1px;
    border: solid 1px #d0d0d0;
}

.sp-container {
    padding-bottom:0;
}


/* Buttons: http://hellohappy.org/css3-buttons/ */
.sp-container button {
  background-color: #eeeeee;
  background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}
.sp-container button:hover {
    background-color: #dddddd;
    background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
    border: 1px solid #bbb;
    border-bottom: 1px solid #999;
    cursor: pointer;
    text-shadow: 0 1px 0 #ddd;
}
.sp-container button:active {
    border: 1px solid #aaa;
    border-bottom: 1px solid #888;
    -webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -moz-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}
.sp-cancel {
    font-size: 11px;
    color: #d93f3f !important;
    margin:0;
    padding:2px;
    margin-right: 5px;
    vertical-align: middle;
    text-decoration:none;

}
.sp-cancel:hover {
    color: #d93f3f !important;
    text-decoration: underline;
}


.sp-palette span:hover, .sp-palette span.sp-thumb-active {
    border-color: #000;
}

.sp-preview, .sp-alpha, .sp-thumb-el {
    position:relative;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}
.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
    display:block;
    position:absolute;
    top:0;left:0;bottom:0;right:0;
}

.sp-palette .sp-thumb-inner {
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}

.sp-clear-display {
    background-repeat:no-repeat;
    background-position: center;
    background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}

.btn-default {
  box-shadow: inset 0 -2em 1.8em -1em #eff2f5;
}

.btn-primary,
.btn-success {
  background: #044187;
  border: 1px solid #07305c;
  box-shadow: inset 0 2em 1.8em -1em rgba(31, 118, 216, 0.7);
  color: white;
}

.btn-primary:hover,
.btn-success:hover {
  background-color: #044187;
  box-shadow: inset 0 1em 1em -1em rgba(31, 118, 216, 0.7);
}

.btn-danger {
  background: #b23e24;
  border: 1px solid #942a12;
  box-shadow: inset 0 2em 1.8em -1em #d15336;
  color: white;
}

.btn-danger:hover {
  border: 1px solid #6b1c0b;
  box-shadow: none;
}

.account-masthead .account ul li {
  border-left: none;
}

.account-masthead .account ul li a:hover {
  color: #FFFFFF;
}

.masthead {
  box-shadow: 0 2px 4px 0 rgba(19, 21, 23, 0.1);
  padding: 0;
}

.masthead .logo img {
  max-height: 65px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.masthead hgroup h2 {
  bottom: 0px;
  left: 15px;
}

.masthead .navbar-collapse {
  margin-top: 5px;
  padding: 0;
  justify-content: flex-end;
}

.nav-pills > li + li {
  margin-left: 5px;
}

.masthead .navbar-nav > li > a {
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  text-decoration: none !important;
  border-radius: 0.25rem;
}

.compressed.masthead .navbar-collapse {
  float: none;
  justify-content: flex-end;
}

.compressed.masthead .account-masthead {
  float: right;
  margin-top: 10px;
}

.compressed.masthead .account-masthead .account ul li a {
  padding: 5px 10px;
}

.masthead .site-search {
  padding: 0;
}

.search-form .search-input.search-giant button {
  margin-top: -15px;
}

#field-sitewide-search:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: 2px;
}

.wrapper {
  border: none;
  box-shadow: none;
}

.homepage [role=main] {
  padding: 0;
}

[role=main], .main {
  background: #FFFFFF;
}

.homepage .hero {
  background: url("/img/elvado.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 435px;
  width: 100%;
}

.homepage .hero .module-search {
  margin-top: 0px;
}

.browse-group-title, .slick-showcase .media-item h3 {
  font-size: 20px;
  font-weight: normal;
  text-transform: none;
}

.browse-group {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  padding: 5px;
}

.slick-showcase .media-image {
  max-height: auto;
}

.secondary.col-sm-3, .secondary.span3 {
  border: 1px solid #cccccc;
}

.media-grid {
  background: #ffffff;
  border: none;
}

.media-grid .media-item {
  min-height: 340px;
  width: 200px;
  text-align: center;
}

.media-grid .media-item .media-image {
  max-height: 120px;
}

.media-grid .media-item img.img-responsive {
  display: inline-block;
}

#organization-search-form + .media-grid h3,
#group-search-form + .media-grid h3,
.slick-showcase .media-item h3 {
  overflow-y: clip;
  display: -webkit-box;
  max-height: 100px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#organization-search-form + .media-grid p,
#group-search-form + .media-grid p {
  display: none;
}

.media-view:hover, .media-view.hovered {
  border: 1px solid #616365;
  box-shadow: 0 0px 7px 0 #ccc;
}

.media-item:hover, .media-item:focus,
.browse-group:hover, .browse-group:focus {
  background-color: #c2e5ff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px 0px #ccc;
}

.homepage .module-search .search-giant {
  margin-bottom: 0;
  padding: 0 0 0 18px;
}

.search-form, .primary .dataset-item {
  border-bottom: none;
}

.dataset-content > p.empty {
  display: none;
}

.page-header {
  background-color: #ffffff;
}

.page-header .nav-tabs a {
  color: #616365;
  font-weight: 500;
}

.nav-tabs > .active > a,
.nav-tabs > .active > a:hover {
  color: #131517;
}

.form-control.select2-container {
  height: auto !important;
  padding: 0;
}

.select2-search-choice-close,
.select2-container-multi .select2-search-choice-close {
  top: 4px;
}

/* Custom background color for select format labels */
.dataset-resources li a {
  background-color: #6e6e6e;
}

.label[data-format=html],
.label[data-format*=html] {
  background-color: #2E759E;
}

.label[data-format=json],
.label[data-format*=json] {
  background-color: #D63B00;
}

.label[data-format=xml],
.label[data-format*=xml] {
  background-color: #D63B00;
}

.label[data-format=text],
.label[data-format*=text] {
  background-color: #1A7EA3;
}

.label[data-format=csv],
.label[data-format*=csv] {
  background-color: #207E42 !important;
}

.label[data-format=xls],
.label[data-format*=xls] {
  background-color: #207E42;
}

.label[data-format=zip],
.label[data-format*=zip] {
  background-color: #5b5b5b !important;
}

.label[data-format=pdf],
.label[data-format*=pdf] {
  background-color: #e0051e;
}

.label[data-format=rdf],
.label[data-format*=rdf],
.label[data-format*=nquad],
.label[data-format*=ntriples],
.label[data-format*=turtle] {
  background-color: #0b4498;
}

.label[data-format=geojson],
.label[data-format*=geojson] {
  background-color: #85252f !important;
}

.label[data-format=gml],
.label[data-format*=gml] {
  background-color: #847e31 !important;
}

.label[data-format=kml],
.label[data-format*=kml] {
  background-color: #223582 !important;
}

.label[data-format=shp],
.label[data-format*=shp] {
  background-color: #3b2d80 !important;
}

.label[data-format=wfs],
.label[data-format*=wfs] {
  background-color: #246984 !important;
}

.label[data-format=wms],
.label[data-format*=wms] {
  background-color: #248462 !important;
}

.label[data-format=arcgis],
.label[data-format*=arcgis],
.label[data-format=chart],
.label[data-format*=chart],
.label[data-format=map] {
  background-color: #852c7b !important;
}

@media (max-width: 767px) {
  .toolbar {
    margin-top: 10px;
  }
  .toolbar .breadcrumb a {
    color: #505050;
  }
  .module-heading {
    background: inherit !important;
    color: inherit !important;
  }
}
@media (min-width: 768px) {
  [role=main], .main, .hero {
    min-height: 320px;
  }
  .wrapper:before {
    display: none;
  }
  .primary div.module-content {
    padding: 0 0 30px;
  }
}
@media (min-width: 980px) {
  .col-sm-12, .col-md-12, .span12 {
    width: calc(100% - 20px);
  }
  .col-sm-11, .col-md-11, .span11 {
    width: calc(91.66666667% - 20px);
  }
  .col-sm-10, .col-md-10, .span10 {
    width: calc(83.33333333% - 20px);
  }
  .col-sm-9, .col-md-9, span9 {
    width: calc(75% - 20px);
  }
  .col-sm-8, .col-md-8, .span8 {
    width: calc(66.66666667% - 20px);
  }
  .col-sm-7, .col-md-7, .span7 {
    width: calc(58.33333333% - 20px);
  }
  .col-sm-6, .col-md-6, .span6 {
    width: calc(50% - 20px);
  }
  .col-sm-5, .col-md-5, .span5 {
    width: calc(41.66666667% - 20px);
  }
  .col-sm-4, .col-md-4, .span4 {
    width: calc(33.33333333% - 20px);
  }
  .col-sm-3, .col-md-3, .span3 {
    width: calc(25% - 20px);
  }
  .col-sm-2, .col-md-2, .span2 {
    width: calc(16.66666667% - 20px);
  }
  .col-sm-1, .col-md-1, .span1 {
    width: calc(8.33333333% - 20px);
  }
  .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container {
    max-width: 1920px;
    width: 90%;
  }
  .primary.col-sm-9, .primary.span9 {
    width: calc(100% - 238px);
  }
  .secondary.col-sm-3, .secondary.span3 {
    width: 220px;
  }
  .box, .wrapper {
    box-shadow: none;
  }
  .wrapper {
    background-position: 1px 0px;
  }
  .media-grid {
    margin-left: -10px;
  }
  select {
    width: 395px;
  }
  .control-medium input, .control-medium select, .control-medium textarea {
    width: 380px;
  }
}
.site-footer .og-attribution {
  display: inline-block;
  float: right;
  padding-right: 15px;
}

.site-footer .og-links {
  margin-top: 3px;
  margin-bottom: 30px;
}

.site-footer .ckan-footer-logo {
  margin-left: 20px;
}

.main-browse, .main-updates {
  background: #FFFFFF;
}

/*
********************************************
=======Table of Content=======
    1. Typography
        1.1 Font-Face
        1.2 Font Variables
        1.3 Font Size
        1.4 Font Style
    2. Colors
    3. Grid - Responsive Breakpoints Mixin
    4. Spacers
********************************************
*/
:root {
  --bs-blue: $blue-500;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #d9534f;
  --bs-orange: #fd7e14;
  --bs-yellow: #fd7e14;
  --bs-green: #3A833A;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #333333;
  --bs-primary: $blue-500;
  --bs-secondary: #6c757d;
  --bs-success: #3A833A;
  --bs-info: #0dcaf0;
  --bs-warning: #fd7e14;
  --bs-danger: #d43f3a;
  --bs-light: #fff;
  --bs-dark: #333333;
  --bs-primary-rgb: 51, 149, 255;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 58, 131, 58;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 253, 126, 20;
  --bs-danger-rgb: 212, 63, 58;
  --bs-light-rgb: 255, 255, 255;
  --bs-dark-rgb: 51, 51, 51;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 51, 51, 51;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: $grey-900;
  --bs-body-bg: #fff;
}

.display-1 {
  font-size: 6rem;
}

.display-2 {
  font-size: 4rem;
}

.display-3 {
  font-size: 3.375rem;
}

.display-4 {
  font-size: 3rem;
}

.display-5 {
  font-size: 2.5rem;
}

.display-6 {
  font-size: 2rem;
}

h1,
.h1, .module h1 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.125;
}
@media screen and (min-width: 992px) {
  h1,
  .h1, .module h1 {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1200px) {
  h1,
  .h1, .module h1 {
    font-size: 2.5rem;
  }
}

.context-info h1.heading {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.125;
}
@media screen and (min-width: 992px) {
  .context-info h1.heading {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .context-info h1.heading {
    font-size: 1.25rem;
  }
}

h2,
.h2 {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  h2,
  .h2 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 2.25rem;
  }
}

h3,
.h3 {
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  h3,
  .h3 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 2rem;
  }
}

h4,
.h4 {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  h4,
  .h4 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 2.5rem;
  }
}

h5,
.h5 {
  font-size: 2rem;
  font-weight: 500;
}

h6,
.h6 {
  font-size: 1.5rem;
  font-weight: 500;
}

.hidden {
  display: none !important;
}

::-moz-placeholder, :-ms-input-placeholder, ::-webkit-input-placeholder {
  color: #98a2b3;
  font-weight: 500;
}

.editor .editor-info-block {
  border-radius: 0.35rem;
  display: block;
  float: none;
  padding: 0.25rem;
  background: #e4e7ec;
  width: auto;
  border: none;
  border-top: none;
  font-size: 0.875rem;
  color: #667085;
  margin-top: 3px;
  padding: 0.5rem;
}
.editor .editor-info-block a {
  color: #0064ff;
}

.form-control, input.form-control, .control-large input, .select2-container-multi .select2-choices, .select2-container .select2-choices, .editor textarea {
  font-size: 1rem;
  height: auto;
  padding: 0.75rem;
  border-radius: 0.5rem !important;
  border: 2px solid #e4e7ec;
  font-weight: 500;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #ffffff;
}
.form-control:focus, .form-control:focus-visible, input.form-control:focus, input.form-control:focus-visible, .control-large input:focus, .control-large input:focus-visible, .select2-container-multi .select2-choices:focus, .select2-container-multi .select2-choices:focus-visible, .select2-container .select2-choices:focus, .select2-container .select2-choices:focus-visible, .editor textarea:focus, .editor textarea:focus-visible {
  box-shadow: none;
  border: 2px solid #03789b;
  outline: none;
}

.select2-container-multi .select2-choices input.select2-input.select2-default {
  margin: 0px;
  height: auto;
  border: none;
  font-size: 1rem;
  padding: 0.5rem 0;
  font-weight: 500;
}

.select2-container-multi.select2-container.select2-container-active .select2-choices {
  padding: 0.375rem !important;
  border: 2px solid #03789b;
}

.select2-container-multi .select2-choices .select2-search-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.5rem 0.25rem 1.25rem;
  color: #ffffff;
  font-weight: 400;
  font-size: calc(1rem - 1px);
  line-height: 1.125;
  background: #131517;
  border: none;
}

.select2-search-choice-close, .select2-container-multi .select2-search-choice-close {
  font-size: 0;
  background: url("../../icons/icon-close.svg") center center no-repeat !important;
  background-size: 18px 18px !important;
  width: 16px;
  height: 16px;
  top: 5px;
  left: 3px;
  right: auto;
}
.select2-search-choice-close:hover, .select2-container-multi .select2-search-choice-close:hover {
  color: #ffffff;
  background-position: center center !important;
}

input[type=text] {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 1rem;
  font-weight: 500;
}

.form-control:focus {
  box-shadow: none;
  border: 2px solid #03789b;
}

.form-group .btn {
  top: 0px;
}

.btn {
  display: inline-flex;
  border: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.btn.btn-sm i {
  margin-right: 0;
}
.btn:hover {
  border: none;
}
.btn.btn-secondary {
  box-shadow: none;
  border: 2px solid #e4e7ec;
  background-color: #e4e7ec;
  color: #475467;
}
.btn.btn-secondary:hover {
  background: #d0d5dd;
}
.btn.btn-primary {
  background: #03789b !important;
  background-color: #03789b !important;
  box-shadow: none !important;
  border: none;
}
.btn.btn-primary:hover {
  background: #131517 !important;
}
.btn.btn-primary-dark {
  background: #131517;
  color: #ffffff;
  border: 2px solid #131517;
}
.btn.btn-primary-dark:hover {
  background: #03789b;
  border: 2px solid #03789b;
}
.btn.btn-accent, .btn.btn-danger {
  background: #DA1E28;
  color: #ffffff;
  border: none;
}
.btn.btn-accent:hover, .btn.btn-danger:hover {
  background: #750E13;
}
.btn.btn-success {
  background: #277E59;
  color: #ffffff;
  border: none;
}
.btn.btn-success:hover {
  background: #195039;
}

.module-narrow .module-heading {
  background: #03789b;
}

.module-narrow .nav-item > a,
.module-narrow .nav-aside li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 500;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.module-narrow .nav-item > a:hover,
.module-narrow .nav-aside li a:hover {
  background: #e4e7ec;
}

.item-count.badge {
  background-color: #e4e7ec !important;
  color: #475467;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  min-width: 20px;
}

.nav-facet li.nav-item a span.item-count.badge {
  background-color: #e4e7ec !important;
  color: #475467;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  min-width: 20px;
  margin-left: auto;
  margin-right: 5px;
}
.nav-facet li.nav-item > a:hover {
  background: #e4e7ec;
  color: #475467;
}
.nav-facet li.nav-item > a:hover::before {
  border-left-color: #e4e7ec;
}
.nav-facet li.nav-item > a:hover:after {
  content: "";
  width: 18px;
  height: 18px;
  background: #ffffff url("../../icons/icon-add.svg") no-repeat center center;
  background-size: 24px auto;
  z-index: 99;
  right: 11px;
  border-radius: 100%;
}
.nav-facet li.nav-item.active a:after {
  content: "";
  width: 18px;
  height: 18px;
  background: #ffffff url("../../icons/icon-remove.svg") no-repeat center center;
  background-size: 20px auto;
  z-index: 99;
  right: -2px;
  border-radius: 100%;
}
.nav-facet li.nav-item.active > a::before {
  border-left-color: #647A82;
}

.module-narrow .nav-item.active > a::before, .module-narrow .nav-aside li.active a::before {
  height: 44px !important;
}

.input-group .form-control {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.input-group .input-group-addon,
.input-group .input-group-text {
  background: #e4e7ec;
  font-weight: 500;
  border: 2px solid #e4e7ec;
}

.facet-close {
  display: none;
}

.input-group.search-input-group {
  display: flex;
  align-content: center;
  justify-content: center;
}
.input-group.search-input-group #field-giant-search {
  border-radius: 0.5rem !important;
}
.input-group.search-input-group .input-group-btn .btn.btn-default {
  position: absolute;
  right: 1rem;
  background: transparent !important;
  border: none;
  z-index: 999;
  height: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
}
.input-group.search-input-group .input-group-btn .btn.btn-default i {
  margin-right: 0 !important;
}
.input-group.search-input-group .input-group-btn .btn.btn-default:hover {
  color: #03789b;
}

.stages li.active::before {
  color: #277E59;
}
.stages li.active .highlight {
  background: #277E59;
}

.groups-wrapper {
  display: flex;
  flex-wrap: wrap;
}

a.browse-group {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 1.5rem;
  margin: 0 1.5rem 1.5rem 0;
  background: #e6f2f5;
  position: relative;
  min-height: 305px;
  border-radius: 1.5rem;
  flex: 0 0 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9999;
}
@media screen and (min-width: 992px) {
  a.browse-group {
    flex: 0 0 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
}
@media screen and (min-width: 1200px) {
  a.browse-group {
    flex: 0 0 calc(33.33% - 1.5rem);
    max-width: calc(33.33% - 1.5rem);
  }
}
a.browse-group::before {
  content: "";
  position: absolute;
  bottom: -90%;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #f9fafb;
  transform: skewY(355deg);
  transition: 0.5s;
  z-index: 1;
}
a.browse-group img.browse-group-image {
  max-width: auto;
  max-height: auto;
  width: 64px;
  height: 64px;
  margin: 0px;
  position: relative;
  z-index: 9;
}
a.browse-group .browse-group-title {
  margin-top: 2rem;
  display: flex;
  align-items: flex-end;
  height: 90px;
  position: relative;
  z-index: 9;
  transition: 0.5s;
}
a.browse-group .browse-group-title h3 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: -1.5px;
  line-height: 1.125;
}
a.browse-group .browse-group-description {
  display: none;
}
a.browse-group .browse-group-link {
  margin-left: auto;
  background-color: #9ac9d7;
  border-radius: 0.75rem;
  padding: 0.25rem;
  position: relative;
  z-index: 9;
  transition: 0.5s;
  width: 48px;
  height: 48px;
}
a.browse-group .browse-group-link .dh-icon.next {
  transition: 0.5s;
  width: 40px;
  height: 40px;
}
a.browse-group:hover {
  text-decoration: none;
}
a.browse-group:hover::before {
  bottom: 0%;
  transform: skewY(360deg);
  z-index: 1;
}
a.browse-group:hover .browse-group-title {
  color: #03789b;
}
a.browse-group:hover .browse-group-link {
  background-color: #01303e;
  border-radius: 100%;
}

/* Custom background color for select format labels */
.dataset-resources li a {
  background-color: #6e6e6e;
}

.label[data-bs-format=html],
.label[data-bs-format*=html] {
  background-color: #2e759e;
}

.label[data-bs-format=json],
.label[data-bs-format*=json] {
  background-color: #d63b00;
}

.label[data-bs-format=xml],
.label[data-bs-format*=xml] {
  background-color: #d63b00;
}

.label[data-bs-format=text],
.label[data-bs-format*=text] {
  background-color: #1a7ea3;
}

.label[data-bs-format=csv],
.label[data-bs-format*=csv] {
  background-color: #207e42 !important;
}

.label[data-bs-format=xls],
.label[data-bs-format*=xls] {
  background-color: #207e42;
}

.label[data-bs-format=zip],
.label[data-bs-format*=zip] {
  background-color: #5b5b5b !important;
}

.label[data-bs-format=pdf],
.label[data-bs-format*=pdf] {
  background-color: #e0051e;
}

.label[data-bs-format=rdf],
.label[data-bs-format*=rdf],
.label[data-bs-format*=nquad],
.label[data-bs-format*=ntriples],
.label[data-bs-format*=turtle] {
  background-color: #0b4498;
}

.label[data-bs-format=geojson],
.label[data-bs-format*=geojson] {
  background-color: #85252f !important;
}

.label[data-bs-format=gml],
.label[data-bs-format*=gml] {
  background-color: #847e31 !important;
}

.label[data-bs-format=kml],
.label[data-bs-format*=kml] {
  background-color: #223582 !important;
}

.label[data-bs-format=shp],
.label[data-bs-format*=shp] {
  background-color: #3b2d80 !important;
}

.label[data-bs-format=wfs],
.label[data-bs-format*=wfs] {
  background-color: #246984 !important;
}

.label[data-bs-format=wms],
.label[data-bs-format*=wms] {
  background-color: #248462 !important;
}

.label[data-bs-format=arcgis],
.label[data-bs-format*=arcgis],
.label[data-bs-format=chart],
.label[data-bs-format*=chart],
.label[data-bs-format=map] {
  background-color: #852c7b !important;
}

.global-datasets.popular-dataset {
  background-color: #ffffff;
}
.global-datasets.recent-dataset {
  background-color: #ffffff;
}

.global-datasets section.popular-ds ul.dataset-list li.dataset-item,
.global-datasets section.recent-ds ul.dataset-list li.dataset-item {
  background: #f9fafb;
}

.dataset-resources li a.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0.25em;
  line-height: 1.5;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.15rem 0.5rem;
}

span.dataset-private {
  background: #131517;
  color: #f2f4f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0.25em;
  line-height: 1.5;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.15rem 0.5rem;
}
span.dataset-private i {
  margin-right: 4px;
}

.btn .caret {
  margin: 8px 0px 0px 8px;
}

.homepage .dataset-item {
  flex: 0 0 100%;
  max-width: 100%;
  z-index: 9;
  margin: 0 0 1rem 0;
  padding: 2rem;
  border-radius: 0.75rem;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.homepage .dataset-item::before {
  content: "";
  position: absolute;
  bottom: -90%;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #e6f2f5;
  transform: skewY(355deg);
  transition: 0.5s;
  z-index: 1;
}
.homepage .dataset-item:hover::before {
  bottom: 0%;
  transform: skewY(360deg);
  z-index: 1;
}

section.module ul.dataset-list, article.module ul.dataset-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
section.module ul.dataset-list li.dataset-item, article.module ul.dataset-list li.dataset-item {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 0 1rem 0;
  padding: 2rem;
  border-radius: 0.75rem;
  background: #e6f2f5;
}
section.module ul.dataset-list li.dataset-item .dataset-content, article.module ul.dataset-list li.dataset-item .dataset-content {
  position: relative;
  z-index: 9;
}
section.module ul.dataset-list li.dataset-item .dataset-content .datset-update, article.module ul.dataset-list li.dataset-item .dataset-content .datset-update {
  color: #03789b;
  font-size: 0.875rem;
  font-weight: 400;
  display: flex;
  align-items: center;
}
section.module ul.dataset-list li.dataset-item .dataset-content .datset-update::before, article.module ul.dataset-list li.dataset-item .dataset-content .datset-update::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: url(../../icons/icon-updated.svg) no-repeat center center;
  background-size: 18px;
}

/* CSS for the visually enhanced showcase cards */
section.showcases {
  display: block;
  clear: both;
  padding: 2rem 0;
}

section.showcases .slick-slider {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Enhanced card container */
section.showcases .slick-showcase .media-item {
  position: relative;
  height: 380px;
  width: 300px;
  margin: 0 1rem 1rem 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center bottom;
  background-color: white;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
}


section.showcases .slick-showcase .media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

section.showcases .slick-showcase .media-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #03789b, #02a0ce);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

section.showcases .slick-showcase .media-item:hover:after {
  opacity: 1;
}

/* Image container */
section.showcases .slick-showcase .media-item .media-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: white;
  position: relative;
}

/* Image styling */
section.showcases .slick-showcase .media-item img.media-image {
  max-width: 100%;
  max-height: 95%;
  object-fit: contain;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 0;
  border: 2px groove #6f6c7d14;

}

section.showcases .slick-showcase .media-item:hover img.media-image {
  transform: scale(1.02);
}

/* Content area styling - positioned at bottom */
section.showcases .slick-showcase .media-item .media-content {
  background-color: rgb(0 24 51 / 0%);
  -webkit-backdrop-filter: blur(24px);
  color: black;
  backdrop-filter: blur(24px);
  padding: 1.5rem 1.25rem;
  z-index: 99;
  border-radius: 1rem;
}

section.showcases .slick-showcase .media-item .media-content a {
  text-decoration: none;
  display: block;
}

section.showcases .slick-showcase .media-item .media-content a h3 {
  color: #131517;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  text-shadow: none;
  position: relative;
  transition: transform 0.3s ease;
  padding-bottom: 0rem;

}

section.showcases .slick-showcase .media-item .media-content a h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #03789b00;
  transition: width 0.3s ease;
}

section.showcases .slick-showcase .media-item:hover .media-content a h3:after {
  width: 80px;
}

/* Adjust slick slider arrows */
section.showcases .slick-showcase .slick-arrow {
  width: 42px;
  height: 42px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: background-color 0.3s ease;
}

section.showcases .slick-showcase .slick-arrow.slick-next {
  right: -20px;
  background-color: white;
}

section.showcases .slick-showcase .slick-arrow.slick-prev {
  left: -20px;
  background-color: white;
}

section.showcases .slick-showcase .slick-arrow:hover {
  background-color: #03789b;
}

/* Responsive adjustments */
@media screen and (min-width: 992px) {
  section.showcases .slick-showcase .media-item {
    width: 300px;
  }
}

@media screen and (min-width: 1200px) {
  section.showcases .slick-showcase .media-item {
    width: 300px;
  }
}

.img-thumbnail {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.select2-container {
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
}

.select2-container .select2-choice, .select2-search input {
  display: block;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  line-height: auto;
  text-decoration: none;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: none;
  box-shadow: none;
  font-size: 1rem;
  height: auto;
  padding: 0.75rem;
  border-radius: 0.5rem !important;
  border: 2px solid #e4e7ec;
  font-weight: 500;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #ffffff;
}
.select2-container .select2-choice:focus, .select2-container .select2-choice:focus-visible, .select2-search input:focus, .select2-search input:focus-visible {
  box-shadow: none;
  border: 2px solid #03789b;
  outline: none;
}
.select2-container .select2-choice .select2-choice > .select2-chosen, .select2-search input .select2-choice > .select2-chosen {
  margin-right: 54px;
}

.select2-container .select2-choice .select2-arrow {
  width: 54px;
  background: #f2f4f7 url(../../_variables.scss) no-repeat center center;
  border: none;
  width: 54px;
  height: 100%;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.select2-container .select2-choice .select2-arrow b {
  display: none;
}

.select2-dropdown-open .select2-choice .select2-arrow {
  background: #e4e7ec url(../icons/icon-arrow-up.svg) no-repeat center center;
}

.select2-results .select2-result-label {
  padding: 0.5rem;
  font-weight: 500;
}

.select2-drop-active {
  border: 2px solid #e4e7ec;
  box-shadow: none;
  margin-top: -2px;
  padding-top: 1px;
  border-radius: 0.5rem;
}

.select2-search input {
  background: #ffffff url(../../icons/icon-search.svg) no-repeat 95% center !important;
}

a {
  color: #131517;
}

section.main-browse.bg-primary-light,
section.main-updates.bg-primary-light,
section.main-featured.bg-primary-light,
section.featured-charts-wrap.bg-primary-light {
  background: #f2f4f7;
}
section.main-browse.bg-primary-dark,
section.main-updates.bg-primary-dark,
section.main-featured.bg-primary-dark,
section.featured-charts-wrap.bg-primary-dark {
  background: #131517;
}
section.main-browse.bg-primary,
section.main-updates.bg-primary,
section.main-featured.bg-primary,
section.featured-charts-wrap.bg-primary {
  background: #03789b;
}
section.main-browse .heading-explanation.above-heading,
section.main-updates .heading-explanation.above-heading,
section.main-featured .heading-explanation.above-heading,
section.featured-charts-wrap .heading-explanation.above-heading {
  font-size: 1.125rem;
  display: block;
  font-style: normal;
  text-transform: uppercase;
  color: #03789b;
  padding: 0;
  margin: 0 0 0.25rem 0;
  letter-spacing: -0.75px;
}
section.main-browse h2,
section.main-updates h2,
section.main-featured h2,
section.featured-charts-wrap h2 {
  margin: 0 0 2rem;
}
section.main-browse h2 a,
section.main-updates h2 a,
section.main-featured h2 a,
section.featured-charts-wrap h2 a {
  color: #131517;
  text-decoration: none;
  letter-spacing: -1px;
}

.module-content {
  padding: 2rem 0.25rem;
}
@media screen and (min-width: 992px) {
  .module-content {
    padding: 2rem 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .module-content {
    padding: 4rem 2rem;
  }
}

.table.table-header.table-hover.table-bordered tbody tr td img.user-image {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
}

.hero-area h1 {
  background: #ffffff;
  color: #131517;
  display: inline-flex;
  width: auto;
  padding: 0.5rem 1rem;
}

.hero-area p {
  background: #03789b;
  color: #ffffff;
  display: inline-flex;
  width: auto;
  padding: 0.5rem 1rem;
}

.resource-upload-field .btn-remove-url {
  margin-top: 45px;
  margin-right: 10px;
}

.js .image-upload .btn-remove-url {
  margin-top: 10px;
  margin-right: 15px;
}

html,
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  color: #101828;
  line-height: 1.5;
  background: #ffffff !important;
}

.account-masthead {
  border-radius: 0.5rem;
}
.account-masthead .container {
  padding: 0;
  width: 100% !important;
}
.account-masthead .container .account ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.account-masthead .container .account ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.25rem;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
}
.account-masthead .container .account ul li a {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
}
.account-masthead .container .account ul li a span {
  display: none;
}
.account-masthead .container .account ul li a.image {
  min-width: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: none;
  padding: 0;
}
.account-masthead .container .account ul li a.image img {
  width: 100%;
  height: 100%;
  padding: 2px;
}

.compressed.masthead .account-masthead .account ul li a {
  padding: 0;
}

.compressed.masthead .navbar li a:hover {
  background-color: transparent;
  color: #02485d;
}

.navbar.masthead li.active a {
  background-color: transparent !important;
  color: #02485d;
  font-weight: 700;
}

.navbar.masthead > li > a {
  text-transform: capitalize;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.adh-icon-link {
  padding: 0 !important;
}

.dh-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  position: absolute;
}
.dh-icon.sysadmin {
  background: url(../../icons/icon-sysadmin.svg) no-repeat center center;
  background-size: 24px 24px;
}
.dh-icon.dashboard {
  background: url(../../icons/icon-dashboard.svg) no-repeat center center;
  background-size: 24px 24px;
}
.dh-icon.settings {
  background: url(../../icons/icon-settings.svg) no-repeat center center;
  background-size: 24px 24px;
}
.dh-icon.logout {
  background: url(../../icons/icon-logout.svg) no-repeat center center;
  background-size: 24px 24px;
}
.dh-icon.notifications {
  background: url(../../icons/icon-notifications.svg) no-repeat center center;
  background-size: 24px 24px;
}
.dh-icon.next {
  background: url(../../icons/icon-next.svg) no-repeat center center;
  background-size: 18px 18px;
}

nav.account.not-authed > ul > li > a {
  background: #e4e7ec !important;
  border-radius: 0.5rem;
}
nav.account.not-authed > ul > li > a > .dh-icon.login {
  background: url(../../icons/icon-login.svg) no-repeat center center;
  background-size: 18px 18px;
}

.search-form .search-input.form-group .form-control {
  font-size: 1rem;
  padding: 1rem;
  font-weight: 500;
  border-radius: 0.75rem;
  border: 2px solid #e4e7ec;
  color: #101828;
}
.search-form .search-input.form-group .form-control::placeholder, .search-form .search-input.form-group .form-control::-webkit-input-placeholder, .search-form .search-input.form-group .form-control::-moz-placeholder, .search-form .search-input.form-group .form-control:-ms-input-placeholder, .search-form .search-input.form-group .form-control:-moz-placeholder {
  font-weight: 400;
}
.search-form .search-input.form-group button {
  right: 12px;
  display: flex;
  align-content: center;
  justify-content: center;
  margin-top: -10px;
}
.search-form .search-input.form-group button i {
  font-size: 24px;
  width: 24px;
  height: 24px;
}
.search-form .search-input.form-group button i::before {
  content: "";
  width: 24px;
  height: 24px;
  display: flex;
  background-image: url("/icons/icon-search.svg");
  background-size: 24px 24px;
  background-repeat: no-repeat;
}

.homepage .hero {
  background: url("/img/elvado.jpg") no-repeat center center;
  background-size: cover;
}

.homepage .hero .module-search {
  margin-top: 0px;
  border: none;
}

.homepage .module-search .search-form {
  background: transparent !important;
}

.module-search {
  background: transparent !important;
  margin: 3rem auto;
  padding: 0;
}

.hero-area {
  min-height: 435px;
  position: relative;
}
.hero-area h1,
.hero-area p {
  color: #f9fafb;
}
.hero-area .widges.statsistics h3 {
  position: absolute;
  left: 10%;
  right: 10%;
  text-align: center;
  margin: -4rem auto 0;
  font-size: 4rem;
  font-weight: 700;
  color: #d0d5dd;
}
.hero-area .widges.statsistics ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 256px;
  position: relative;
  z-index: 99;
}
.hero-area .widges.statsistics ul li.statdatasets, .hero-area .widges.statsistics ul li.statorg {
  background: url(../images/home-stats-bg.svg) no-repeat center center;
  z-index: 99;
  background-size: 256px 256px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 100%;
  margin: 0px auto;
  text-align: center;
  margin-right: 1rem;
}
.hero-area .widges.statsistics ul li.statdatasets .backgroundstats, .hero-area .widges.statsistics ul li.statorg .backgroundstats {
  display: flex;
  width: 320px;
  height: 320px;
  border-radius: 100%;
  background: url(../images/home-stats-bg-shape.svg) no-repeat center center;
  background-size: 320px 320px;
  z-index: -1;
  position: absolute;
}
.hero-area .widges.statsistics ul li.statdatasets .statistic_value, .hero-area .widges.statsistics ul li.statorg .statistic_value {
  font-size: 8rem;
  font-weight: 900;
  color: #ffffff;
}
.hero-area .widges.statsistics ul li.statdatasets .statistic_name, .hero-area .widges.statsistics ul li.statorg .statistic_name {
  font-size: 2rem;
  color: #e4e7ec;
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  margin: 0px auto;
}

a {
  color: #131517;
}

section.main-browse.bg-primary-light,
section.main-updates.bg-primary-light,
section.main-featured.bg-primary-light,
section.featured-charts-wrap.bg-primary-light {
  background: #f2f4f7;
}
section.main-browse.bg-primary-dark,
section.main-updates.bg-primary-dark,
section.main-featured.bg-primary-dark,
section.featured-charts-wrap.bg-primary-dark {
  background: #131517;
}
section.main-browse.bg-primary,
section.main-updates.bg-primary,
section.main-featured.bg-primary,
section.featured-charts-wrap.bg-primary {
  background: #03789b;
}
section.main-browse .heading-explanation.above-heading,
section.main-updates .heading-explanation.above-heading,
section.main-featured .heading-explanation.above-heading,
section.featured-charts-wrap .heading-explanation.above-heading {
  font-size: 1.125rem;
  display: block;
  font-style: normal;
  text-transform: uppercase;
  color: #03789b;
  padding: 0;
  margin: 0 0 0.25rem 0;
  letter-spacing: -0.75px;
}
section.main-browse h2,
section.main-updates h2,
section.main-featured h2,
section.featured-charts-wrap h2 {
  margin: 0 0 2rem;
}
section.main-browse h2 a,
section.main-updates h2 a,
section.main-featured h2 a,
section.featured-charts-wrap h2 a {
  color: #131517;
  text-decoration: none;
  letter-spacing: -1px;
}

.module-content {
  padding: 2rem 0.25rem;
}
@media screen and (min-width: 992px) {
  .module-content {
    padding: 2rem 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .module-content {
    padding: 4rem 2rem;
  }
}

.table.table-header.table-hover.table-bordered tbody tr td img.user-image {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
}

.hero-area h1 {
  background: #ffffff;
  color: #131517;
  display: inline-flex;
  width: auto;
  padding: 0.5rem 1rem;
}

.hero-area p {
  background: #03789b;
  color: #ffffff;
  display: inline-flex;
  width: auto;
  padding: 0.5rem 1rem;
}

.resource-upload-field .btn-remove-url {
  margin-top: 45px;
  margin-right: 10px;
}

.js .image-upload .btn-remove-url {
  margin-top: 10px;
  margin-right: 15px;
}

form.form-inline.form-select.lang-select {
  display: none;
}

.pagination-wrapper {
  border-top: none;
}

.pagination li.active a,
.pagination li.active span,
.pagination li.active a:hover,
.pagination li.active span:hover,
.pagination li.active a:focus,
.pagination li.active span:focus {
  background-color: #03789b;
  border-color: #03789b;
  color: #ffffff;
}

.site-footer {
  background: #131517 !important;
}

section.showcases .slick-showcase .media-item {
  border: 1px solid #e4e7ec;
}

.main-browse.section.global-datasets.recent-dataset, .main-browse.section.global-datasets.popular-dataset {
  flex: 0 0 50%;
}

.bg-blue-light {
  background: #e6f2f5;
}

.masthead .navigation .nav-pills li a:hover, .masthead .navigation .nav-pills li.active a, .navbar-toggle {
  background: #03789b !important;
  color: #ffffff;
  font-weight: normal !important;
}

.copyright {
  text-align: right;
  margin: 0px;
}

.ds-wrapper {
  display: flex;
  background-color: #e6f2f5 !important;
}/*# sourceMappingURL=theme.css.map */

div > div.dataset-info.flex-grow-1 > h3 > a.label > p {
  font-size: 18px !important;
  text-transform: uppercase;
}

div.dataset-info.flex-grow-1  p {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  font-size: 16px;
  font-weight: 500;
}

section.module ul.dataset-list li.dataset-item .dataset-content h3.dataset-heading a, article.module ul.dataset-list li.dataset-item .dataset-content h3.dataset-heading a {
  font-size: 21px;
  font-weight: 600;
  color:  #004153;
  letter-spacing: -0.5px;
}

.dataset-thumbnail.me-3 .img-thumbnail {
  width: 250px;
  max-height: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  transition: transform 0.5sease;
  position: relative;
  z-index: 0;
  border: 2px groove #6f6c7d14;
}

/* Main grid layout */
.app-showcase-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Header section with title and manage button */
.app-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.app-showcase-title {
  font-size: 2em;
  margin: 0;
}
.app-showcase-manage .nav-item li {
list-style: none;
margin: 0;
padding: 0;
}


/* Updated manage section styling */
.app-showcase-manage {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Style for nav buttons in the manage section */
.app-showcase-manage .nav-item {
  margin: 0;
}

.app-showcase-manage .nav-item a {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #f7f7f7;
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: normal;
}

.app-showcase-manage .nav-item a:hover {
  background: #e7e7e7;
  text-decoration: none;
}

.app-showcase-manage .nav-item a i {
  margin-right: 5px;
}

/* Main content grid layout */
.app-showcase-content {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 30px;
}


/* Content sections */
.app-showcase-section {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
}

.app-showcase-section-title {
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

/* Application image container */
.app-showcase-image-container {
  text-align: center;
  max-width: 100%;
  margin-bottom: 20px;
}

.app-showcase-image {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Visit application button */
.app-showcase-visit-btn {
  display: inline-block;
  background-color: #2980b9;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
  margin-bottom: 15px;
}

.app-showcase-visit-btn:hover {
  background-color: #3498db;
  color: white;
  text-decoration: none;
}

/* Organization section */
.app-showcase-organization {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.app-showcase-org-image {
  width: 64px;
  height: 64px;
  margin-right: 15px;
  object-fit: contain;
}

/* Metadata items */
.app-showcase-metadata-item {
  margin-bottom: 10px;
}

.app-showcase-metadata-label {
  font-weight: bold;
}

/* Dataset list */
.app-showcase-datasets {
  margin-top: 20px;
}

.app-showcase-dataset-list {
  list-style: none;
  padding-left: 0;
}

.app-showcase-dataset-item {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* Responsive layout */
@media (max-width: 768px) {
  .app-showcase-content {
    grid-template-columns: 1fr;
  }
}


/* Mobile fixes for application thumbnails */
@media screen and (max-width: 767px) {
  .dataset-content.d-flex {
    flex-direction: column !important;
    align-items: center;
  }
  
  .dataset-thumbnail.me-3 {
    margin-right: 0 !important;
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .dataset-thumbnail.me-3 .img-thumbnail {
    width: 200px !important;
    max-width: 200px !important;
    height: auto;
    max-height: 150px;
  }
  
  .dataset-info.flex-grow-1 {
    width: 100%;
    text-align: center;
  }
  
  .dataset-resources.list-unstyled {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .dataset-thumbnail.me-3 .img-thumbnail {
    width: 200px !important;
    max-width: 200px !important;
    max-height: 120px;
  }
  
  section.module ul.dataset-list li.dataset-item, 
  article.module ul.dataset-list li.dataset-item {
    padding: 1.5rem 1rem;
  }
}