.sp-container {
    position:absolute;
    top:0;
    left:0;
    display:inline-block;
    *display: inline;
    *zoom: 1;
    /* https://github.com/seballot/spectrum/issues/40 */
    z-index: 9999994;
    overflow: hidden;
}
.sp-original-input-container {
    position: relative;
    display: inline-flex;
}
.sp-original-input-container input {
    margin: 0 !important;
}
.sp-original-input-container .sp-add-on {
    width: 40px;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
input.spectrum.with-add-on {
    /*padding-left: 45px;*/
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
}
.sp-original-input-container .sp-add-on .sp-colorize {
    height: 100%;
    width: 100%;
    border-radius: inherit;
}
.sp-colorize-container {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==');
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='%23ccc' fill-opacity='1'%3E%3Crect x='0' y='0' width='6' height='6' /%3E%3Crect x='6' y='6' width='6' height='6' /%3E%3C/svg%3E");
}
.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:20px !important;
}
.sp-hue {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    width: 12px;
    height: 100%;
    left: initial !important;
}

.sp-clear-enabled .sp-hue {
    top: 15%;
    height: 85%;
}

.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: 28px !important;
}
.sp-alpha-enabled .sp-alpha {
    display: block;
}
.sp-alpha-handle {
    position: absolute;
    top: -3px;
    cursor: pointer;
    height: 16px;
    border-radius: 50%;
    width: 16px;
    margin-right: 5px;
    left: -2px;
    right: 0;
    background: #f9f9f9;
    box-shadow: 0 0 2px 0px #3a3a3a;
}
.sp-alpha {
    display: none;
    position: absolute;
    bottom: -18px;
    right: 0;
    left: 0;
    height: 10px;
}
.sp-alpha-inner {
    border-radius: 4px;
}

.sp-clear {
    display: none;
}

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

.sp-clear-enabled .sp-clear {
    display: block;
    position: absolute;
    top: 3px;
    right: 0;
    bottom: 0;
    cursor: pointer;
    left: initial;
    height: 14px;
    width: 14px;
}

/* 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 {
    border-radius: 4px;
    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: 10px;
    width: 10px;
    border: 1px solid #fff;
    cursor: pointer;
    position:absolute;
    top:0;
    left: 0;
    margin-left: 3px;
    margin-top: 3px;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, .2);
}
.sp-slider {
    position: absolute;
    top: 0;
    cursor: pointer;
    height: 16px;
    border-radius: 50%;
    width: 16px;
    left: -2px;
    background: #f9f9f9;
    box-shadow: 0 0 2px 0px #3a3a3a;
    margin-top: 8px;
}

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths)
*/

.sp-container {
    display: inline-flex;
    border-radius: 0;
    background-color: white;
    padding: 0;
    border-radius: 4px;
    color: black;
    box-shadow: 0 0 0 1px rgba(99,114,130,.16), 0 8px 16px rgba(27,39,51,.08);
}
.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
    font-size:12px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.sp-top {
    margin-bottom: 10px;
}
.sp-color, .sp-hue, .sp-clear, .sp-val, .sp-sat {
    border-radius: 3px;
}

.sp-input-container {
    margin-top: -5px;
}
.sp-input-container.sp-cf,
.sp-initial.sp-thumb.sp-cf,
.sp-button-container.sp-cf {
    height: 25px;
}
.sp-picker-container .sp-cf {
    margin-bottom: 10px;
}

.sp-palette-row-initial > span:first-child {
    cursor: pointer;
}

/* Input */
.sp-initial-disabled  .sp-input-container {
    width: 100%;
}
.sp-input {
    padding: 0px 5px !important;
    margin: 0;
    width: 100%;
    box-shadow: none !important;
    height: 100% !important;
    background: transparent;
    color: #3a3a3a;
    border-radius: 2px !important;
    border: 1px solid #e0e0e0 !important;
    text-align: center;
    font-family: monospace;
    font-size: inherit !important;
}
.sp-input:focus  {
    border: 1px solid orange;
}
.sp-input.sp-validation-error {
    border: 1px solid red;
    background: #fdd;
}
.sp-picker-container , .sp-palette-container {
    position: relative;
    padding: 10px;
}
.sp-picker-container {
    width: 200px;
    padding-bottom: 0;
}

