/* Minification failed. Returning unminified contents.
(289,12): run-time error CSS1036: Expected expression, found '$'
(294,17): run-time error CSS1036: Expected expression, found '$'
 */
/* main style, dont't change these */
html, body {
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important;
    font-size: 15px;
    background-color: #fff;
}

header {
    height: 52px; /*navbar heigth*/
}

main {
    /*padding-top: 52px;*/

    padding-top: 135px;
    flex-grow: 1;
}

.te-footer {
    background-color: #333;
    padding: 40px 0 40px 0;
    color: #ffffff !important;
    font-size: 15px;
}

.footerHeader {
    font-weight: bold;
    border-bottom: solid 1px #dddddd;
    margin-bottom: 5px;
}

.footerItems {
    color: #e7e7ef;
    text-decoration: none !important
}

    .footerItems:hover {
        color: #e7e7ef !important;
        text-decoration: none !important
    }

    .footerItems:visited {
        color: #fff;
        text-decoration: none !important
    }

.footer-copyright {
    font-size: .6em;
    color: #777;
    margin-left: 14px;
}

.text-truncate {
    text-overflow: initial;
}

/* anchor to the same page*/
.anchor {
    display: block;
    height: 52px; /*same height as header*/
    margin-top: -52px; /*same height as header*/
    visibility: hidden;
}

.navbar {
    padding-top: 0px;
    padding-bottom: 0px;
    z-index: 99;
    box-shadow: none;
    height: 3.5em !important;
}

    .navbar .container {
        height: 3.5em !important;
    }

    .navbar .material-icons {
        color: white;
    }

        .navbar .material-icons:hover {
            background-color: white;
            color: #333;
        }

.navbar-brand {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    margin-left: -0.65em;
    top: 1px
}

.nav-link {
    text-align: center;
    line-height: 1;
}

@media only screen and (max-width: 991px) {
    .nav-link {
        text-align: left;
    }
}

.active .nav-link {
    font-weight: bold !important;
    font-size: 18px;
    padding-top: 7px;
}

.bg-dark {
    background-color: #333 !important;
}

#logo-title {
    font-size: 16px;
    color: #dddddd;
    line-height: 14px;
    font-weight: bold;
    text-decoration: none;
    padding-top: 2px;
    vertical-align: bottom;
}

#logo-subtitle {
    font-size: 18px;
    padding-left: 2px;
    line-height: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #858585;
    padding-top: 0px;
    vertical-align: bottom;
}
/* end of main style */

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.card-row-no-margin {
    margin: -1.25rem;
}

    .card-row-no-margin .card-inner-pad-col {
        padding: 15px;
    }

.card-inner-highlighted-col {
    background-color: #212529;
}

.btn-group-small {
    margin: 0px;
}

/* api code example */
.api-code {
    font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, serif;
    font-size: 12px;
    line-height: 1.5;
    background-color: #1c1c1c;
    color: #FFFFFF;
    word-wrap: break-word;
    padding: 10px 5px;
}

    .api-code .reserved-keyword {
        color: #ae81ff;
    }

    .api-code .string {
        color: #a6e22e;
    }

    .api-code .object-method {
        color: #66d9ef;
    }
/* end of api code example */

