:root {
    --light-text: #00c9a8;
    --dark-text: #013246;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-Regular.cc9b7721674b.woff2") format("woff2"), url("../fonts/SourceSansPro-Regular.166915451dbd.woff") format("woff");
    font-weight: 400;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-SemiBold.woff2") format("woff2"), url("../fonts/SourceSansPro-SemiBold.woff") format("woff");
    font-weight: 600;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-Bold.41061fe2d702.woff2") format("woff2"), url("../fonts/SourceSansPro-Bold.1c4cf21acecb.woff") format("woff");
    font-weight: 700;
}

body {
    font-family: "Source Sans Pro";
    color: var(--dark-text);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Source Sans Pro";
    font-weight: 700;
}

p {
    font-family: "Source Sans Pro";
}

span {
    font-family: "Source Sans Pro";
}

a {
    font-family: "Source Sans Pro";
}

button,
.btn {
    font-family: "Source Sans Pro";
    font-weight: 600;
}

/* BEGIN Login Styles */
#login {
    position: relative;
    min-height: calc(100vh - 200px);
    padding-bottom: 80px;
}

#login-logo {
    height: unset;
    width: 200px;
    margin: 50px 0;
}

#login h1 {
    color: white;
    font-size: 4.5rem;
    margin-bottom: 30px;
}

#login .login-background,
#password-reset-confirmation .login-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#login .login-background .background,
#password-reset-confirmation .login-background .background {
    background-color: var(--dark-text);
    position: absolute;
    z-index: -1;
    opacity: 1;
    height: 100%;
    width: 25%;
    bottom: 0;
    left: 0;
}

#login .login-background .fade,
#password-reset-confirmation .login-background .fade {
    background: linear-gradient(90deg, var(--dark-text) 0%, rgba(1, 50, 70, 0) 100%);
    position: absolute;
    z-index: -1;
    opacity: 1;
    height: 100%;
    width: 20%;
    bottom: 0;
    left: 25%;
}

#login .login-background .image,
#password-reset-confirmation .login-background .image {
    background-color: var(--dark-text);
    height: 100%;
    width: 75%;
    position: absolute;
    z-index: -2;
    right: 0;
}

#login .login-background .image img,
#password-reset-confirmation .login-background .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#login .form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

@media (max-width: 768px) {
    #login .form-container,
    #password-reset-confirmation .form-container {
        grid-template-columns: 1fr;
    }
}

#login .form-container form,
#password-reset-confirmation .form-container form {
    background-color: white;
    border: 1px solid #E6EAEF;
    border-radius: 8px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

#login .disclaimer {
    background-color: #F5F8FBF2;
    padding: 45px;
    border: 3px solid #D1DAE2;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    color: #70798C;
}

#login input.form-control {
    margin-bottom: 25px;
}

#login .btn-primary,
#password-reset-confirmation .btn-primary {
    padding: 10px 90px;
    color: var(--dark-text);
    background-color: #00c9a8;
    border-radius: 30px;
    -webkit-transition: all ease-in-out 0.15s;
    -o-transition: all ease-in-out 0.15s;
    transition: all ease-in-out 0.15s;
}

#login .btn-primary:hover,
#password-reset-confirmation .btn-primary:hover {
    background-color: #08a5a0;
    border-color: #08a5a0;
}

#login .support-controls {
    margin-top: auto;
    padding-top: 20px;
    color: #70798C;
}

#login .support-controls p {
    display: flex;
    align-items: center;
    gap: 10px;
}

#login .support-controls p a {
    color: #70798C;
    font-weight: 600;
}

/* New styles for horizontal layout */
#login .support-controls .horizontal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
}

#login .support-controls .support-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

#login .support-controls .support-link a {
    color: #70798C;
    font-weight: 600;
}

#login ~ footer .footer_editor {
    margin-top: 0;
}

#login ~ .modal .modal-dialog {
    position: relative;
    max-width: 520px;
}

#login ~ .modal .modal-content {
    border-radius: 8px;
    border: 1px solid #e6eaef;
}

#login ~ .modal button.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #70798c;
    z-index: 1;
    border: none;
    background-color: transparent;
}

#login ~ .modal .modal-header,
#password-reset-confirmation ~ .modal .modal-header {
    text-align: center;
    border-bottom: none;
}

#login ~ .modal .modal-header i {
    color: #70798c;
}

#login ~ .modal .modal-header .icon-container,
#password-reset-confirmation ~ .modal .modal-header .icon-container {
    background-color: #00c9a8;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

#login ~ .modal .modal-header .icon-container i,
#password-reset-confirmation ~ .modal .modal-header .icon-container i {
    color: white;
}

