
.tableCelBody{
    box-sizing: border-box;
    min-height: var(--x-table-cell-height, 48px);
    text-align:left;
    padding: 6px 6px 6px 18px;
    color: var(--secondary-text-color);
    font-family: var(--paper-font-body1_-_font-family);
    -webkit-font-smoothing: var(--paper-font-body1_-_-webkit-font-smoothing);
    font-size: var(--paper-font-body1_-_font-size);
    font-weight: var(--paper-font-body1_-_font-weight);
    line-height: var(--paper-font-body1_-_line-height);
}

.loader div{
   /* display: block;
    margin-left: -3px; */
    position:absolute;
    /* margin-top should be - half element height */
  /*  margin-top: 28px; */
    border: 3px solid var(--primary-color);
    border-color: var(--primary-color) transparent transparent transparent;
    border-radius: 70%;
    width: 28px;
    height: 28px;
    -webkit-animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;  /* Safari */
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}


.loader {
    display: none;
    align-items: center;
    justify-content: center;
    position:relative;
    margin: auto;
    width: 28px;
    height: 28px;
}

/*Loader class has to have 5 div children */
.loader div:nth-child(1) {
    animation-delay: -0.45s;
    -webkit-animation-delay: -0.45s;
}
.loader div:nth-child(2) {
    animation-delay: -0.375s;
    -webkit-animation-delay: -0.375s;
}
.loader div:nth-child(3) {
    animation-delay: -0.3s;
    -webkit-animation-delay: -0.3s;
}
.loader div:nth-child(4) {
    animation-delay: -0.225s;
    -webkit-animation-delay: -0.225s;
}
.loader div:nth-child(5) {
    animation-delay: -0.15s;
    -webkit-animation-delay: -0.15s;
}


/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Shows loader */
.loaderShow{
    display: flex !important;
}

#loaderArticleList{
    min-height: 200px;
}

#loaderArticleList2{
    min-height: 100px;
}

#treemapLoader{
   /* margin-top: 40px; */
    min-height: 200px;
}

#loaderProfileList{
    min-height: 200px;
}

#loaderTopCollectionsList{
    min-height: 200px;
}

#loaderTopCollectionInfoBox{
    min-height: 200px;
}

#loaderTopCollectionChartBox{
    min-height: 200px;
}

#articleListBody{
    display: none;
}

#profileListBody{
    display: none;
}

#relatedProfileModalLoader{
    display: none;
}


/* Nothing Found */

.noSearchesClass{
    display: table-row;
    height: 100px;
    border-bottom: 1px solid var(--color-line);
}

.noSearchesTextClass{
    font-style: italic;
    text-align:  center;
    color : var(--secondary-text-color);
    font-family : var(--paper-font-body1_-_font-family);
    size : var(--paper-font-body1_-_font-size);
    font-weight : var(--paper-font-body1_-_font-weight);
}



/*This makes you see which list element you are hovering*/
tr.tRow:hover{
    background: #f7f7f7;
}

#macroFilterSearchTable tr.tRow:hover{
    background-color: rgba(0, 0, 0, 0.1);
}

tr.tRow:hover .openInNew::before{
    border: 3.75px solid #f7f7f7;
}


.cellTitle{
    padding-top:5px;
    font-size: 16px;
    font-weight: 500;
    color:var(--aumentoo-primary-text-color);
}

.numberCell{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    min-width: 60px;
    font-size: 17px;
    color: var(--primary-text-color);
}

.trendCell{
    display: flex;
    align-items: flex-end;
    justify-content: right;
    padding: 2px 5px 0px 5px;
    flex-direction: column;
}


.microtrendCellImgText{
    padding-top: 5px;
}


.floatClass{
    float: left;
    padding-right: 10px;
    padding-top: 10px;
}

.cellSnippit{
    padding-top: 5px;
}


/* --- Custom Select --- */

/*the container must be positioned relative:*/
.custom-CategorySelect {
    position: relative;
    padding-bottom: 1px;
}

.custom-CategorySelect select {
    display: none; /*hide original SELECT element:*/
}


/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 100%;
    margin-top: -12px;
    right: 5px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: rgba(0,0,0, 0.2) transparent transparent transparent;
}


/*style the items (options), including the selected item:*/
.select-selected {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    padding-bottom: 1px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    overflow:hidden;
    position: relative;
}

.select-items div{
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    padding: 3px 8px;
    font-size: 15px;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background: #FFF;
    box-shadow: var(--shadow-elevation-4dp_-_box-shadow);
    border-bottom: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none !important;
}