/* 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;
}
.sp-initial span {
    width: 30px;
    height: 25px;
    border:none;
    display:block;
    float:left;
    margin:0;

}
.sp-initial .spe-thumb-el.sp-thumb-active {
    border-radius: 0 5px 5px 0;
}
.sp-initial .spe-thumb-el{
   border-radius: 5px 0 0 5px;
}

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

/* Buttons */
.sp-button-container {
    float: right;
}
.sp-palette-button-container {
    margin-top: 10px;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer {
    position: relative;
    overflow:hidden;
    cursor:pointer;
    display:inline-block;
    border-radius: 3px;
    border: 1px solid #aaa;
    color: #666;
    transition: border-color .3s;
    vertical-align: middle;
    width: 3rem;
    height: 1.5rem;
    margin: 0;
    padding: 0;
}
.sp-replacer.sp-disabled {
    cursor:default;
    border-color: silver;
    color: silver;
}
.sp-dd {
    position: absolute;
    font-size: 10px;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 2px;
    line-height: 1.6rem;
    background-color: white
}
.sp-preview {
    position:relative;
    width: 100%;
    height: 100%;
    float:left;
    z-index: 0;
}
.sp-preview-inner {
    transition: background-color .2s;
}
.sp-preview-inner.sp-clear-display {
    display: none;
}

/* Color Picker */
.sp-palette .sp-thumb-el {
    width: 16px;
    height: 16px;
    margin: 3px;
    border: none;
    border-radius: 3px;
}


/* Buttons: http://hellohappy.org/css3-buttons/ */
.sp-container button {
    border-radius: 3px;
    border: none;
    background: transparent;
    line-height: 1;
    padding: 0 8px;
    height: 25px;
    text-transform: capitalize;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #606c72;
    font-weight: bold;
}
.sp-container button.sp-choose {
    background-color: #3cab3b;
    color: #fff;
    margin-left: 5px;
}
.sp-container button:hover {
    opacity: .8;
}
.sp-container button.sp-palette-toggle {
    width: 100%;
    background-color: #f3f3f3;
    margin: 0;
}


.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==');
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='%23ccc' fill-opacity='1'%3E%3Crect x='0' y='0' width='6' height='6' /%3E%3Crect x='6' y='6' width='6' height='6' /%3E%3C/svg%3E");
}
.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 {
    border-radius: 3px;
    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=');
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18'%3E%3Cpath d='M9 16.172l10.594-10.594 1.406 1.406-12 12-5.578-5.578 1.406-1.406z' fill='%23000'%3E%3C/path%3E%3C/svg%3E");
}

.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=');
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18'%3E%3Cpath d='M9 16.172l10.594-10.594 1.406 1.406-12 12-5.578-5.578 1.406-1.406z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
}

