/** CSS for navigation elements. All selectors begin with "navigation-". */
/* version : 15 April 2016 */

/**
	*** NOTES ***
  <ol>
    <li> Navigation tabs which require a scroll are given a height of 50vh. Hidden tabs are not given this height. </li>
  </ol> 
 
*/
.navigation-container {
    height: 100%;
    margin: 2px;
    text-align: center;
    position: relative;
}

/* .navigation-build-button {
    display: inline-block;
    border: 1px dashed #fff;
    padding: 10px;
    font-size: 28px;
    background-color: #65378f;
    font-weight: bold;
    color: #fff;
    box-shadow: 0px 4px 4px #ccc;
    position: relative;
    top: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 250px;
    box-sizing: border-box;
}

.navigation-build-button:hover {
    transition: all 0.2s ease;
    box-shadow: 0 4px 4px #aaa;
    border: 1px solid #aaa;
}

.navigation-build-button:active {
    top: 1px;
}
*/
.navigation-build-button {
    color: #fff;
    font-weight: bold;
    display: inline-block;
    padding: 10px;
    font-family: arial;
    cursor: pointer;
    position: relative;
    font-size: 30px;
    border: 2px solid #65378f;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    box-sizing: border-box;
    width: 390px;
    transition-property: border-color, background-color, box-shadow, width, margin;
    transition-duration: 0.2s, 0.2s, 0.2s, 0.6s, 0.2s;
    transition-timing-function: ease;
    box-shadow: 4px 4px 6px 0px #666;
    border-radius: 10px;
    height: 61px;
    padding: 13px;
    margin-top: 75px;
    margin-bottom: 30px;
    background-color: #65378F;
}

.navigation-build-button:hover {
    border-color: #999;
    box-shadow: 4px 4px 6px 0px #666;
    background-color: #fff;
    color: #65378F;
    border-width: 1px;
}

.navigation-build-button.expand:hover {
    border-color: rgba(101, 55, 143, 0.5);
    box-shadow: 4px 4px 6px 0px #666;
    background-color: #4D296B !important;
    color: #fff;
}

.gaain-anim .chart {
    border-bottom: 1px solid #000;
    position: absolute;
    width: 140px;
    top: -66px;
    margin: auto;
    left: 0;
    right: 0;
    font-size: 0;
    text-align: center;
    z-index: -1;
    opacity: 0.3;
    height: 60px;
}

.gaain-anim  .bar {
    width: 25px;
    position: absolute;
    display: inline-block;
    vertical-align: bottom;
    z-index: -1;
    -webkit-animation-duration: 6s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    animation-duration: 6s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    bottom: 0;
}

.gaain-anim  .bar.a {
    height: 50%;
    background-color: steelblue;
    -webkit-animation-name: grow-height-1;
    animation-name: grow-height-1;
    left: 20px;
}

.gaain-anim  .bar.b {
    height: 66%;
    background-color: orange;
    -webkit-animation-name: grow-height-2;
    animation-name: grow-height-2;
    left: 45px;
}

.gaain-anim  .bar.c {
    height: 100%;
    background-color: tomato;
    -webkit-animation-name: grow-height-3;
    animation-name: grow-height-3;
    left: 70px;
}

.gaain-anim  .bar.d {
    height: 33%;
    background-color: teal;
    -webkit-animation-name: grow-height-4;
    animation-name: grow-height-4;
    left: 95px;
}

.navigation-build-button.expand {
    width: 100%;
    border: 1px solid;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    background-color: #65378f;
    color: #fff;
    padding: 6px;
    font-size: 26px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-width: 0;
}

.navigation-build-button.expand .chart {
    display: none;
}

/* .load-anim {
    animation-name: load-anim;
    animation-direction: normal;
    animation-iteration-count: 1;
    animation-delay: 200ms;
    animation-timing-function: ease;
    animation-duration: 500ms;
}
 */
.load-anim.repeat {
    /*     animation-delay: 5s; */
    /*     animation-iteration-count: infinite; */
    
}

.navigation-build-button.expand span {
    display: none;
}

.navigation-build-button .navigation-build-button-alternate {
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow: hidden;
}

.navigation-build-button-alternate div {
    font-size: 14px;
}

.navigation-build-button .navigation-build-button-alternate div {
    display: none;
}

.navigation-build-button.expand .navigation-build-button-alternate div {
    display: block;
}

.navigation-build-button.expand.open .navigation-build-button-alternate.one {
    max-height: 100px;
    opacity: 1;
    visibility: visible;
}

.navigation-build-button.expand.open .navigation-build-button-alternate.two {
    max-height: 0px;
    opacity: 0;
    visibility: hidden;
}

.navigation-build-button.expand .navigation-build-button-alternate.one {
    max-height: 0px;
    opacity: 0;
    visibility: hidden;
}

.navigation-build-button.expand .navigation-build-button-alternate.two {
    max-height: 100px;
    opacity: 1;
    visibility: visible;
}

/********** Navigation tabs **********************/
.navigation-tabs {
    position: relative;
    height: 100%;
    transition: all 0.8s ease;
    max-height: calc(50vh + 140px);
    overflow: hidden;
}