#login ~ .modal h2,
#password-reset-confirmation ~ .modal h1 {
    text-transform: none;
    margin: 12px 0 0 0;
    font-size: 3rem;
    text-align: center;
}

#login ~ .modal .modal-body,
#password-reset-confirmation ~ .modal .modal-body {
    text-align: center;
    padding-top: 16px;
}

#login ~ .modal #before-you-start .modal-body > p:first-child,
#login ~ .modal #success-message .modal-body > p:first-child,
#login ~ .modal #forgot-password-form .modal-body > p:first-child {
    font-weight: 600;
}

#login ~ .modal aside {
    border-left: 3px solid #70798c;
    background-color: #f5f8fb;
    margin: 20px auto 40px;
    text-align: left;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
#login ~ .modal aside i {
    font-size: 2rem;
    color: #70798c;
}

#login ~ .modal #forgot-password-form aside i.la-exclamation {
    color: #ff862e;
    background-color: #fbeee8;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 1.6rem;
    flex-shrink: 0;
    display: flex;
    height: 20px;
    width: 20px;
}

#login ~ .modal aside p {
    margin: 0;
    font-size: 1.4rem;
}
#login ~ .modal .button-group {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
#login ~ .modal .btn-primary,
#login ~ .modal .btn-secondary,
#password-reset-confirmation ~ .modal .btn-primary {
    border-radius: 30px;
    padding: 6px 50px;
    color: var(--dark-text);
}

#login ~ .modal .btn-primary:hover,
#password-reset-confirmation ~ .modal .btn-primary:hover {
    background-color: #08a5a0;
    border-color: #08a5a0;
}

#login ~ .modal .progress-bar-container {
    width: 100%;
    height: 3px;
    background-color: #e6eaef;
}

#login ~ .modal .progress-bar-step {
    transition: width 0.2s ease-in-out;
    background-color: var(--light-text);
    height: 100%;
}

#login ~ .modal .step-progress-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    padding: 30px 0;
}

#login ~ .modal .step-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#login ~ .modal .step-progress .icon-container {
    background-color: #f5f8fb;
    border-radius: 50%;
    border: 2px solid #d1dae2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#login ~ .modal .step-progress .icon-container i {
    font-size: 2rem;
}

#login ~ .modal .step-progress .icon-container i,
#login ~ .modal .step-progress .label {
    color: #70798c;
}

#login ~ .modal .step-progress .label {
    font-size: 1.6rem;
}

#login ~ .modal .step-progress.active .icon-container {
    color: var(--light-text);
    background-color: #00c9a8;
    border-color: #00c9a8;
}

#login ~ .modal .step-progress.active .icon-container i {
    color: white;
}

#login ~ .modal .step-progress.active .label {
    color: var(--dark-text);
}

#login ~ .modal .form-group label {
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 1.6rem;
    margin: 12px 0;
}

#login ~ .modal .form-group input {
    border: 1px solid #d1dae2;
    border-radius: 4px;
    padding: 10px;
}

#login ~ .modal .form-group input:focus,
#login ~ .modal .form-group input:focus-visible {
    border-color: var(--light-text);
    box-shadow: none;
    outline: none;
}

#login ~ .modal #captcha-group,
#login ~ .modal #reset-pw-captcha-group {
    text-align: left;
}

#login ~ .modal #captcha-group img,
#login ~ .modal #reset-pw-captcha-group img {
    margin-right: 6px;
}

#login ~ .modal #refresh-captcha,
#login ~ .modal #refresh-reset-pw-captcha {
    display: inline-block;
    margin-top: 4px;
    font-size: 1.5rem;
    font-weight: 600;
}

#login ~ .modal #error-message,
#login ~ .modal #reset-pw-error-message {
    color: #ff126f;
    font-size: 1.6rem;
    font-weight: 600;
}

#logout #login-logo {
    margin: 50px auto 50px;
}

/* END Login Styles */

/* BEGIN Password Reset Confirmation Styles */
#password-reset-confirmation .form-header {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

#password-reset-confirmation .form-header h1 {
    font-size: 3rem;
    width: 100%;
}

#password-reset-confirmation .form-header p {
    font-weight: 600;
}

#password-reset-confirmation .form-group label {
    display: block;
    margin-bottom: 10px;
    line-height: 2.6rem;
    font-weight: 600;
    padding-left: 0;
    font-size: 1.7rem;
}

#password-reset-confirmation .form-group {
    width: 100%;
}

#password-reset-confirmation .input-wrapper {
    display: grid;
    grid-template-columns: 1fr 30px 30px;
    align-items: center;
}