.sp-clear-display {
    background-repeat:no-repeat;
    background-position: center;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAABe0lEQVQokYXSsUtcQRTF4d8Jj+VhHSxkEQuLsEUKK0nhTBFTmLSSUhBCMCAWsmgIwWrBLk0akfwLCaSQKBJmtrIIISwpRFKIhViETScphGMzysMtvOVwvpm5d0bGNCuGWAOPgYdl6S8wSDn9b+bUhDHEKWAdeAFMANg+l/TV9ofcz6cjMIbYBvaBMds7QCqZ58CmpBNgPuV0DvAAIMyFGugWtJr7eTv38xEwkPRPErY7QDeG2LqFkjrAgu0dSd/KDVqSNmxvAZ8lfbS9AHRuYemnLWkv5XRVBrQMbAI/gTXgEzAJtJuwBVS2L2OIle03QA/4Lmkl5XQBXEqqbFcAVYFDYChpFngiqWf7l6TXKaezMt2Zkhk24THwG+jZriX9AFZvUAyxLbRke2D75O5zPAO+ADXwEtizjaRHwDvbTyUtppwOmicCHAJvbXcl9YA1SQDjtseA97YPRz7ATcUQp2y/kjRdevsjaTfldNrMjcDGBjXA3T96L7yvrgFzP69+0Ao/HAAAAABJRU5ErkJggg==');
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14'%3E%3Cpath d='M12 20.016q3.281 0 5.648-2.367t2.367-5.648q0-2.672-1.734-4.922l-11.203 11.203q2.25 1.734 4.922 1.734zM3.984 12q0 2.672 1.734 4.922l11.203-11.203q-2.25-1.734-4.922-1.734-3.281 0-5.648 2.367t-2.367 5.648zM12 2.016q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055-7.055 2.93-7.055-2.93-2.93-7.055 2.93-7.055 7.055-2.93z' fill='%23000'%3E%3C/path%3E%3C/svg%3E");
}
#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;
}

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

#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 1px 3px 0 #616365;
}

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

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

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

.btn-group.open .btn-primary.dropdown-toggle,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
  background: #1f76d8;
  color: #ffffff;
}

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: #1f76d8;
  border-color: #1f76d8;
  color: #ffffff;
}

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

@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-expand-lg .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;
  }
  select {
    width: 395px;
  }
  .control-medium input,
  .control-medium select,
  .control-medium textarea {
    width: 380px;
  }
}
.site-footer .og-attribution {
  display: inline-block;
  padding-right: 15px;
}

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

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