/* load spiner */
.loader {
    right: 1px;
    bottom: 12px;
    border: 3px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 3px solid #555;
    border-radius: 50%;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* end load spiner */

/* clickable icons */
i.clickable_icon {
    color: black;
    cursor: pointer;
}

    i.clickable_icon:hover {
        color: #191919;
    }

i.selected_icon {
    background-color: #b5b9bd;
    border-radius: 20%;
}
/* end of clickable icons */

/* bulk download icons */
.remove-indicator-icon {
    position: absolute;
    right: 5px;
}
/* end bulk download icons */

/* badge */
.badge-secondary {
    color: #fff;
    background-color: #b5b9bd;
    max-width: 100%;
    text-overflow: ellipsis;
}

.badge-free {
    color: #fff;
    background-color: #47b719;
    max-width: 100%;
    text-overflow: ellipsis;
}

.badge-selected {
    background-color: #6c757d;
}

.badge .material-icons {
    font-size: 0.7em;
}
/* end badge */

/* main search nav */
.main-search-nav {
    position: relative;
    width: 100vw;
    left: calc(-1*((100vw - 100%) / 2));
    padding: 1em 0rem;
    background: rgba(0, 0, 0, 0.5);
    background-color: #f5f5f5;
    border-bottom: 1px solid #cfcfcf;
}

@media only screen and (max-width: 991px) { /*mobile view*/
    .main-search-nav {
        padding: 1.25em 0;
    }
}
/* end of main search nav */

/* main search input (the detached one below the navbar) */
#main-search {
    color: $lightgray !important;
    border-bottom: solid #929aa8 1px !important;
    border-radius: 0;
    width: 65%;
    height: 1.9rem;
    background: $black !important;
    font-size: 15px !important;
    -webkit-transition: width .3s ease-in-out;
    -moz-transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
    float: right;
    text-indent: 3px;
    padding-left: 0;
}

#main-search:focus {
    outline: none;
}
.search-bar {
    padding: 0 !important;
    top: 70px !important;
}
    .search-bar input,
    .search-bar input::placeholder { /* Most modern browsers support this now. */
        font-size: 1em !important;
    }

    .search-bar input {
        /*background-color: white;
        border-width: 0px;
        border-radius: 5px;
        outline: none;
        color: black;
        padding: 3px 20px 0 20px;*/

        color: white;
        border: 0;
        border-bottom: solid #929aa8 1px !important;
        border-radius: 0;
        height: 1.9rem;
        background: #333 !important;
        font-size: 15px !important;
        text-indent: 3px;
    }

        .search-bar input::placeholder { /* Most modern browsers support this now. */
            color: lightgray;
            opacity: 0.8;
        }

.main-search-input {
    margin-bottom: 0px;
    padding-top: 0px;
}

    .main-search-input input,
    .main-search-input input::placeholder { /* Most modern browsers support this now. */
        font-size: 15px !important;
    }

    .main-search-input input {
        background-color: white;
        color: #495057;
        border: 1px solid rgba(0,0,0,.26);
        outline: transparent;
        width: 100%;
        height: 3rem;
        padding: 1px 30px 1px 20px;
    }

        .main-search-input input::placeholder { /* Most modern browsers support this now. */
            color: gray;
            opacity: 0.9;
        }

        .main-search-input input:focus {
            background-color: white;
            color: black;
        }

            .main-search-input input:focus::placeholder {
                color: lightgray;
                opacity: 0.9;
            }
/* end of main search input (the detached one below the navbar) */

/* vertically centered flexbox */
.vertically-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* end of vertically centered flexbox */

/* fonts and titles */
.title-text {
    font-size: 1em;
}

.card {
    font-size: 1em;
}

    .card h4 {
        font-size: 1.25em;
        font-weight: bold;
    }

.card-title {
    margin-bottom: 0.25rem !important;
}

.card-symbol {
    color: #808080;
    font-size: 0.8em;
}

.card-info-text {
    color: #6b6b6b;
}

.country-link {
    font-size: 1.1em;
    color: #333333;
}
/* fonts and titles */

/* selectable li elements */
.selectable-li:hover {
    background-color: #f5f5f5;
}

.selectable-li-active {
    background-color: #d5d5d5;
}
/* end of selectable li elements */

/* auto complete */
.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}

.autocomplete-open {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #e1e4e8;
    border-bottom: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 15px;
}