#password-reset-confirmation .input-wrapper .form-control:first-child {
    border-right: none;
    border-radius: 4px 0 0 4px;
}

#password-reset-confirmation .input-wrapper .form-control:first-child:focus + .show-password-toggle {
    border-color: var(--light-text);
}

#password-reset-confirmation .input-wrapper .show-password-toggle {
    border-left: none;
    border-radius: 0 4px 4px 0;
    padding-left: 0;
    font-size: 2rem;
    cursor: pointer;
    color: #70798c;
}

#password-reset-confirmation .input-wrapper .la-info-circle {
    font-size: 2.3rem;
    cursor: pointer;
    color: #acb4c7;
    margin-left: 5px;
}

#password-reset-confirmation .input-wrapper .la-info-circle:hover {
    color: var(--light-text);
}

#password-reset-confirmation .input-wrapper .help-tooltip {
    position: relative;
    display: flex;
    align-items: center;
}

#password-reset-confirmation .input-wrapper .help-tooltip-content {
    position: absolute;
    opacity: 0;
    z-index: 401;
    cursor: default;
    min-width: 280px;
    font-weight: 500;
    text-align: center;
    right: -40%;
    top: calc(100% + 10px);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.95);
    pointer-events: none;
    padding: 10px;
    border-radius: 4px;
}

#password-reset-confirmation .input-wrapper .help-tooltip-content::before {
    content: "";
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.95);
    transform: translate(-50%, -99%);
    transform-origin: center center;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 10px;
}

#password-reset-confirmation .input-wrapper .help-tooltip-content p,
#password-reset-confirmation .input-wrapper .help-tooltip-content ul {
    font-size: 1.4rem;
}

#password-reset-confirmation .input-wrapper .help-tooltip-content ul {
    padding-left: 14px;
}

#password-reset-confirmation .input-wrapper .la-info-circle:hover + .help-tooltip-content {
    opacity: 1;
}

#password-reset-confirmation .btn-primary {
    margin: 0 auto;
}

#password-reset-confirmation .error-container {
    margin: 10px 0;
}

#password-reset-confirmation .error-message {
    color: #ff126f;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0;
}

#password-reset-confirmation ~ .modal .modal-body p {
    margin-bottom: 40px;
}
/* END Password Reset Confirmation Styles */

/* BEGIN navbar styles */
.navbar-collapse {
    padding-right: 0;
    padding-left: 0;
}

#openly_top_nav {
    background-color: var(--dark-text);
    border-bottom: 1px solid #1a4658;
    border-radius: 0;
    z-index: 1002;
}

#openly_top_nav a.navbar-brand {
    line-height: 28px;
    font-weight: 700;
    font-size: 2.2rem;
    padding: 13px 0;
    margin-left: 0;
    color: white;
}

#openly_top_nav a.navbar-brand:hover {
    color: var(--light-text);
}

#openly_top_nav li a.nav-bar-item,
#openly_top_nav li button.nav-bar-item,
#openly_top_nav li a.dropdown-toggle {
    border-left: 1px solid #1a4658;
    border-radius: 3px;
    padding: 13px 16px 11px;
    cursor: pointer;
    align-items: center;
    line-height: 19px;
    font-weight: 400;
    font-size: 1.5rem;
    color: white;
    display: flex;
    height: 74px;
}

#openly_top_nav li:last-child a.dropdown-toggle {
    border-left: none;
}

#openly_top_nav li.support {
    height: 74px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #1a4658;
    border-radius: 3px;
}

#openly_top_nav li.support a.nav-bar-item {
    background-color: #fff;
    border: 2px solid var(--light-text);
    color: var(--dark-text);
    height: unset;
    padding: 10px 12px 10px 10px;
    border-radius: 50px;
    margin: 0 5px 0 10px;
}

#openly_top_nav li.support a.nav-bar-item,
#openly_top_nav li.support a.nav-bar-item i {
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

#openly_top_nav li.support a.nav-bar-item:hover {
    background-color: var(--light-text);
    box-shadow: none;
    color: white;
}

#openly_top_nav li.support a.nav-bar-item:hover i {
    color: white !important;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #openly_top_nav li a.nav-bar-item,
    #openly_top_nav li button.nav-bar-item,
    #openly_top_nav li a.dropdown-toggle {
        padding-right: 15px;
        padding-left: 15px;
    }

    #openly_top_nav li a.nav-bar-item i,
    #openly_top_nav li button.nav-bar-item i,
    #openly_top_nav li a.dropdown-toggle i,
    #openly_top_nav li form i {
        display: none;
    }
}

#openly_top_nav li a:focus,
#openly_top_nav li a:hover {
    transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.1);
}