.navigation-tabs.hide {
    z-index: -1;
    /*     height: 0; */
    max-height: 0;
}

.navigation-tabs-header-container {
    width: 100%;
    font-size: 0;
    position: relative;
}

.navigation-tabs-header {
    display: inline-block;
    width: 33%;
    font-size: 22px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
    font-family: sans-serif;
    box-sizing: border-box;
    font-weight: bold;
    color: #666;
    background: linear-gradient(#9B9B9B, #fff);
    border: 1px solid #F2F2F8;
    border-bottom: 1px solid #65378F;
    cursor: pointer;
    height: 30px;
}

.navigation-tabs-header.active {
    border: 1px solid #65378F;
    background: transparent;
    border-bottom-color: transparent;
    cursor: default;
}

.navigation-tabs-header.browse {
    
}

.navigation-tabs-header.search {
    
}

.navigation-tabs-header.list {
    width: 34%;
}

.navigation-tabs-tab-container {
    height: calc(100% - 30px);
    overflow-y: auto;
    text-align: left;
    position: relative;
}

.navigation-tabs-tab {
    border: 1px solid #65387f;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    /*     height: calc(100% - 140px); */
    overflow-y: auto;
    padding: 10px 3%;
    display: none;
    top: -1px;
}

.navigation-tabs-tab.active {
    visibility: visible;
    opacity: 1;
    display: block;
}

.navigation-start-over,.navigation-reset-view {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #65378F;
    border-radius: 15px;
    padding: 2px 10px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: capitalize;
    color: #65378F;
    box-sizing: border-box;
    width: 110px;
    white-space: nowrap;
    margin: 5px;
}

.navigation-start-over:hover,.navigation-reset-view:hover {
    color: #fff;
    background-color: #65378F;
}

.navigation-category:nth-child(even)>.navigation-category-name,.navigation-field:nth-child(even)>.navigation-field-name,.navigation-category:nth-child(even)>.navigation-category-info,.navigation-field:nth-child(even)>.navigation-field-info
    {
    /*     background-color: #ccc; */
    
}

.navigation-field-name:before {
    content: '';
    display: inline-block;
    border: 2px solid #777;
    position: absolute;
    top: 11px;
    left: 17px;
}

.navigation-tabs-tab.popup {
    position: fixed;
    width: 100%;
    top: 70px;
    background-color: rgba(255, 255, 255, 0.99);
    height: 100vh;
    left: -100%;
    border: none;
    z-index: 1;
    padding: 0;
    display: block;
    transition: left 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.navigation-tabs-tab.popup.active {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.navigation-tabs-tab.popup .popup-close {
    background-color: #fff;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 5px;
    right: 12px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #bbb;
}

.navigation-tabs-tab.popup .popup-close:before {
    content: '';
    height: 20px;
    border: 2px solid #000;
    position: absolute;
    top: 3px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 45%;
}

.navigation-tabs-tab.popup .popup-close:after {
    content: '';
    height: 20px;
    border: 2px solid #000;
    position: absolute;
    top: 3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 45%;
}

.navigation-tabs-tab.popup .popup-close:hover:before,.navigation-tabs-tab.popup .popup-close:hover:after
    {
    box-shadow: 0 0 10px 2px #fff;
}

/********** Navigation Browse ********************/
.navigation-tabs-tab.browse {
    text-align: center;
    /*     max-height: 45vh; */
}

.navigation-tabs-browse-header {
    text-align: left;
    position: relative;
}

.navigation-tabs-browse-header-subjects {
    position: relative;
    background-image: url('../images/people_dark.png');
    height: 15px;
    width: 15px;
    right: 85px;
    top: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    float: right;
}

.navigation-tabs-browse-header-subjects.switch {
    right: 22px;
    display: none;
}

.navigation-switch-view-button {
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 0;
    border: 2px solid #999;
    border-radius: 20px;
    position: relative;
    width: 115px;
    height: 30px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    float: left;
    margin-bottom: 10px;
    visibility: hidden;
}

.navigation-switch-view-button .switch-circle {
    display: inline-block;
    position: absolute;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ccc;
    box-sizing: border-box;
    right: -2px;
    top: -1px;
    transition: 0.2s;
}

.navigation-switch-view-button .type1,.navigation-switch-view-button .type2 {
    position: relative;
    font-size: 11px;
    display: inline-block;
    width: 100%;
    left: 0;
    height: 100%;
    line-height: 27px;
    top: 0;
    color: #fff;
    font-weight: bold;
    padding: 0 5px;
    transition: 0.2s;
    box-sizing: border-box;
}

.navigation-switch-view-button.switch .switch-circle {
    right: 86px;
}

.navigation-switch-view-button .type1 {
    background-color: #65378F;
    padding-left: 10px;
    text-align: left;
}

.navigation-switch-view-button .type2 {
    background-color: #888;
    text-align: right;
    padding-right: 7px;
}

.navigation-switch-view-button.switch .type1 {
    left: -100%;
}

.navigation-switch-view-button.switch .type2 {
    left: -100%;
}

.navigation-font-switch-button {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    right: 5px;
    text-align: left;
    top: 2px;
}

.navigation-search-box .navigation-font-switch-button {
    margin: 0;
}

.font-triangle,.font-triangle:before,.font-triangle:after {
    width: 1em;
    height: 1em;
    position: relative;
    background: #cecece;
    border-top-right-radius: 30%;
}

.font-button:hover .font-triangle,.font-button:hover .font-triangle:before,.font-button:hover .font-triangle:after
    {
    background-color: #65378F;
}

.font-triangle:before,.font-triangle:after {
    content: '';
    position: absolute;
}

.font-triangle {
    -webkit-transform: rotate(-60deg) skewX(-30deg) scale(1, .866);
    -moz-transform: rotate(-60deg) skewX(-30deg) scale(1, .866);
    -ms-transform: rotate(-60deg) skewX(-30deg) scale(1, .866);
    transform: rotate(-60deg) skewX(-30deg) scale(1, .866);
}

.font-triangle:before {
    -webkit-transform: rotate(-135deg) skewX(-45deg) scale(1.414, .707) translate(0, -50%);
    -moz-transform: rotate(-135deg) skewX(-45deg) scale(1.414, .707) translate(0, -50%);
    -ms-transform: rotate(-135deg) skewX(-45deg) scale(1.414, .707) translate(0, -50%);
    transform: rotate(-135deg) skewX(-45deg) scale(1.414, .707) translate(0, -50%);
}

.font-triangle:after {
    -webkit-transform: rotate(135deg) skewY(-45deg) scale(.707, 1.414) translate(50%);
    -moz-transform: rotate(135deg) skewY(-45deg) scale(.707, 1.414) translate(50%);
    -ms-transform: rotate(135deg) skewY(-45deg) scale(.707, 1.414) translate(50%);
    transform: rotate(135deg) skewY(-45deg) scale(.707, 1.414) translate(50%);
}

.font-button {
    display: inline-block;
    margin: 3px;
    font-size: 20px;
    color: #65378F;
    padding: 0.5em;
    cursor: pointer;
    position: relative;
    font-family: monospace;
}

.font-button:hover {
    color: #fff;
}

.font-button:after {
    position: absolute;
    font-size: 15px;
    font-weight: bold;
}

.font-decrease {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.font-increase {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.font-decrease:after {
    content: "A-";
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    left: 11px;
    top: 18px;
}

.font-increase:after {
    content: "A+";
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    left: 11px;
    top: 16px;
}

.font-reset {
    width: 24px;
    height: 24px;
    position: relative;
    display: inline-block;
    background-color: #888;
    vertical-align: middle;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 24px;
    cursor: pointer;
    border-radius: 2px;
    margin: 0 5px;
    display: none;
}

.font-reset:hover {
    background-color: #522d73
}

.navigation-tabs-browse-content {
    width: 100%;
    font-family: sans-serif;
    text-align: left;
    max-height: calc(60vh - 100px);
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.navigation-category,.navigation-field,.navigation-site {
    font-size: 0;
    white-space: nowrap;
    transition-property: top, opacity;
    transition-duration: 200ms;
    transition-timing-function: ease;
    position: relative;
    top: 0;
    opacity: 1;
    /******/
    box-sizing: border-box;
    overflow: hidden;
}

.navigation-field {
    position: absolute;
    width: 100%;
    left: 0;
}

.navigation-category-children>.navigation-category.hidden,.navigation-category-children>.navigation-field.hidden
    {
    top: -20px;
    opacity: 0;
}

.navigation-category-bar,.navigation-site-bar,.navigation-field-bar {
    border-bottom: 1px solid #ccc;
}

.navigation-site.hide>.navigation-site-bar,.navigation-category.show>.navigation-category-bar
    {
    display: none;
}

/* hide navigation site when its category view. */
.navigation-site.hide>.navigation-site-button,.navigation-site.hide>.navigation-site-project,.navigation-site.hide>.navigation-site-info
    {
    display: none;
}

.navigation-site.hide>.navigation-site-children {
    display: block;
    padding: 0;
}

.navigation-site.show>.navigation-site-children {
    display: none;
}

.navigation-site.show.expand>.navigation-site-children {
    display: block;
}

.navigation-site.show .navigation-category-project,.navigation-site.show .navigation-field-project
    {
    display: none;
}

.navigation-site.show .navigation-category-count,.navigation-site.show .navigation-field-count
    {
    width: calc(50% - 20px);
}

.navigation-site.show .navigation-site-count {
    width: calc(100% - 25px);
}

.navigation-category-description,.navigation-field-description {
    display: none;
}

.navigation-category-button,.navigation-site-button {
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: top;
    position: relative;
    box-sizing: border-box;
    left: 8px;
    transition-property: transform, height, padding;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    top: 0.6em;
    border-width: 3px 3px 0 0;
    border-style: solid;
    border-color: #65378F #65378F rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 5px;
}

/* To increase click-able area. */
.navigation-category-button:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 30px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -10px;
    left: -5px;
}

.navigation-category-button.expand:before {
    width: 30px;
    height: 20px;
    top: -5px;
    left: -5px;
}

.navigation-category-button.expand,.navigation-site-button.expand {
    -webkit-tranform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.navigation-category-name,.navigation-site-project {
    display: inline-block;
    box-sizing: border-box;
    /*     width: calc(100% - 15px - 165px); */
    font-size: 14px;
    white-space: normal;
    padding: 5px 5px 5px 20px;
    vertical-align: middle;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    word-break: break-word;
    transition: color 0.2s ease;
    transition-property: transform, height, padding, color;
    transition-duration: 0.8s, 0.8s, 0.8s, 0.2s;
    transition-timing-function: ease;
    font-variant: small-caps;
    text-transform: lowercase;
    cursor: pointer;
    /*************/
    width: 100%;
    padding-right: 180px;
    touch-action: none;
}

.navigation-category-name-text {
    cursor: pointer;
}

.navigation-field-name:hover  span {
    color: blue;
    text-decoration: underline;
}

.navigation-category-name:first-letter,.navigation-site-project:first-letter {
    /*     text-transform: capitalize; */
    
}

.navigation-field-name {
    display: inline-block;
    box-sizing: border-box;
    width: calc(100% - 165px);
    font-size: 14px;
    white-space: normal;
    padding: 5px 20px;
    vertical-align: middle;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    word-break: break-word;
    transition: color 0.2s ease;
    font-variant: small-caps;
    text-transform: lowercase;
    /***********/
    width: 100%;
    padding-right: 165px;
}

.navigation-field-name span {
    padding-left: 14px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 15px);
}

.navigation-field-name:first-letter {
    /*     text-transform: capitalize; */
    
}

.navigation-category-info-button,.navigation-field-info-button {
    display: inline-block;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    text-align: left;
}

.navigation-category-check,.navigation-field-check,.navigation-site-check {
    display: inline-block;
    width: 20px;
    box-sizing: border-box;
    vertical-align: middle;
}

.navigation-category-count,.navigation-field-count,.navigation-site-count {
    display: inline-block;
    box-sizing: border-box;
    /*     width: calc(50% - 20px); */
    font-size: 13px;
    vertical-align: middle;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    /*************/
    width: 60px;
}

.navigation-category-project,.navigation-field-project {
    display: inline-block;
    box-sizing: border-box;
    /*     width: calc(50% - 20px); */
    font-size: 12px;
    vertical-align: middle;
    padding: 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    /**************/
    width: 65px;
}

.navigation-category-info,.navigation-field-info,.navigation-site-info {
    display: inline-block;
    width: 165px;
    box-sizing: border-box;
    white-space: nowrap;
    font-size: 0;
    vertical-align: top;
    transition-property: transform, height, padding, color;
    transition-duration: 0.8s, 0.8s, 0.8s, 0.2s;
    transition-timing-function: ease;
    padding-top: 5px;
    text-align: right;
    /*------------*/
    position: absolute;
    top: 0;
    right: 0;
}

.navigation-category-children,.navigation-site-children {
    padding-left: 15px;
    overflow: hidden;
    position: relative;
}

.navigation-site-children.hide {
    display: none;
}

.navigation-category-children.hide>.navigation-category {
    display: none;
}

.navigation-category-children.hide>.navigation-category.show {
    display: block;
}

.navigation-category.show>.navigation-category-button,.navigation-category.show>.navigation-category-name,.navigation-category.show>.navigation-category-info
    {
    /*     display: none; */
    /*     transition: all 0.8s ease; */
    -webkit-transform: translate(-40%, -50px) scaleX(0);
    -moz-transform: translate(-40%, -50px) scaleX(0);
    -ms-transform: translate(-40%, -50px) scaleX(0);
    transform: translate(-40%, -50px) scaleX(0);
    height: 0;
    padding: 0;
    /*     transform-origin: left; */
}

.navigation-category-children.hide {
    padding-left: 0;
}

.navigation-site-children>.navigation-category>.navigation-category-children.hide {
    padding-left: 15px;
}

.navigation-parent-list-container:last-child .navigation-parent-list-item {
    color: #000;
}

.navigation-parent-list-container {
    padding-left: 20px;
    display: inline;
    margin: 0 5px;
}

.navigation-parent-list-container:before {
    content: '...';
    position: relative;
    left: -25px;
    top: -4px;
    font-size: 17px;
    color: #777;
    font-weight: bold;
}

.navigation-parent-list {
    font-size: 14px;
    position: relative;
    cursor: pointer;
}

.navigation-parent-list-button {
    position: relative;
    height: 15px;
    margin-left: 20px;
    top: 5px;
    cursor: pointer;
    z-index: 1;
}

.navigation-parent-list-button:before {
    content: '...';
    position: absolute;
    top: -16px;
    left: 10px;
    font-size: 25px;
}

.navigation-parent-list-button:after {
    content: '';
    position: absolute;
    background-color: #96CEFF;
    color: #00F;
    height: 15px;
    width: 30px;
    z-index: -1;
    top: -4px;
    left: 5px;
}

.navigation-parent-list-content {
    position: relative;
    background-color: #fff;
    padding: 5px 15px;
    /*     border-radius: 5px; */
    box-shadow: 0 0 2px #A7A7A7;
}

.navigation-parent-list.hide {
    display: none;
}

.navigation-parent-list-item {
    margin: 4px 0;
    color: #aaa;
    position: relative;
    white-space: normal;
    display: inline;
    font-variant: small-caps;
    text-transform: lowercase;
}

.navigation-parent-list-item:hover {
    color: #000;
}

.navigation-parent-list-item:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    left: -18px;
    top: 0.2em;
    border-width: 8px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #888;
    box-sizing: border-box;
}

.navigation-site.highlight,.navigation-category.highlight,.navigation-field.highlight,.navigation-site.selected,.navigation-category.selected,.navigation-field.selected
    {
    background-color: #ECDAFF;
}

.navigation-category.highlight>.navigation-category-children,.navigation-category.selected>.navigation-category-children,.navigation-site.highlight>.navigation-site-children,.navigation-site.selected>.navigation-site-children
    {
    background-color: #f2f2f8;
}

.navigation-category.highlight-node,.navigation-field.highlight-node {
    background-color: #ccc;
}

.navigation-category.highlight-node>.navigation-category-children {
    background-color: #f2f2f8;
}

.navigation-site.highlight-node>.navigation-site-children {
    background-color: #f2f2f8;
}

/****************** Navigation intro *************************/
.navigation-tabs-start-button {
    font-size: 28px;
    display: inline-block;
    box-sizing: border-box;
    border: 4px solid #65378F;
    padding: 0px 25px;
    border-radius: 30px;
    font-weight: bold;
    color: #65378F;
    cursor: pointer;
}

.navigation-tabs-start-button:hover {
    background-color: #65378F;
    color: #fff;
}

.navigation-tabs-tab.intro {
    text-align: center;
}

.navigation-tabs-tab-intro-title {
    font-weight: bold;
    color: #65378F;
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 24px;
}

.navigation-tabs-tab.intro ol {
    text-align: left;
    color: #000;
    font-size: 19px;
    display: inline-block;
}

.navigation-tabs-tab.intro li {
    margin-bottom: 20px;
}

/***************** navigation search *************************/
.navigation-search-header-subjects {
    position: absolute;
    background-image: url('../images/people_dark.png');
    height: 15px;
    width: 15px;
    right: 30px;
    top: 8px;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
}

.navigation-tabs-tab.search {
    text-align: center;
    /*     max-height: 45vh; */
    min-height: 180px;
}

.navigation-tabs-search-content {
    text-align: left;
    margin-top: 30px;
}

.navigation-tabs-search-list {
    margin-top: 10px;
}

.navigation-tabs-search-no-data {
    text-align: left;
    font-weight: bold;
    position: relative;
    top: -40px;
    padding-left: 10px;
}

.navigation-tabs-search-no-data.hide {
    display: none;
}

.navigation-search-box {
    font-size: 0;
    position: relative;
}

.navigation-search-history-list {
    font-size: 15px;
    position: absolute;
    background-color: #fff;
    width: calc(100% - 170px);
    left: 6px;
    padding: 5px 10px;
    box-sizing: border-box;
    top: 22px;
    z-index: 1;
}

.navigation-search-history-list-entry {
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 2px;
    box-sizing: border-box;
    cursor: pointer;
}

.navigation-search-history-list-entry.active,.navigation-search-history-list-entry:hover {
    background-color: #abcdef;
}

.navigation-search-history-clear {
    display: inline-block;
    border: 1px solid #888;
    padding: 2px 15px;
    box-sizing: border-box;
    border-radius: 8px;
    font-weight: bold;
    background-color: #bbb;
    font-size: 13px;
    cursor: pointer;
}

.navigation-search-button {
    display: inline-block;
    border: 1px solid #888;
    padding: 2px 6px;
    box-sizing: border-box;
    border-radius: 8px;
    font-weight: bold;
    background-color: #bbb;
    font-size: 13px;
    cursor: pointer;
    vertical-align: middle;
}

.navigation-search-input-clear {
    display: inline-block;
    position: absolute;
    right: 1px;
    background-color: #EAEAEA;
    width: 30px;
    height: 16px;
    top: 1px;
    cursor: pointer;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.navigation-search-input-clear:hover {
    background-color: #ccc;
}

.navigation-search-input-clear:active {
    background-color: #666;
}

.navigation-search-input-clear:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: #000;
    position: absolute;
    left: 50%;
    top: 2px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navigation-search-input-clear:after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: #000;
    position: absolute;
    left: 50%;
    top: 2px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navigation-search-box input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #888;
    height: 18px;
    padding: 0 40px 0 10px;
    box-sizing: border-box;
}

.navigation-search-box input::-ms-clear {
    display: none;
}

.navigation-search-input-container {
    display: inline-block;
    width: calc(100% - 170px);
    margin-right: 10px;
    position: relative;
    margin-left: 5px;
    vertical-align: middle;
}

.navigation-tabs-search-list-content ol {
    list-style: none;
    counter-reset: section;
}

.navigation-search-entry {
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
    position: relative;
}

.navigation-search-entry:before {
    counter-increment: section;
    content: counter(section);
    position: absolute;
    left: -40px;
    top: 0px;
    font-size: 14px;
    text-align: right;
    display: inline-block;
    min-width: 30px;
}

.navigation-search-entry-row {
    font-size: 0;
    position: relative;
}

.navigation-search-entry-text {
    color: #03C;
    display: inline-block;
    font-size: 14px;
    /*     width: calc(100% - 100px); */
    padding-right: 10px;
    box-sizing: border-box;
    word-wrap: break-word;
    cursor: pointer;
    font-variant: small-caps;
    text-transform: lowercase;
    /**********/
    width: 100%;
    padding-right: 100px;
}

.navigation-search-entry-text:first-letter {
    text-transform: capitalize;
}

.navigation-search-entry-text-name span {
    font-weight: bold;
}

.navigation-search-entry-info {
    display: inline-block;
    width: 100px;
    box-sizing: border-box;
    font-size: 0;
    vertical-align: top;
    /***********/
    position: absolute;
    top: 0;
    right: 0;
}

.navigation-search-entry-info-button {
    display: inline-block;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.navigation-search-entry-check {
    display: inline-block;
    width: 20px;
    box-sizing: border-box;
    vertical-align: middle;
}

.navigation-search-entry-count {
    display: inline-block;
    box-sizing: border-box;
    width: calc(100% - 20px - 15px);
    font-size: 13px;
    vertical-align: middle;
    padding: 0 10px;
    text-align: right;
    cursor: pointer;
}

.navigation-search-entry-project {
    text-transform: uppercase;
    font-size: 12px;
    display: inline-block;
}

.navigation-search-entry-children {
    font-size: 12px;
    display: inline-block;
    margin-left: 20px;
}

.navigation-tabs-search-pagination {
    text-align: center;
}

.navigation-tabs-search-pagination .btn,.navigation-tabs-search-pagination-index {
    display: inline-block;
    text-align: center;
    margin: 10px;
    background-color: #fff;
    padding: 5px;
    font-size: 12px;
    vertical-align: middle;
    font-weight: bold;
    box-shadow: 0px 1px 5px #ccc;
    border-radius: 2px;
    position: relative;
}

.navigation-tabs-search-pagination .btn:hover {
    color: blue;
    box-shadow: 0 1px 5px #999;
    cursor: pointer;
}

.navigation-tabs-search-pagination .btn:active {
    top: 1px;
}

.navigation-tabs-search-pagination-index {
    font-size: 16px;
    font-weight: normal;
}

.navigation-tabs-search-pagination-index.current {
    
}

.navigation-tabs-search-pagination-index.total {
    
}

.navigation-tabs-search-pagination-index span {
    margin: 0 10px;
}

.navigation-tabs-search-padding {
    height: 50px;
}

.navigation-tabs-search-list-content {
    max-height: calc(45vh - 100px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/***************** Navigation my list ***********************************/
.navigation-tabs-tab.list {
    text-align: center;
    /*     max-height: 45vh; */
    min-height: 180px;
}

.navigation-mylist-title {
    font-size: 15px;
    color: #333;
    font-weight: bold;
    margin-bottom: 35px;
    margin-top: 5px;
    text-align: left;
}

.navigation-mylist-header-subjects {
    position: absolute;
    background-image: url('../images/people_dark.png');
    height: 15px;
    width: 15px;
    right: 115px;
    top: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
}

.navigation-mylist-content {
    text-align: left;
    max-height: calc(45vh - 100px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.navigation-mylist-entry {
    font-size: 0;
    padding: 1px 0;
    border-bottom: 1px solid #ccc;
    position: relative;
    min-height: 22px;
    box-sizing: border-box;
}

.navigation-mylist-entry>div {
    vertical-align: middle;
}

.navigation-mylist-entry-name {
    display: inline-block;
    box-sizing: border-box;
    /*     width: calc(100% - 15px - 60px - 50px - 25px); */
    font-size: 14px;
    padding: 0px 5px;
    vertical-align: bottom;
    color: blue;
    cursor: pointer;
    font-variant: small-caps;
    text-transform: lowercase;
    /************/
    width: 100%;
    padding-right: 165px;
}

.navigation-mylist-info {
    display: inline-block;
    width: 165px;
    position: absolute;
    top: 0;
    right: 0;
}

.navigation-mylist-entry-name:first-letter {
    text-transform: capitalize;
}

.navigation-mylist-entry-count {
    display: inline-block;
    text-align: right;
    box-sizing: border-box;
    width: 50px;
    font-size: 13px;
    padding: 0px 0px;
    cursor: pointer;
    vertical-align: middle;
}

.navigation-mylist-entry-project {
    display: inline-block;
    box-sizing: border-box;
    width: 70px;
    font-size: 12px;
    padding: 0px 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
    vertical-align: middle;
}

.navigation-mylist-entry-checkbox {
    display: inline-block;
    box-sizing: border-box;
    width: 25px;
    font-size: 13px;
    padding: 0px 5px;
    vertical-align: middle;
}

.navigation-mylist-utility div {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #65378F;
    border-radius: 15px;
    padding: 2px 10px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: capitalize;
    color: #65378F;
    box-sizing: border-box;
    width: 110px;
    white-space: nowrap;
}

.navigation-mylist-utility div:hover {
    color: #fff;
    background-color: #65378F;
}

.navigation-mylist-info-button {
    display: inline-block;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.navigation-confirmation {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(85, 85, 85, 0.13);
    left: 0;
}

.navigation-confirmation.hide {
    display: none;
}

.navigation-confirmation-message {
    background-color: #555;
    display: inline-block;
    padding: 20px;
    color: #fff;
    top: 5%;
    position: relative;
    border-radius: 10px;
    left: 0;
    max-width: 50%;
}

.navigation-confirmation-message p {
    margin-bottom: 25px;
}

.navigation-confirmation-buttons span {
    border: 1px solid;
    border-radius: 10px;
    padding: 5px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.navigation-confirmation-buttons span:hover {
    background-color: #fff;
    color: #555;
}

.navigation-mylist-empty-message {
    font-weight: bold;
    padding: 10px;
    width: 80%;
    margin: auto;
    max-width: 540px;
    color: #666;
}
/**************** Navigation category detail tab ************************/
.navigation-tabs-tab.category-detail {
    text-align: center;
}

.navigation-category-detail-header {
    background-color: #666;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 10px 0;
    padding: 3px;
    font-size: 15px;
}

.navigation-category-detail-header.top {
    font-size: 20px;
    background-color: #65378F;
    height: 40px;
    box-sizing: border-box;
    padding: 10px;
    margin: 0;
}

.navigation-category-detail-content {
    padding: 0px 10%;
    text-align: center;
    color: #65378F;
    font-weight: bold;
}

.navigation-category-detail-name {
    text-align: center;
    color: #65378F;
    font-weight: bold;
    font-size: 22px;
    word-wrap: break-word;
    margin: 20px;
    font-variant: small-caps;
    text-transform: lowercase;
    display: inline-block;
}

.navigation-category-detail-checkbox {
    display: inline-block;
    vertical-align: middle;
}

.navigation-category-detail-parent {
    color: #666;
    font-weight: bold;
    font-size: 18px;
    font-variant: small-caps;
    text-transform: lowercase;
    text-align: left;
}

.navigation-category-detail-child {
    margin-left: 35px;
}

.navigation-category-detail-child span {
    position: relative;
}

.navigation-category-detail-child span:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #65378F #65378F;
    position: absolute;
    top: 0px;
    left: -55px;
}

.navigation-category-detail-child .hide-parent:before {
    display: none;
}

.navigation-category-detail-description {
    color: #1E1E1E;
    font-weight: normal;
    text-align: left;
    font-variant: small-caps;
    text-transform: lowercase;
}

.navigation-category-detail-count {
    font-size: 35px;
}

.navigation-category-detail-attributes {
    font-size: 35px;
}

.navigation-category-detail-project-logo {
    width: 94px;
    height: 59px;
    display: inline-block;
    background-size: contain;
    margin: 5px 5px 0 5px;
}

.navigation-category-detail-project-logo  a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.navigation-category-detail-description-content {
    margin-bottom: 10px;
}
/**************** Navigation field detail tab ************************/
.navigation-field-detail-header {
    background-color: #999;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 2px 0;
    font-size: 15px;
    padding: 1px 10px;
    height: 20px;
    box-sizing: border-box;
}

.navigation-field-detail-header.top {
    font-size: 20px;
    background-color: #65378F;
    height: 40px;
    box-sizing: border-box;
    padding: 10px;
    margin: 0;
    text-align: center;
}

.navigation-field-detail-content {
    margin: 10px;
}

.navigation-field-detail-description {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}

.navigation-field-detail-about {
    vertical-align: top;
    width: 100%;
    text-align: left;
}

.navigation-field-detail-details {
    margin-top: 20px;
    text-align: center;
}

.navigation-field-detail-info table {
    width: 100%;
    border-collapse: collapse;
}

.navigation-field-detail-info table td {
    vertical-align: top;
}

.navigation-field-detail-checkbox {
    width: 12px;
    display: inline-block;
    margin-right: 5px;
}

.navigation-field-detail-projects {
    position: relative;
    width: 100%;
    text-align: right;
}

.navigation-field-detail-projects .partner-box {
    margin-right: 0;
}

.navigation-field-detail-attribute:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #65378F #65378F;
    position: absolute;
    top: 0;
    left: -30px;
}

.navigation-field-detail-attribute {
    display: inline-block;
    font-size: 22px;
    color: #65378F;
    font-weight: bold;
    margin-top: 5px;
    position: relative;
    vertical-align: top;
    /*     width: calc(100% - 150px); */
    margin-left: 30px;
    font-variant: small-caps;
    text-transform: lowercase;
}

.navigation-field-detail-parent {
    color: #666;
    font-weight: bold;
    font-size: 18px;
    font-variant: small-caps;
    text-transform: lowercase;
}

.navigation-field-detail-chart {
    text-align: center;
}

.navigation-field-detail-count {
    font-size: 35px;
    color: #65378F;
    padding: 2px 10px;
    box-sizing: border-box;
    text-align: center;
}

.navigation-field-detail-project {
    font-size: 15px;
    color: #666;
    padding: 2px 10px;
    box-sizing: border-box;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 30px;
}

.navigation-field-detail-project span {
    font-weight: normal;
}

.navigation-field-detail-description p {
    font-size: 15px;
    color: #1e1e1e;
    padding: 10px;
    margin: 0;
    font-variant: small-caps;
    text-transform: lowercase;
}

.navigation-field-detail-no-data {
    text-align: center;
    font-weight: bold;
    font-style: italic;
}

/********************** Info Icons ***********************/
.chart-info-icon {
    height: 13px;
    top: 1px;
    width: 4px;
    background-color: #AC4ACE;
    border: 1px solid #AC4ACE;
    display: inline-block;
    position: relative;
    vertical-align: top;
    border-radius: 0;
    box-sizing: border-box;
}

.chart-info-icon:after,.chart-info-icon:before {
    bottom: -1px;
    width: 4px;
    background: #AC4ACE;
    border: 1px solid #AC4ACE;
    content: '';
    position: absolute;
    box-sizing: border-box;
}

.chart-info-icon:after {
    height: 16px;
    left: 4px;
}

.chart-info-icon:hover,.chart-info-icon:hover:after,.chart-info-icon:hover:before {
    background-color: #ffe;
}

.chart-info-icon:before {
    height: 7px;
    left: 9px;
}

.info-icon {
    border: 1px solid #DCA5EF;
    width: 14px;
    height: 14px;
    background-color: #f2f2f2;
    display: inline-block;
    position: relative;
    cursor: pointer;
    vertical-align: top;
}

.info-icon:before {
    content: '';
    border-radius: 50%;
    border: 2px solid #AC4ACE;
    height: 0;
    width: 0;
    display: inline-block;
    top: 1px;
    position: absolute;
    left: 5px;
}

.info-icon:after {
    content: '';
    border: 2px solid #AC4ACE;
    position: absolute;
    height: 3px;
    top: 6px;
    left: 5px;
}

.info-icon:hover {
    background-color: #AC4ACE;
}

.info-icon:hover:after,.info-icon:hover:before {
    border-color: #fff;
}

/**************** media queries ***************************/
@media screen and (max-width: 480px) {
    .navigation-build-button {
        width: 98%;
    }
}

@media screen and (max-width: 414px) {
    .navigation-container {
        margin: 5px;
    }
    .navigation-build-button {
        /*         width: 300px; */
        margin-bottom: 30px;
    }
    .navigation-build-button-alternate.one,.navigation-build-button-alternate.two {
        font-size: 25px;
    }
    .navigation-build-button-alternate.one div,.navigation-build-button-alternate.two div {
        font-size: 13px;
        position: relative;
        top: -5px;
    }
    .navigation-build-button.expand {
        padding: 0;
        border: none;
        box-shadow: none;
        height: 40px;
        margin-bottom: 0;
    }
    .navigation-tabs-header {
        font-size: 16px;
        padding: 5px;
    }
    /** INTRO **/
    .navigation-tabs-tab-intro-title {
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .navigation-tabs-tab.intro ol {
        margin-top: 5px;
    }
    .navigation-tabs-tab.intro li {
        font-size: 15px;
    }
    /** BROWSE **/
    .navigation-category-name,.navigation-field-name {
        font-size: 13px;
    }
    .navigation-category-project,.navigation-field-project {
        padding: 0 4px;
    }

    /** navigation-tabs-tab.popup **/
    .navigation-tabs-tab.popup {
        top: 50px;
    }

    /** navigation field detail**/
    .navigation-field-detail-projects {
        
    }
    .navigation-mylist-utility div {
        width: 105px;
        padding: 2px 0;
    }
    .navigation-mylist-title {
        text-align: left;
    }
}

@media screen and (max-width: 370px) {
    .navigation-mylist-utility div {
        font-size: 10px;
        width: 90px;
    }
    .font-reset {
        display: none;
    }
}

@media screen and (max-width: 330px) {
    .navigation-tabs-header {
        font-size: 14px;
        padding: 4px;
    }

    /** BROWSE **/
    .navigation-category-name,.navigation-field-name {
        font-size: 11px;
    }
    .navigation-category-project,.navigation-field-project {
        font-size: 11px;
    }

    /** MYLIST **/
    .navigation-tabs-header.list {
        font-size: 12px;
        vertical-align: top;
    }
    .navigation-tabs-tab.intro li {
        font-size: 13px;
    }
}

@media screen and (min-width: 680px) {
    .navigation-category-name,.navigation-site-project {
        /*         width: calc(100% - 15px - 220px); */
        padding-right: 235px;
    }
    .navigation-category-info,.navigation-field-info,.navigation-site-info {
        width: 220px;
    }
    .navigation-field-name {
        /*         width: calc(100% - 220px); */
        padding-right: 220px;
    }
    .navigation-category-count,.navigation-field-count,.navigation-site-count {
        width: 80px;
    }
    .navigation-category-project,.navigation-field-project {
        width: 100px;
    }
    .navigation-tabs-browse-header-subjects {
        right: 110px;
    }
    .navigation-mylist-entry-count {
        width: 70px;
    }
    .navigation-mylist-entry-project {
        width: 90px;
    }
    .navigation-mylist-info {
        width: 200px;
    }
    .navigation-mylist-entry-name {
        padding-right: 200px;
    }
    .navigation-mylist-header-subjects {
        right: 135px;
    }
}