.same-as-selected {
    background-color: var(--primary-color);
    color: white;
}


.select-items div:hover{
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-text-color);
}

#cateFilterTitleBox{
    color: var(--aumentoo-secondary-text-color);
    font-size: 14px;
}

.select-arrow-active #cateFilterTitleBox{
    color:var(--primary-color);
}

#cateFilterCurrEleBox{
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Changes Color of point in highcharts treemap on hover */
#charContainer .highcharts-treemap-series .highcharts-point:hover {
    fill-opacity: 0.75;
}

/*Changes opacity of selected element in treemap */
#charContainer .highcharts-treemap-series .highcharts-point-select{
    fill-opacity: 0.75;
}

/*
#chartBoxContent .highcharts-tooltip > span {
    background: rgb(255 255 255 / 85%);
    border: 1px solid silver;
    border-radius: 3px;
    box-shadow: 1px 1px 2px #888;
    padding: 8px;
}*/



/* Changes Color of point in highcharts macrotrend Graph on hover */
#trendChartContent .highcharts-point:hover {
    fill-opacity: 0.75;
}

#chartBoxContent .highcharts-point:hover {
    fill-opacity: 0.75;
}

a {
    color: var(--aumentoo-primary-color);
    line-break: anywhere;
}

.importButton {
    cursor: pointer;
    margin-bottom: 10px;
    min-width: 100px;
    background-color: var(--aumentoo-primary-color);
    color: white;
    border: none;
    padding: 0.7em 0.56em;
   /* height: 30px;
    width: 122px;*/
    border-radius: 3px;
    user-select: none;
    -webkit-user-select: none;
}

.importButton:disabled {
    background-color: grey !important;
    pointer-events: none;
    cursor: default;
}

.importButton:hover{
    background-color: var(--aumentoo-primary-color-lighter-1);
}

.loadingButton {
    /*margin-left: 50px;
    position: absolute;
    margin-top: -8px;*/
    margin: auto;
    border: 3px solid white;
    border-color: white transparent transparent transparent;
    border-radius: 70%;
    width: 18px;
    height: 18px;
    -webkit-animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loadingSymbol{
    /*margin-left: 50px;
    position: absolute;
    margin-top: -8px;*/
    margin: auto;
    border: 3px solid var(--aumentoo-primary-color);
    border-color: var(--aumentoo-primary-color) transparent transparent transparent;
    border-radius: 70%;
    width: 18px;
    height: 18px;
    -webkit-animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

#createButton{
    width: fit-content;
    height: fit-content;
}

#articlesSearch {
    border: 0px;
    outline:none;
    padding: 1px 2px;
    margin-left: -2px;
    color: var(--primary-text-color);
}

.imgProfileListSmall {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background-size: cover;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}

.imgProfileList {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    background-size: cover;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}

.imgProfileList img, .imgProfileListSmall img {
    width: 100%;
}

.selectTrend {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    min-height: 300px;

    font-style: italic;
    color: var(--secondary-text-color);
    font-family: var(--paper-font-body1_-_font-family);
    size: var(--paper-font-body1_-_font-size);
    font-weight: var(--paper-font-body1_-_font-weight);
}

.noData{
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    min-height: 100px;

    font-style: italic;
    color: var(--secondary-text-color);
    font-family: var(--paper-font-body1_-_font-family);
    size: var(--paper-font-body1_-_font-size);
    font-weight: var(--paper-font-body1_-_font-weight);
}

#articlesSearchTitle{
    display: none;
    font-size: 14px;
    color: var(--aumentoo-primary-color);
}
.showClass{
    display: flex !important;
}

.collectionInfoCol{
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    row-gap: 5px;
}
.infoLabel{
    font-size: var(--aumentoo-subhead-font-size);
    color: var(--secondary-text-color);
}


.moreInfoRow{
    padding-top: 10px;
}

.moreInfoTitle{
    font-weight: bold;
}

#moreInfoContent{
    font-size: var(--paper-font-body1_-_font-size);
}


.loadMoreRow{
    text-align: center;
    color: var(--secondary-text-color);
    font-family: var(--paper-font-body1_-_font-family);
    size: var(--paper-font-body1_-_font-size);
    font-weight: var(--paper-font-body1_-_font-weight);
}

.loadBackgroundClass{
    opacity: 0.7;
    pointer-events: none;
}