.navbarIcons .autocomplete-items {
    position: absolute;
    border: 1px solid #e1e4e8;
    border-bottom: none;
    /*border-top: none;*/
    z-index: 99;
    top: 40px;
    right: -7% !important;
    left: auto;
    margin: 0px 15px;
    width: 250%;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {
            background-color: #e9e9e9;
        }

.autocomplete-active {
    background-color: #bebebe !important;
    color: #ffffff;
}
/* end fo auto complete */

.table thead th {
    color: #333;
}

.table th, .table td {
    border-top: none !important;
}
/* end of table headers capitalized */

/*Credit Ratings country section*/
@media only screen and (max-width: 517px) {
    .mobileCR .col {
        padding: 8px;
    }
}

@media only screen and (max-width: 517px) {
    .mobileCR .col-3 {
        padding: 8px;
    }
}


@media only screen and (max-width: 427px) {
    .mobileCR .col {
        padding: 6px;
        font-size: 90%;
    }
}

@media only screen and (max-width: 427px) {
    .mobileCR .col-3 {
        padding: 6px;
        font-size: 90%;
    }
}

@media only screen and (max-width: 370px) {
    .mobileCR .col {
        padding: 6px;
        font-size: 80%;
    }
}

@media only screen and (max-width: 370px) {
    .mobileCR .col-3 {
        padding: 6px;
        font-size: 80%;
    }
}
/*end of Credit Ratings country section*/

/*Credit Ratings table*/
@media only screen and (max-width: 510px) {
    .mobile td, .mobile th {
        font-size: 75% !important;
        padding: 3px;
    }
}

/*end of Credit Ratings table*/

/*User Account mobile*/
@media only screen and (max-width: 560px) {
    .mobileUserAccount td, .mobileUserAccount th {
        font-size: 90% !important;
    }
}

@media only screen and (max-width: 470px) {
    .mobileUserAccount td, .mobileUserAccount th {
        font-size: 80% !important;
    }
}
/* end of User Account mobile*/

/* tag code */
code {
    color: #333333;
}
/* end of tag code */

/* links */
a {
    color: #191919;
}

    a:hover {
        color: #191919;
        text-decoration: underline;
    }

    a.no-underline-hover:hover {
        text-decoration: none;
    }

/* end of links*/

/* border for bulk list */
.border-list a + a {
    border-top: 1px solid #b5b9bd;
}
/* end of border for bulk list */

/* home card */
.card.home-card:hover {
    background-color: #99999933;
}

.card a:hover {
    text-decoration: none;
}

.home-card {
    min-height: 167px;
    background-color: #f5f5f5;
    border: none !important;
}

    .home-card i {
        font-size: 4em;
    }

/*Crypto icon circle*/
.cryptoCircle {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    transform: rotate(11deg);
    background-color: #191919;
    color: white;
    text-align: center;
    padding: 7px 0px 0px 1px;
    font-size: 10px;
}

.home-card .card-title {
    font-size: 1em;
}

@media only screen and (max-width: 400px) {
    .home-card {
        min-height: 120px;
    }

        .home-card i {
            font-size: 3em;
        }

    .cryptoCircle {
        width: 40px;
        height: 40px;
        padding: 4px 0px 0px 1px;
        margin-top: 5px;
    }

    .removeWord {
        display: none;
    }
}
/* end card */

/* remove home div border undes 450px*/
@media only screen and (max-width: 450px) {
    .home a .card {
        border: none;
    }
}
/* end of remove home div border undes 500px*/

/* button */
.caret-btn-sm {
    padding: 0px 5px;
    margin: 0px;
}

.download-group-btn {
    margin: 0px;
}

    .download-group-btn .default-btn {
        text-transform: initial;
        color: #333;
        padding: 5px 9.5px 3.7px 7px;
    }

    .download-group-btn .clickable_icon {
        position: relative;
        top: 3.3px;
        font-size: 16px;
    }

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    /*border-color: #ccc;*/
}

.default-btn {
    /*border: none;*/
    border: 1px solid;
    border-radius: 0px;
    font-size: 15px;
    text-transform: capitalize;
}

    .default-btn.default-btn-sm {
        padding: 0px 5px;
        margin: 0px;
    }

.btn-group {
    color: #fff;
    border-color: #ccc;
    border-style: solid;
    border-width: 1px 0px 1px 1px;
}

    .btn-group .default-btn {
        margin-bottom: 0px;
        border-style: solid;
        border-width: 0px 1px 0px 0px;
        border-radius: 0px;
    }

.downloadButton .material-icons {
}

.downloadButton .default-btn {
    padding: 8px 0px 8px 10px;
    max-width: 10px;
    text-align: left;
    margin-bottom: 8px;
    text-transform: capitalize;
    color: #333;
}

    .downloadButton .default-btn .material-icons {
        position: relative;
        top: 4px;
        font-size: 17px;
    }