/* Features section */
.features {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.module-content.page-header {
  border-bottom: 1px solid black !important;
  z-index: 10;
}/*# sourceMappingURL=theme.css.map */
/*
********************************************
=======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: "Satoshi", "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;
}

@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi-l-wf.woff2") format("woff2"), url("../../fonts/satoshi-l-wf.woff") format("woff");
  font-variant: normal;
  font-feature-settings: normal;
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi-li-wf.woff2") format("woff2"), url("../../fonts/satoshi-li-wf.woff") format("woff");
  font-variant: normal;
  font-feature-settings: normal;
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi-r-wf.woff2") format("woff2"), url("../../fonts/satoshi-r-wf.woff") format("woff");
  font-variant: normal;
  font-feature-settings: normal;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi-ri-wf.woff2") format("woff2"), url("../../fonts/satoshi-ri-wf.woff") format("woff");
  font-variant: normal;
  font-feature-settings: normal;
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi-m-wf.woff2") format("woff2"), url("../../fonts/satoshi-m-wf.woff") format("woff");
  font-variant: normal;
  font-feature-settings: normal;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi-mi-wf.woff2") format("woff2"), url("../../fonts/satoshi-mi-wf.woff") format("woff");
  font-variant: normal;
  font-feature-settings: normal;
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi-b-wf.woff2") format("woff2"), url("../../fonts/satoshi-b-wf.woff") format("woff");
  font-variant: normal;
  font-feature-settings: normal;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi-bi-wf.woff2") format("woff2"), url("../../fonts/satoshi-bi-wf.woff") format("woff");
  font-variant: normal;
  font-feature-settings: normal;
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi-bb-wf.woff2") format("woff2"), url("../../fonts/satoshi-bb-wf.woff") format("woff");
  font-variant: normal;
  font-feature-settings: normal;
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi-bbl-wf.woff2") format("woff2"), url("../../fonts/satoshi-bbl-wf.woff") format("woff");
  font-variant: normal;
  font-feature-settings: normal;
  font-weight: 900;
  font-style: italic;
}
.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;
}

a {
  color: #122852;
}

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: #122852;
}
section.main-browse.bg-primary,
section.main-updates.bg-primary,
section.main-featured.bg-primary,
section.featured-charts-wrap.bg-primary {
  background: #3395ff;
}
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: #3395ff;
  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: #122852;
  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;
  }
}

.row.wrapper .primary .media-grid {
  background: #ffffff !important;
  border: none !important;
}
.row.wrapper .primary .media-grid .media-item {
  border-radius: 0.75rem;
  border: none;
  float: none;
  background: #f2f4f7;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 768px) {
  .row.wrapper .primary .media-grid .media-item {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    width: 50%;
    margin: 0 1rem 1rem 0;
  }
}
@media screen and (min-width: 992px) {
  .row.wrapper .primary .media-grid .media-item {
    flex: 0 0 calc(33.33% - 1rem);
    max-width: calc(33.33% - 1rem);
    width: 33.33%;
    margin: 0 1rem 1rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .row.wrapper .primary .media-grid .media-item {
    flex: 0 0 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    width: 25%;
  }
}
.row.wrapper .primary .media-grid .media-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}
.row.wrapper .primary .media-grid .media-item h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
}
.row.wrapper .primary .media-grid .media-item h3.media-heading {
  margin-top: 1rem;
  font-size: 1.5rem;
}
.row.wrapper .primary .media-grid .media-item .media-view {
  font-size: 1.5rem;
  border: none !important;
  border-radius: 0.75rem;
}
.row.wrapper .primary .media-grid .media-item .media-view:hover {
  border: none !important;
  box-shadow: 0px 0px 7px 0px #98a2b3;
}
.row.wrapper .primary .media-grid.grid-organization .media-item {
  border-radius: 0.75rem;
  border: none;
  background: #f2f4f7;
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 768px) {
  .row.wrapper .primary .media-grid.grid-organization .media-item {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    width: 50%;
    margin: 0 1rem 1rem 0;
  }
}
@media screen and (min-width: 992px) {
  .row.wrapper .primary .media-grid.grid-organization .media-item {
    flex: 0 0 calc(33.33% - 1rem);
    max-width: calc(33.33% - 1rem);
    width: 33.33%;
    margin: 0 1rem 1rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .row.wrapper .primary .media-grid.grid-organization .media-item {
    flex: 0 0 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    width: 25%;
  }
}
.row.wrapper .primary .media-grid.grid-organization .media-item img {
  width: auto;
  max-width: 100%;
  max-height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0.25rem;
}
.row.wrapper .primary .media-grid.grid-group .media-item {
  border-radius: 0.75rem;
  border: none;
  background: #f2f4f7;
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 768px) {
  .row.wrapper .primary .media-grid.grid-group .media-item {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    width: 50%;
    margin: 0 1rem 1rem 0;
  }
}
@media screen and (min-width: 992px) {
  .row.wrapper .primary .media-grid.grid-group .media-item {
    flex: 0 0 calc(33.33% - 1rem);
    max-width: calc(33.33% - 1rem);
    width: 33.33%;
    margin: 0 1rem 1rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .row.wrapper .primary .media-grid.grid-group .media-item {
    flex: 0 0 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    width: 25%;
  }
}
.row.wrapper .primary .media-grid.grid-group .media-item img {
  width: auto;
  max-width: 100%;
  max-height: 128px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0.25rem;
}

.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;
}

::-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 #3395ff;
  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 #3395ff;
}

.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: #122852;
  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: "Satoshi" !important;
  font-size: 1rem;
  font-weight: 500;
}

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

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

.btn {
  display: inline-flex;
  border: none;
  font-size: 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: #3395ff;
  color: #ffffff;
  border: none;
}
.btn.btn-primary:hover {
  background: #122852;
}
.btn.btn-primary-dark {
  background: #122852;
  color: #ffffff;
  border: 2px solid #122852;
}
.btn.btn-primary-dark:hover {
  background: #3395ff;
  border: 2px solid #3395ff;
}
.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 .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: #3395ff;
}

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

.masthead .logo img {
  max-height: 40px;
  margin: 0.25rem 0;
}
@media screen and (min-width: 992px) {
  .masthead .logo img {
    max-height: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .masthead .logo img {
    max-height: 60px;
  }
}

.navbar-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0.25rem;
  border-radius: 0.75rem;
}

.masthead {
  box-shadow: 0 2px 4px 0 rgba(19, 21, 23, 0.1);
  padding: 0;
}
.masthead hgroup h2 {
  bottom: 0px;
  left: 1rem;
}
.masthead #main-navigation-toggle {
  margin-top: 0.25rem;
  padding: 0.5rem 0;
  margin-left: auto;
}
.masthead .navbar-collapse {
  margin-top: 0.25rem;
  padding: 0.5rem 0;
  margin-left: auto;
  justify-content: flex-end;
}
.masthead .navigation {
  padding: 0.5rem 0;
  margin-right: 1rem;
}
.masthead .navigation .nav-pills li a {
  padding: 0.75rem 1rem;
  text-transform: capitalize;
  font-weight: 500;
  border-radius: 0.5rem;
}
.masthead .navigation .nav-pills li a:hover {
  background: #3395ff !important;
  color: #ffffff;
  text-decoration: none;
}
.masthead .navigation .nav-pills > li + li {
  margin-left: 5px;
}
.masthead .navigation > li > a {
  padding: 0.5rem 1rem;
  text-transform: capitalize;
  font-weight: 500;
}
.masthead .site-search {
  padding: 0.5rem 0;
  margin: 0;
}

.account-masthead .account ul li {
  border-left: none;
}
.account-masthead .account ul li a:hover {
  color: #ffffff;
}
.account-masthead .account ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

header.compressed.masthead .container #main-navigation-toggle nav.section.navigation ul.navbar-nav {
  list-style: none;
}
header.compressed.masthead .container #main-navigation-toggle nav.section.navigation ul.navbar-nav li {
  list-style: none;
}
header.compressed.masthead .container #main-navigation-toggle nav.section.navigation ul.navbar-nav li a {
  padding: 0.75rem 1.25rem;
  margin: 0 0.5rem;
}
header.compressed.masthead .navbar-collapse {
  float: none;
}
header.compressed.masthead .navigation {
  float: left;
  margin-left: 0.5rem;
}
header.compressed.masthead .account-masthead {
  float: right;
  margin: 0 0 0 auto;
}
header.compressed.masthead .account-masthead .account ul li a {
  padding: 0.5rem 1rem;
}
header.compressed.masthead .account-masthead .account ul li a:hover {
  background: #e4e7ec !important;
}
header.compressed.masthead .account-masthead .account.dh-icon-links ul li a {
  padding: 0;
}
header.compressed.masthead .site-search {
  padding-top: 1rem;
}

.search-form .search-input.search-giant button {
  margin-top: -1rem;
}

footer a {
  color: #d0d5dd !important;
}
footer .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d0d5dd;
}
footer.site-footer {
  padding: 4rem 2rem 0.25rem 2rem;
  margin-bottom: 0.5rem;
}
footer.site-footer .lead-footer {
  font-weight: 500;
  font-size: 1.25rem;
  color: #e4e7ec;
  text-transform: uppercase;
}
footer.site-footer p.footer-logo {
  background: url(../../images/logo-invert.svg) no-repeat center center;
  background-size: 210px 48px;
  width: 210px;
  height: 48px;
}
footer.site-footer p.footer-logotypes {
  background: url(../../images/footer-logotypes.svg) no-repeat center center;
  background-size: 210px 48px;
  width: 210px;
  height: 48px;
}

.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: #f2f4f7;
  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(25% - 1.5rem);
    max-width: calc(25% - 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: #e4e7ec;
  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: #3395ff;
}
a.browse-group:hover .browse-group-link {
  background-color: #122852;
  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: #f2f4f7;
}

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

article.module .dataset-list .dataset-item {
  background: #e4e7ec;
  padding: 2rem !important;
}
article.module .dataset-list .dataset-item::before {
  display: none;
}

.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: #122852;
  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: #f9fafb;
  transform: skewY(355deg);
  transition: 0.5s;
  z-index: 1;
}
.homepage .dataset-item:hover::before {
  bottom: 0%;
  transform: skewY(360deg);
  z-index: 1;
}

.primary ul.dataset-list li.dataset-item {
  background-color: #f2f4f7;
}
.primary ul.dataset-list li.dataset-item:hover {
  background-color: #e4e7ec;
}

@media screen and (min-width: 992px) {
  .homepage ul.dataset-list li.dataset-item {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    margin: 0 1rem 2rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .homepage ul.dataset-list li.dataset-item {
    flex: 0 0 calc(33.33% - 2rem);
    max-width: calc(33.33% - 2rem);
    margin: 0 2rem 2rem 0;
  }
}

ul.dataset-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
ul.dataset-list li.dataset-item {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 0 1rem 0;
  padding: 2rem;
  border-radius: 0.75rem;
}
ul.dataset-list li.dataset-item .dataset-content {
  position: relative;
  z-index: 9;
}
ul.dataset-list li.dataset-item .dataset-content h3.dataset-heading a {
  font-size: 1.25rem;
  font-weight: 500;
  color: #122852;
  letter-spacing: -0.5px;
}
ul.dataset-list li.dataset-item .dataset-content .datset-update {
  color: #667085;
  font-size: 0.875rem;
  font-weight: 400;
  display: flex;
  align-items: center;
}
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;
}

section.showcases {
  display: block;
  clear: both;
}
section.showcases .slick-slider {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.showcases .slick-showcase .media-item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: 480px;
  padding: 1rem;
  margin: 0 1.5rem 1.5rem 0;
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  section.showcases .slick-showcase .media-item {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  section.showcases .slick-showcase .media-item {
    width: 25%;
  }
}
section.showcases .slick-showcase .media-item img.media-image {
  display: flex;
  position: absolute;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0px;
  top: 0px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
section.showcases .slick-showcase .media-item .media-content {
  background-color: rgba(0, 24, 51, 0.5);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  padding: 1.5rem 1.25rem;
  z-index: 99;
  border-radius: 1rem;
}
section.showcases .slick-showcase .media-item .media-content h4,
section.showcases .slick-showcase .media-item .media-content h3,
section.showcases .slick-showcase .media-item .media-content p {
  position: relative;
  z-index: 2;
}
section.showcases .slick-showcase .media-item .media-content h4 {
  font-size: 1rem;
  color: #e4e7ec;
  font-weight: 400;
  margin: 0 0 0.25rem;
}
section.showcases .slick-showcase .media-item .media-content h3 {
  color: #ffffff;
  letter-spacing: -1px;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.25rem;
  line-height: 1.125;
}
section.showcases .slick-showcase .media-item .media-content p {
  color: #e4e7ec;
  letter-spacing: -0.5px;
}
section.showcases .slick-showcase .media-item .media-content a.media-view {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: none;
  overflow: hidden;
  transition: all 0.2s ease-in;
  text-decoration: none;
}
section.showcases .slick-showcase .media-item .media-content a.media-view:hover {
  text-decoration: none;
}
section.showcases .slick-showcase .media-item .media-content:hover {
  background-color: rgba(0, 24, 51, 0.75);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
section.showcases .slick-showcase .media-item:hover img.media-image {
  filter: brightness(75%);
}
section.showcases .slick-showcase .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  border: none;
  outline: none;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 100%;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  z-index: 9999;
}
section.showcases .slick-showcase .slick-arrow.slick-next {
  background: #ffffff url("../../icons/icon-next-item.svg") no-repeat center center;
  background-size: 24px auto;
  right: 0;
}
section.showcases .slick-showcase .slick-arrow.slick-next:before {
  display: none !important;
}
section.showcases .slick-showcase .slick-arrow.slick-prev {
  background: #ffffff url("../../icons/icon-prev-item.svg") no-repeat center center;
  background-size: 24px auto;
  right: 2.5rem;
}
section.showcases .slick-showcase .slick-arrow.slick-prev:before {
  display: none !important;
}

.slick-next:before,
.slick-prev:before {
  display: none !important;
}

/* 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;
}
.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;
}

.page-header {
  background-color: #ffffff;
  border-bottom: 2px solid #e4e7ec;
}
.page-header .nav-tabs {
  border: none;
}
.page-header .nav-tabs a {
  color: #ffffff;
  font-weight: 500;
  background: #122852;
}
.page-header .nav-tabs > li {
  margin: 0;
}
.page-header .nav-tabs > li > a {
  margin-right: 0.25rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
  color: #122852;
}
.page-header .nav-tabs > li > a:hover {
  background-color: #3395ff;
  color: #ffffff;
}
.page-header .nav-tabs > li.active > a, .page-header .nav-tabs > li.active > a:hover {
  color: #ffffff;
  padding: 0.75rem 1rem;
}
.page-header .nav-tabs li.active a, .page-header .nav-tabs a:hover {
  background-color: #3395ff;
  color: #ffffff;
  padding: 0.75rem 1rem;
}

.dropdown-menu > li > a {
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  font-size: 1rem;
}
.dropdown-menu > li > a i {
  margin-right: 0.5rem;
}

.btn-group.open .dropdown-toggle {
  box-shadow: none;
}

.table-sm > tbody > tr > th, .table-sm > tbody > tr > td {
  padding: 0.5rem 1rem;
}

.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > th {
  padding: 0.5rem 1rem;
}

.js .table-toggle-less .show-less,
.js .table-toggle-more .show-more {
  font-weight: 700;
}

ul.tag-list {
  padding: 0.75rem;
  box-shadow: none;
  border: none;
}
ul.tag-list li a.tag {
  margin-bottom: 4px;
  color: #101828;
  background-color: #f2f4f7;
  padding: 0.25rem 0.75rem;
  border: none;
  border-radius: 100px;
  box-shadow: none;
  background: #3395ff;
  color: #ffffff;
  transition: 0.3s all ease-in-out;
}
ul.tag-list li a.tag:hover {
  background: #122852;
  border: none;
}

.accordion .accordion-item {
  margin: 0 auto 1rem;
  border: 2px solid #e4e7ec;
  padding: 0 0;
  border-radius: 0.5rem;
}
.accordion .accordion-item .accordion-header .accordion-button {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  box-shadow: none;
  color: #122852;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: #f2f4f7;
}
.main .secondary {
  padding: 0 0.75rem !important;
  z-index: 1;
}

.page_primary_action {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin: -1rem 0 1rem;
}
.page_primary_action > a.btn {
  margin: 0;
}
.page_primary_action > a.btn + a.btn {
  margin-left: 1rem;
}

.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 #3395ff;
  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(../../icons/icon-arrow-down.svg) 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;
}

section.getStarted .module-content .container .row > * {
  color: #ffffff;
}
section.getStarted .module-content .container .row .buttons-group {
  margin-top: 2rem;
  flex-direction: row;
}
section.getStarted .module-content .container .row .buttons-group .btn-primary-dark:hover {
  background: #e4e7ec;
  color: #122852;
  border: 2px solid #e4e7ec !important;
}

html,
body {
  font-family: "Satoshi", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  color: #101828;
  line-height: 1.5;
}

.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: #004999;
}

.navbar.masthead li.active a {
  background-color: transparent !important;
  color: #004999;
  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/dh-hero-bg.jpg") no-repeat center center;
  background-size: cover;
}

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

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

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

.hero-area {
  min-height: 535px;
  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;
}/*# sourceMappingURL=style.css.map */