#openly_top_nav li.active > a {
    background-color: inherit;
    font-weight: 600;
}

#openly_top_nav i {
    margin-right: 5px;
}

#openly_top_nav .user-avatar {
    background-color: #e6eaef;
    border: 2px solid #00c9a8;
    justify-content: center;
    border-radius: 20px;
    align-items: center;
    display: flex;
    height: 40px;
    width: 40px;
}

#openly_top_nav .user-avatar span {
    letter-spacing: 1.87px;
    color: #013246;
    font-weight: 600;
    font-size: 1.4rem;
}

#openly_top_nav .dropdown-menu {
    background-color: var(--dark-text);
    border-radius: 0;
    margin-top: 75px;
    padding: 0;
}

#log-out > form > button {
    background: none;
    border: none;
    margin: 0;
    width: 100%;
}

#openly_top_nav li form {
    border-radius: 3px;
}

#openly_top_nav li form:hover {
    transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.1);
}

#openly_top_nav .overlay {
    background: var(--dark-text);
    position: fixed;
    display: none;
    opacity: 0.9;
    height: 100%;
    width: 100%;
    z-index: 1;
    left: 0;
    top: 0;
}

#openly_top_nav .overlay .ion-close-round {
    position: absolute;
    right: 20px;
    top: 13px;
}

#openly_top_nav i.green {
    color: var(--light-text);
}

#openly_top_nav i.gray {
    color: #70798c;
}

@media screen and (max-width: 767px) {
    #openly_top_nav .overlay .ion-close-round:hover {
        cursor: pointer;
    }

    #openly_top_nav .collapse.in {
        position: absolute;
        width: 100%;
        z-index: 2;
    }

    #openly_top_nav .collapsing .nav-bar-item,
    #openly_top_nav .collapsing .nav-bar-item a,
    #openly_top_nav .collapse.in .nav-bar-item,
    #openly_top_nav .collapse.in .nav-bar-item a {
        font-size: 2.5rem;
    }

    #openly_top_nav .navbar-header::before,
    #openly_top_nav .navbar-header::after {
        content: none;
    }

    #openly_top_nav .navbar-header {
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        display: flex;
        height: 74px;
    }

    #openly_top_nav a.navbar-brand {
        margin-left: 20px;
    }

    #openly_top_nav li a.nav-bar-item,
    #openly_top_nav li button.nav-bar-item,
    #openly_top_nav li a.dropdown-toggle {
        justify-content: center;
    }

    #openly_top_nav li.active > a {
        background-color: inherit;
    }

    #openly_top_nav .dropdown-menu {
        background-color: inherit;
        margin-top: 0;
    }
}
/* END navbar styles */

/* BEGIN banner styles */
.banner-beta {
    text-align: center;
    background-color: var(--light-text);
    min-height: 40px;
    padding: 10px;
    color: var(--dark-text);
    font-weight: 500;
    z-index: 5;
}

.banner-beta a {
    color: var(--dark-text);
    text-decoration: underline;
}
/* END banner styles */

/* BEGIN footer styles */
.footer_editor {
    box-shadow: 0 -1px 1px 0 #e3e6e8;
    background-color: white;
    text-align: center;
    font-size: 1.5rem;
    color: #395669;
    display: grid;
    align-items: center;
    gap: 15px;
    min-height: 120px;
    margin-top: 50px;
    padding: 20px;
    z-index: 0;
}

.footer_editor p {
    margin: 0;
}

@media (min-width: 750px) {
    .footer_editor {
        grid-template-columns: 1fr 2fr 1fr;
    }

    .footer_editor > p:first-child {
        grid-column: 2/3;
    }
}
/* END footer styles */

/* Project List */
#filter-container,
span#activity-search-container,
.filter-bar.background,
.search-filter-box.container {
    background-color: #f5f8fb;
}

activities .header-row a:hover {
    color: var(--light-text);
}

activities .activity-row {
    color: var(--dark-text);
}

activities .activity-row:hover {
    background-color: #f5f8fb;
}

activities .header-row,
activities .activity-row .activity-title {
    font-weight: 700;
}