/* Change download buttons size for mobile */
@media only screen and (max-width: 350px) {
    .downloadButton .default-btn {
        min-width: 55px !important;
        width: 55px !important;
        font-size: 80% !important;
        text-align: center;
        padding: 6px !important;
    }

        .downloadButton .default-btn .material-icons {
            display: none;
        }
}
/* end of Change download buttons size for mobile */


.glyphicon.glyphicon-trash::before {
    font-family: "Material Icons";
    content: "\e872";
    font-size: 1.5em;
    vertical-align: sub;
}

.glyphicon.glyphicon-stop::after {
    font-family: "Material Icons";
    content: "\e047";
    font-size: 1.5em;
    vertical-align: sub;
}

#chart, #chart-legend-options {
    flex: 0 0 100%;
    max-width: 100%;
}

/* call for action */
.call-for-action-text {
    font-size: 3em;
    color: #99999933;
}

    .call-for-action-text > i {
        font-size: 3em;
    }
/* end of call for action */

/* feedback */
.feedback-btn {
    position: fixed;
    top: 40%;
    right: 0px;
    background: 50% 0px no-repeat #E7E7E7;
    z-index: 1;
    cursor: pointer;
}

    .feedback-btn:hover {
        background: 50% 0px no-repeat #909090;
    }

    .feedback-btn > img {
        border: 0;
        padding: 0;
        margin: 11px 12px 10px 6px;
    }

#feedback-modal .material-icons {
    font-size: 6em;
}

#feedback-modal .modal-content {
    padding: 15px;
}

body.modal-open-noscroll {
    margin-right: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
}

.modal-open-noscroll .navbar.fixed-top, .modal-opennoscroll .navbar.fixed-bottom {
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.sendButton {
    background-color: #327bb9 !important;
    color: white !important;
    text-transform: capitalize;
    font-size: 15px;
}

    .sendButton:hover {
        background-color: #58a6e8 !important
    }

.feedbackLoader {
    display: none;
    position: absolute;
    top: 10px;
    left: 56px;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #333;
    width: 15px;
    height: 15px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feedbackSecondCard{
    display: none;
}

/* end of feedback */
.form-control, .custom-file-control, .is-focused .form-control, .is-focused .custom-file-control {
    background-image: linear-gradient(to top, black 2px, rgba(0, 150, 136, 0) 2px), linear-gradient(to top, rgba(0, 0, 0, 0.26) 1px, transparent 1px);
}

.is-focused [class^='bmd-label'], .is-focused [class*=' bmd-label'], .is-focused [class^='bmd-label'], .is-focused [class*=' bmd-label'] {
    color: black;
}

.custom-select:focus {
    border-color: #333;
    outline: 0;
    box-shadow: none;
}

/* tables */
table .numeric-td {
    text-align: right;
    vertical-align: middle;
    overflow-wrap: normal;
}

.forecasts-table {
    table-layout: fixed;
    width: 100%;
}

.ftable-row-name {
    width: 40%;
}

.ftable-row-value {
    width: 10%;
}
/* end of tables */

/* browse by country or indicator text */
.browser-more {
    margin-bottom: -0.5em;
    color: #d1d1d1;
}

    .browser-more strong {
        color: white;
    }

    .browser-more a:hover {
        text-decoration: none;
    }
/* end of browse by country or indicator text */

/* list of filters in the export pages */
.filters-list {
    margin: -20px;
    padding: 0px;
}
/* end of list of filters in the export pages */

/* mobile Export Item */

/*********************ExportCard download section*********************/
.inputSelection div, .inputSelection label {
    padding: 0;
    font-size: 1em !important;
}
/* Hide the browser's default radio button */
input[type="radio"] {
    opacity: 0;
    cursor: auto;
    font-size: 1em !important;
    display: none;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: -2px;
    height: 25px;
    width: 25px;
    background-color: white;
    border: solid .5px #eee;
    box-shadow: .8px .8px 6px grey;
    border-radius: 50%;
    cursor: pointer;
}

/* On mouse-over, add a grey background color */
:hover ~ .checkmark {background-color: #ccc;}

/* When the radio button is checked*/
.inputSelection input[type="radio"]:checked ~ .checkmark {background-color: #333;}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.inputSelection input[type="radio"]:checked ~ .checkmark:after {display: block;}

/* Style the indicator (dot/circle) */
.inputSelection .checkmark:after {
    top: 8px;
    left: 7.85px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.formatLabel {margin-left: 40px !important;}

.dateInputSelection {
    text-align: center;
    border-radius: 3px;
    border: 1px solid #333;
}

@media only screen and (max-width: 300px) { /*mobile view*/
    .dateInputSelection {
        width: 100%;
    }
}

.download-dataSeries {
    /*font-size: 12px;*/
    color: white !important;
    background-color: #333;
    border: solid 1px #333;
    margin-bottom: 0.3125rem !important;
}

.download-dataSeries i {
    font-size: 12px;
    color: white;
}

.download-dataSeries:hover { color: #333 !important;}
.download-dataSeries:hover i{color: #333 !important;}

.chart-dataSeries {
    font-size: 12px;
    color: #333;
    background-color: white;
    border: solid 1px #333;
}

/*****************************/

/* remove indicator from compare icon */
.remove-indicator {
    display: inline-block;
    position: absolute;
    right: 5px;
    font-size: 2em !important;
    top: 9px;
    cursor: pointer;
    color: #858585;
    margin-right: 10px;
}
/* end of remove indicator from compare icon */

/*Fix for Compare chart font-size*/
.hawk-controltable, .dkLabels-label-btn {
    font-size: 15px !important;
}

/*Compare date input*/
.iec-space {
    padding: 9px 8px 9px 8px !important;
}

.hawk-date-picker input {
    border: 1px solid rgba(0,0,0,.1) !important;
    text-align: center !important;
    letter-spacing: .1em !important;
    margin: 0 0 5px 0;
    padding: 2px;
}

.hawk-date-picker button {
    width: 100%;
    height: 1.5em !important;
    margin-top: 0 !important;
    border-radius: 6px;
    line-height: 0;
    background-color: #EDECEC !important;
    border: 1px solid rgba(0,0,0,.1) !important;
    cursor: pointer;
}

.hawk-date-picker button:hover {
    background-color: #DFDFDF !important;
}

/*End of Compare date input*/

/* inner collapsed card */
.inner-collapse-card {
    background-color: #f8f8f8;
}
/* end of inner collapsed card */

/*Hide table header when collapsed*/
.collapsed .collapseHide {
    visibility: hidden !important;
}
/* end of Hide table header when collapsed */

/* card header */
.card-header.category-card {
    background-color: #f5f5f5;
}

.card-header {
    border-bottom: none;
}

.card .card-header {
    padding: 12px 18px;
}
/* end of card header */

a.default-link {
    text-decoration: underline;
}

/* ------ TABLES STYLE ------ */

.positiveVal {
    color: limegreen !important;
    font-weight: 500;
}

.negativeVal {
    color: crimson !important;
    font-weight: 500;
}

.card-body.p-3 {
    font-size: 1em;
}

.title-text {
    font-size: 1em;
}

.row.py-2 {
    padding: 12px 0 1px 0 !important;
}

    .row.py-2:hover {
        background-color: #eee;
    }

.card {
    border-radius: 0;
    border: 1px solid #ddd;
    box-shadow: none;
}

.card-body.p-3 row.py-2:nth-child(odd) {
    background-color: red;
}

.selectP {
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 0.9em;
}

    .selectP:hover {
        background-color: #eee;
        cursor: pointer;
    }

.t_header {
    position: sticky;
    top: 0;
}

.paintBackground {
    background-color: #fafafa;
}

/*Navbar style*/
.navbarTab {
    overflow: hidden;
}

.navbarParent {
    margin-bottom: -1px;
    padding-left: 0;
}

.navbarTab a {
    border: 0;
    outline: none;
    cursor: pointer;
    margin-bottom: 200px;
    padding: 4px 10px 4px 10px;
    font-size: 0.9rem;
    text-decoration: none;
}

    .navbarTab a:hover {
        background-color: #e1e1e1;
    }

    .navbarTab a.active {
        font-size: 110%;
        font-weight: bold;
        background-color: #d1d1d1;
        border: none;
    }

/******** TAB STYLE ********/
/* Style the tab */
.pagetabs {
    position: absolute;
    top: 40px;
    right: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #cfcfcf;
    height: 43.5px;
}

.tabs {
    border-bottom: none;
}

.pagetabs .nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

pagetabs .nav ul {
    margin-top: 0;
    margin-bottom: 10px;
}

.pagetabs .nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}

.pagetabs .nav-tabs > .tablinks.active > a, .pagetabs .nav-tabs > .tablinks.active > a:focus, .pagetabs .nav-tabs > .tablinks.active > a:hover {
    border-bottom: solid 1px #fff;
    border-right: solid 1px #ddd;
    border-left: solid 1px #ddd;
}

.tablinks > a:hover {
    background-color: #eee;
    text-decoration: none;
}

.pagetabs .nav-tabs > li > a {
    border: none;
    margin-right: 0;
}

.nav-tabs > .tablinks.active > a, .nav-tabs > .tablinks.active > a:focus, .nav-tabs > .tablinks.active > a:hover {
    color: #333;
    cursor: default;
    background-color: #fff;
    border: none;
    border-bottom: 2px solid #333;
}

.pagetabs .nav > li > a {
    padding: 10px 10px;
    position: relative;
    display: block;
    padding: 10px 15px;
}

/*Fix for Forecast section*/
@media only screen and (max-width: 767px) { /*mobile view*/
    .forecastSection .pagetabs {
        top: 129px;
    }

    .exportForecast {
        padding-top: 45px;
    }
}

/* Tabs scroll */
.wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    padding: -10px;
    height: 46px;
    top: -1px;
    left: -11px;
}

.list {
    position: absolute;
    left: 0px;
    top: 0px;
    min-width: 3000px;
    margin-left: 12px;
    margin-top: 1px;
}

    .list li {
        display: table-cell;
        position: relative;
        text-align: center;
        cursor: grab;
        cursor: -webkit-grab;
        color: #efefef;
        vertical-align: middle;
    }

.scroller {
    text-align: center;
    cursor: pointer;
    display: none;
    padding: 7px;
    padding-top: 11px;
    white-space: no-wrap;
    vertical-align: middle;
    background-color: transparent;
}

.scroller-right {
    float: right;
}

.scroller-left {
    float: left;
}
/******************************/

/* Style the tab content */
.tabcontent {
    display: none;
}

/*-------*/

h3 {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

.pagemenu {
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    z-index: 1;
    height: 40px;
    width: 100%;
    background-color: #f5f5f5;
    border-bottom: 1px solid #cfcfcf;
}

@media only screen and (max-width: 991px) { /*mobile view*/
    .pagemenu {
        top: 57px;
    }
}

.title-indicator {
    font-size: 1.25em;
    color: #333;
    font-weight: bold;
    white-space: nowrap;
    margin-top: .3em !important;
    margin: 0px;
    padding: 0 0 0 15px;
    width: 100%;
}

.search-bar {
    width: 120%;
    height: 30px;
    position: relative;
    right: 240px;
    top: 40px;
}

#navbarSupportedContent {
    padding-top: 17px;
}

#search-anchor {
    display: none;
    position: absolute;
    left: 63px;
}

.navbarIcons {
    position: relative;
    bottom: 27px;
}

@media only screen and (max-width: 991px) {
    .navbarIcons {
        bottom: 55px;
    }

    .navbar-brand {
        padding: 11px;
        top: -12px;
    }

    .search-bar {
        width: 100%;
        right: 90px !important;
    }

    .navbar-toggler {
        position: relative;
        width: 38px;
        height: 31px;
        font-size: 15px;
        padding: 1px;
        top: 21px;
        left: 135px;
    }

    #navbarSupportedContent {
        position: absolute;
        padding-top: 17px;
        right: 70px;
        min-width: 155px;
        visibility: hidden;
    }
}

@media only screen and (max-width: 767px) {
    .navbarIcons {
        width: 11em;
        bottom: 43px;
    }

    .search-bar {
        min-width: 260px;
        left: -180px;
        top: 57px !important;
    }

    .navbar-toggler {
        top: 9px;
    }

    #search-anchor {
        display: block !important;
    }

    #main-search {
        width: 10%;
        border: 0 !important;
        background: transparent !important;
        right: -20px;
        color: transparent;
        z-index: 10;
        opacity: 0;
    }

    .navbar-brand img{
        width: 80% !important;
    }

    .navbarIcons .autocomplete-items {
        right: -39% !important;
        width: calc(40% + 50vw) !important;
    }
    #navbarSupportedContent {
        padding-top: 8px;
        right: 50px;
    }

}

    .pageTitle {
        margin-top: -15px;
        padding-top: 10px;
    }

    .mobile-padding-mag-glass {
        padding-left: 0;
    }