@media (min-width: 480px) and (max-width: 767px) {
    activities .activity-row .activity-title {
        width: 20%;
    }

    activities .activity-row .activity-sectors {
        width: 17%;
    }

    activities .activity-row .activity-status {
        width: 20%;
    }

    activities .activity-row .activity-districts {
        width: 20%;
    }

    activities .activity-row .activity-budget {
        width: 23%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    activities .activity-title {
        width: 33%;
    }

    activities .activity-sectors {
        width: 13%;
    }

    activities .header-row .activity-status {
        width: 20%;
    }

    activities .header-row .activity-districts {
        width: 12%;
    }

    activities .header-row .activity-budget {
        width: 22%;
    }

    activities .activity-row .activity-status {
        width: 20%;
    }

    activities .activity-row .activity-districts {
        width: 19%;
    }

    activities .activity-row .activity-budget {
        width: 15%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    activities .activity-title {
        width: 40%;
    }

    activities .activity-sectors {
        width: 10%;
    }

    activities .header-row .activity-status {
        width: 16%;
    }

    activities .header-row .activity-districts {
        width: 17%;
    }

    activities .header-row .activity-budget {
        width: 17%;
    }

    activities .activity-row .activity-status {
        width: 16%;
    }

    activities .activity-row .activity-districts {
        width: 22%;
    }

    activities .activity-row .activity-budget {
        width: 12%;
    }
}

@media (min-width: 1200px) {
    activities .activity-title {
        width: 45%;
    }

    activities .activity-sectors {
        width: 8%;
    }

    activities .header-row .activity-status {
        width: 13%;
    }

    activities .header-row .activity-districts {
        width: 18%;
    }

    activities .header-row .activity-budget {
        width: 16%;
    }

    activities .activity-row .activity-status {
        width: 13%;
    }

    activities .activity-row .activity-districts {
        width: 22%;
    }

    activities .activity-row .activity-budget {
        width: 12%;
    }
}

.clear-filters {
    margin-top: -0.5rem;
    padding-left: 10px;
}

/* End Project List */

/* BEGIN project editor */

.language_tab {
    display: none;
}

.editor-container .reporting-org-info {
    display: none;
}

.editor-container form-completion {
    display: none;
}

label.control-label,
div.control-label label {
    font-weight: 600;
}

/* END project editor */

/* BEGIN project manager */
.activity_list_header .btn-primary.dropdown-toggle {
    height: 32px;
}

.activity_list_header .btn-primary.dropdown-toggle .caret {
    border-top-color: white;
    border-bottom-color: white;
    position: relative;
    bottom: 2px;
}

.activity-list-container #leftPanel,
.activity-list-container .activity_total_commit,
.activity-list-container .activity_card_substats,
.activity-list-container .row.section_lines,
.activity-list-container .activity_list_nav {
    display: none;
}

.activity-list-container .row.section_lines.edit-delete-row {
    display: block;
}

.activity-list-container .col-sm-9 {
    width: 100%;
}

/* END project manager */

/* START reviews / comments tab */

/* DIRD does not have endorsements */
endorsements,
#activity-status-badge {
    display: none;
}

/* Icon alignment on review/comments tab */
tab-review .icon-container,
[data-is="tab-review"] .icon-container {
    margin-top: 10px;
}

/* Editor: Expenditures tab styling */
#expenditure-value {
    text-align: right;
}
#expenditure-transaction-date,
#expenditure-value-date {
    height: 50px;
}

/* Navigation for the Expenditure Manager */
#region-nav.navbar-collapse,
#datastudio-nav.navbar-collapse {
    border-bottom: 1px solid #e6eaef;
}

#region-nav .nav-bar-item a,
#datastudio-nav .nav-bar-item a {
    color: var(--dark-text);
    padding: 20px 0;
    margin: 0 15px;
    height: 64px;
}

#region-nav .nav-bar-item a:hover,
#datastudio-nav .nav-bar-item a:hover {
    color: var(--light-text);
}

#region-nav .navbar-nav .nav-bar-item.active a,
#datastudio-nav .navbar-nav .nav-bar-item.active a {
    border-bottom: 4px solid var(--light-text);
    color: var(--dark-text);
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    #region-nav .nav-bar-item:first-child a,
    #datastudio-nav .nav-bar-item:first-child a {
        margin-left: 0;
    }

    #region-nav .nav-bar-item:last-child a,
    #datastudio-nav .nav-bar-item:last-child a {
        margin-right: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #region-nav .nav-bar-item:nth-child(5) a,
    #datastudio-nav .nav-bar-item:nth-child(5) a {
        margin-left: 0;
    }
}

/* Turning off some of the chrome for "All Regions Overview" */
#subregions-table_filter,
#subregions-table_info {
    display: none;
}
#subregions-table {
    border-bottom: none;
}
#subregions-table .sorting {
    background-image: none;
}
.manager-h2 {
    text-transform: none;
}

.iframe-wrapper {
    margin-top: 0px;
}

.iframe-wrapper #dsiframe {
    height: 950px;
    border: none;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .mobile-hidden {
        display: none;
    }
}

.bilum-logo-header {
   height: 2.2em;
}