@media only screen and (max-width: 375px) {
    .navbar-brand {
        margin-right: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 323px) {
    .navbarIcons {
        width: 11em;
        bottom: 96px;
        left: 37vw
    }

    .navbar-brand {
        top: 0;
    }
}

@media only screen and (max-width: 310px) {
    .navbarIcons {
        left: 75px;
    }
}

    @media only screen and (max-width: 991px) { /*mobile view*/
        .tabcontent {
            display: none;
        }

        .tab button {
            border: 0;
            outline: none;
            cursor: pointer;
            padding: 10px 1% 6px 1%;
            background-color: #fff;
        }

        .navbarTab button {
            border: 0;
            outline: none;
            cursor: pointer;
            padding: 10px 1% 6px 1%;
            background-color: #f5f5f5;
            margin-bottom: 10px;
        }


        .mobile-padding-mag-glass {
            padding-left: calc(100% - 200px);
        }
    }

    /*Buttons*/
    .exportForecastButton {
        color: #333;
        background-color: #fff;
        font-size: 15px;
        text-transform: capitalize;
        border: 1px solid #ccc;
        padding: 5px 9.5px 3.7px 7px;
    }

        .exportForecastButton .clickable_icon {
            position: relative;
            top: 3.3px;
            font-size: 16px;
        }

    .changePassword {
        text-decoration: underline;
        color: #327BB9;
    }

        .changePassword:hover {
            color: #58a6e8 !important
        }

    .planButton {
        background: #327BB9 !important;
        color: white !important;
        text-transform: capitalize;
        min-width: 150px;
    }

        .planButton:hover {
            background: #58a6e8 !important
        }

    .editAccount {
        position: absolute;
        margin: 15px 15px 0 0;
    }

        .editAccount a {
            display: block;
            background-color: #333;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            padding-top: 4px;
        }

            .editAccount a:before {
                position: absolute;
                content: '';
                top: -1px;
                right: -1px;
                left: -1px;
                bottom: -1px;
                z-index: 40;
            }

            .editAccount a i {
                color: white;
                font-size: 23px;
            }

        .editAccount:hover a {
            background-color: #f5f5f5;
            border: solid 1px #ccc;
            cursor: pointer;
        }

            .editAccount:hover a i {
                color: #333;
            }


    .helpButton {
        background-color: #f5f5f5 !important;
        color: #333 !important;
    }

        .helpButton:hover {
            background: 50% 0px no-repeat #909090 !important;
        }


    @media only screen and (max-width: 575px) {
        .accountCard {
            margin-top: 30px;
        }

        .editAccount {
            margin: 7px 5px 0 0;
        }

            .editAccount a {
                width: 30px;
                height: 30px;
                padding-top: 0px;
                background-color: transparent !important;
            }

                .editAccount a i {
                    color: #333;
                    font-size: 24px !important;
                }
    }

.downloadAllButton {
    background-color: white;
    color: #333 !important;
    border: 1px solid #ccc;
    padding: 5px;
    margin-top: 5px;
}

    .downloadAllButton:hover {
        background-color: #f5f5f5;
    }

    .downloadAllButton i {
        font-size: 17px;
        position: relative;
        top: 5.3px;
        color: #333;
    }
@media only screen and (max-width: 400px) {
    .downloadAllButton {
        width: 40px
    }
        .downloadAllButton span {
            display: none;
        }
}
