@import url('https://fonts.googleapis.com/css?family=Lato:300,300i,400,700,900');
html,
body {
    background: none;
}


/*----------------
latitude ticker
-----------------*/

#latitude-ticker {
    display: none;
    font-family: 'Lato', sans-serif;
    width: 100%;
    height: 60px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    #latitude-ticker {
        height: 250px;
        box-shadow: none;
    }
}

#latitude-ticker.banner {
    max-width: 300px;
    height: 250px;
    box-shadow: none;
}

#latitude-ticker.fixedBottom {
    position: fixed;
    bottom: 0;
}

#latitude-ticker.fixedTop {
    position: fixed;
    top: 0;
}

#latitude-ticker.panelOpen {
    height: 250px;
}

#latitude-ticker.tickerClosed {
    width: 60px;
    height: 60px;
    box-shadow: none;
}

#latitude-ticker.tickerClosed #ticker-close,
#latitude-ticker.tickerClosed #ticker-menu,
#latitude-ticker.tickerClosed #ticker-scroll {
    display: none;
}

#latitude-ticker p {
    margin-bottom: 0;
}


/*----------------
ticker container
-----------------*/

#ticker-container {
    display: flex;
    width: 100%;
    height: 60px;
    position: relative;
}

#latitude-ticker.panelOpen #ticker-container {
    height: 60px;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
    z-index: 5;
}

@media screen and (max-width: 768px) {
    #ticker-container {
        display: block;
        height: auto;
    }
    #latitude-ticker.panelOpen #ticker-container {
        height: 0px;
        overflow: hidden;
        box-shadow: none;
    }
}

.banner #ticker-container {
    display: block;
    height: auto;
}

#latitude-ticker.panelOpen.banner #ticker-container {
    height: 0px;
    overflow: hidden;
    box-shadow: none;
}


/*----------------
ticker icon
-----------------*/

#ticker-icon {
    display: none;
    position: absolute;
    width: 60px;
    height: 60px;
    background: #000;
    -webkit-border-top-right-radius: 30px;
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-topright: 30px;
    -moz-border-radius-bottomright: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 1;
}

.lightTheme #ticker-icon {
    background: #E7E6E4;
}

.tickerClosed #ticker-icon {
    display: block;
}

#ticker-icon a {
    display: block;
    width: 60px;
    height: 60px;
    padding-top: 10px;
}

.lightTheme #ticker-icon a {
    padding-top: 9px;
}

#ticker-icon img {
    display: block;
    margin: 0 auto;
}


/*----------------
ticker menu
-----------------*/

#ticker-menu {
    height: 100%;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

#ticker-menu>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 20px;
    background: #000;
}

.lightTheme #ticker-menu>a {
    background: #fff;
}

@media screen and (max-width: 768px) {
    #ticker-menu {
        width: 100%;
        height: 37px;
        background: #000;
        position: static;
    }
    .lightTheme #ticker-menu {
        background: #fff;
    }
    #ticker-menu>a {
        width: 37px;
        height: 37px;
        padding: 0;
        position: absolute;
        right: 0;
    }
    .lightTheme #ticker-menu>a {
        background: #fff;
    }
}

.banner #ticker-menu {
    width: 100%;
    height: 37px;
    background: #000;
    position: static;
}

.banner.lightTheme #ticker-menu {
    background: #fff;
}

.banner #ticker-menu>a {
    width: 37px;
    height: 37px;
    padding: 0;
    position: absolute;
    right: 0;
}

.banner.lightTheme #ticker-menu>a {
    background: #fff;
}


/*----------------
ticker logo
-----------------*/

#ticker-logo {
    display: flex;
    width: 147px;
    background: #000;
    transition: width .2s;
}

.lightTheme #ticker-logo {
    background: #fff;
}

#ticker-logo.closed {
    width: 0px;
}

#ticker-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 15px;
}

#ticker-logo img {
    display: block;
}

@media screen and (max-width: 768px) {
    #ticker-logo {
        width: auto;
        padding: 0 10px;
    }
    #ticker-logo.closed {
        width: auto;
    }
    #ticker-logo a {
        padding: 0px;
    }
    #ticker-logo img:last-of-type {
        margin-left: 10px;
    }
}

.banner #ticker-logo {
    width: auto;
    padding: 0 10px;
}

.banner #ticker-logo a {
    padding: 0px;
}

.banner #ticker-logo img:last-of-type {
    margin-left: 10px;
}


/*----------------
ticker search
-----------------*/

.ticker-search {
    display: flex;
    padding: 0 15px;
    width: 95px;
    font-size: 10px;
    background: rgb(82, 79, 73);
    background: linear-gradient(90deg, rgba(82, 79, 73, 1) 60%, rgba(82, 79, 73, 0) 100%);
    align-items: center;
    transition: width .5s;
    overflow: hidden;
}

.lightTheme .ticker-search {
    background: rgb(231, 230, 228);
    background: linear-gradient(90deg, rgb(231, 230, 228, 1) 60%, rgba(231, 230, 228, 0) 100%);
}

.ticker-search.active {
    width: 100%;
    padding-right: 35px;
    background: linear-gradient(90deg, rgba(82, 79, 73, 1) 92%, rgba(82, 79, 73, 0) 100%);
}

.ticker-search>img {
    cursor: pointer;
}

.ticker-search>a {
    color: #524F49;
    text-decoration: none;
    font-size: 19px;
    position: absolute;
    z-index: 1;
    left: 265px;
}

@media screen and (max-width: 768px) {
    .ticker-search {
        position: absolute;
        right: 0;
        top: 37px;
        z-index: 3;
        display: block;
        padding: 13px 10px;
        width: 100%;
        background: transparent;
        overflow: visible;
    }
    .lightTheme .ticker-search {
        background: transparent;
    }
    .ticker-search.active {
        width: 100%;
        padding: 13px 10px;
        background: transparent;
    }
    .ticker-search>img {
        width: 19px;
        display: block;
        margin-left: auto;
    }
    .ticker-search>a {
        color: #524F49;
        text-decoration: none;
        font-size: 19px;
        position: absolute;
        z-index: 1;
        left: auto;
        right: 15px;
        top: 9px;
    }
}

.banner .ticker-search {
    position: absolute;
    right: 0;
    top: 37px;
    z-index: 3;
    display: block;
    padding: 13px 10px;
    width: 100%;
    background: transparent;
    overflow: visible;
}

.banner.lightTheme .ticker-search {
    background: transparent;
}

.banner .ticker-search.active {
    width: 100%;
    padding: 13px 10px;
    background: transparent;
}

.banner .ticker-search>img {
    width: 19px;
    display: block;
    margin-left: auto;
}

.banner .ticker-search>a {
    color: #524F49;
    text-decoration: none;
    font-size: 19px;
    position: absolute;
    z-index: 1;
    left: auto;
    right: 15px;
    top: 9px;
}


/*----------------
ticker search - input
-----------------*/

.tags-input {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tags-input-wrapper-default {
    width: 210px;
    height: 32px;
    padding: 0 10px;
    background: #fff;
    border: none;
    border-radius: 23px;
    font-size: 10px;
}

@media screen and (max-width: 768px) {
    #tickerSearch {
        padding: 0 5px;
    }
    .tags-input-wrapper-default {
        width: auto;
        height: 22px;
        padding: 0 1px;
    }
}

.banner #tickerSearch {
    padding: 0 5px;
}

.banner .tags-input-wrapper-default {
    width: auto;
    height: 22px;
    padding: 0 1px;
}

.tags-input-wrapper-default.active {
    box-shadow: 0 0 0 0.2em rgba(195, 172, 107, 0.25);
    outline: 0 none;
}

.tags-input input {
    flex: 1;
    background: transparent;
    border: none;
}

.tags-input input:focus {
    outline: none;
}

.tags-input input[type="text"] {
    color: #000;
}


/*----------------
ticker search - tag
-----------------*/

.tags-input-badge {
    position: relative;
    display: inline-block;
    padding: 0.5em 0.4em;
    /* font-size: 75%; */
    font-size: 100%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.5em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tags-input-badge-pill {
    padding-right: 2em;
    padding-left: 1em;
    border-radius: 10em;
}

.tags-input-badge-pill.disabled {
    padding-right: 0.6em;
}

.tags-input-badge-selected-default {
    color: #212529;
    background-color: #C5C1B8;
}


/*----------------
ticker search - remove tag
-----------------*/

.tags-input-remove {
    cursor: pointer;
    position: absolute;
    display: inline-block;
    right: 0.5em;
    top: 0.5em;
    padding: 0.5em;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.tags-input-remove:focus {
    outline: none;
}

.tags-input-remove:before,
.tags-input-remove:after {
    content: '';
    position: absolute;
    width: 75%;
    left: 0.1em;
    background: #C5C1B8;
    height: 2px;
    margin-top: -1px;
}

.tags-input-remove:before {
    transform: rotate(45deg);
}

.tags-input-remove:after {
    transform: rotate(-45deg);
}


/*----------------
ticker search - typeahead dropdown
-----------------*/

.tags-input-root {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .tags-input-root {
        display: block;
    }
}

.banner .tags-input-root {
    display: block;
}

.tags-input-wrapper-default+div {
    background: #fff;
    height: 60px;
    overflow: auto;
}

.typeahead-dropdown {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: 4;
}

.typeahead-dropdown li {
    padding: .25em 1em;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*----------------
ticker search - typeahead style/theme
-----------------*/


/* .tags-input-typeahead-item-default {
    color: #fff;
    background-color: #343a40;
}

.tags-input-typeahead-item-highlighted-default {
    color: #fff;
    background-color: #007bff !important;
} */


/*----------------
ticker loader
-----------------*/

#loader-container {
    width: auto !important;
    position: absolute;
    z-index: 4;
    left: 50% !important;
    top: 50%;
    transform: translate(0, -50%);
    text-align: center;
}

#loader-container p {
    font-size: 12px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 700;
}

.lightTheme #loader-container p {
    color: #000;
}

@media screen and (max-width: 768px) {
    #loader-container {
        width: 100% !important;
        z-index: auto;
        left: auto !important;
    }
    #loader-container p {
        font-size: 10px;
        margin-bottom: 0px;
    }
}

.banner #loader-container {
    width: 100% !important;
    z-index: auto;
    left: auto !important;
}

.banner #loader-container p {
    font-size: 10px;
    margin-bottom: 0px;
}

#loader-container .loader {
    display: inline-block;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #408aa1;
    border-right: 3px solid #c3ac6b;
    border-bottom: 3px solid #ba4a00;
    border-left: 3px solid #ffffff;
    width: 22px;
    height: 22px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*----------------
ticker scroll
-----------------*/

#ticker-scroll {
    width: 100%;
    background: #524f49;
    padding-left: 270px;
    position: relative;
}

.lightTheme #ticker-scroll {
    background: #E7E6E4;
}

@media screen and (max-width: 768px) {
    #ticker-scroll {
        background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 2px, #524f49 2px, #524f49 6px), #524f49;
        padding: 0;
    }
    .lightTheme #ticker-scroll {
        background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 2px, #E7E6E4 2px, #E7E6E4 6px), #E7E6E4;
    }
    #ticker-scroll.scrollClosed {
        height: 0;
    }
}

.banner #ticker-scroll {
    background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 2px, #524f49 2px, #524f49 6px), #524f49;
    padding: 0;
}

.banner.lightTheme #ticker-scroll {
    background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 2px, #E7E6E4 2px, #E7E6E4 6px), #E7E6E4;
}

.banner #ticker-scroll.scrollClosed {
    height: 0;
}


/*----------------
ticker close
-----------------*/

#ticker-close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: #000;
    color: #989692;
    text-align: center;
    line-height: 58px;
    font-size: 28px;
    text-decoration: none;
    z-index: 4;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.lightTheme #ticker-close {
    background: #fff;
    color: #ababab;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 768px) {
    #ticker-close {
        display: none;
    }
}

.banner #ticker-close {
    display: none;
}


/*----------------
mobile areaname
-----------------*/

.mobile-areaname {
    display: none;
    padding: 13px 10px;
}

.mobile-areaname h3 {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .mobile-areaname {
        display: block;
    }
    .lightTheme .mobile-areaname h3 {
        color: #000;
    }
}

.banner .mobile-areaname {
    display: block;
}

.banner.lightTheme .mobile-areaname h3 {
    color: #000;
}


/*----------------
ticker pills
-----------------*/

.ticker-scroll-container,
.ticker-scroll-container .wrap {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .ticker-scroll-container,
    .ticker-scroll-container .wrap {
        overflow: hidden;
    }
}

.banner .ticker-scroll-container,
.banner .ticker-scroll-container .wrap {
    overflow: hidden;
}

.stockTicker {
    white-space: nowrap;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.stockTicker .pill {
    margin: 0 5px;
    display: inline-block !important;
    background: #000;
    color: #fff;
    border-radius: 23px 8px 23px 23px;
    padding: 5px 20px;
    position: relative;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    user-select: none;
    top: 7px;
}

@media screen and (max-width: 768px) {
    .stockTicker .pill {
        width: 80px;
        margin: 1px 5px 20px;
        background: transparent;
        border-radius: 5px;
        padding: 0;
        font-size: 11px;
        font-weight: 400;
        vertical-align: top;
        box-shadow: 0px 10px 15px -2px rgba(0, 0, 0, 0.5);
        top: auto;
        overflow: hidden;
    }
}

.banner .stockTicker .pill {
    width: 80px;
    margin: 1px 5px 20px;
    background: transparent;
    border-radius: 5px;
    padding: 0;
    font-size: 11px;
    font-weight: 400;
    vertical-align: top;
    box-shadow: 0px 10px 15px -2px rgba(0, 0, 0, 0.5);
    top: auto;
    overflow: hidden;
}

.stockTicker .pill.active .pill-active-arrow {
    border: 20px solid transparent;
    pointer-events: none;
    position: absolute;
    border-top-width: 0;
    border-bottom-color: #fff;
    z-index: 5;
}

.stockTicker .pill.active,
.stockTicker .pill:hover {
    box-shadow: 0px 0px 5px 1px rgba(255, 101, 0, 1);
}

.stockTicker .pill .pill-flex,
.stockTicker .pill .pill-flex .pill-content,
.stockTicker .pill:hover .pill-flex .pill-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .stockTicker .pill .pill-flex,
    .stockTicker .pill .pill-flex .pill-content,
    .stockTicker .pill:hover .pill-flex .pill-buttons {
        display: block;
    }
    .stockTicker .pill .pill-flex .pill-content:nth-of-type(1) {
        height: 80px;
        padding: 7px;
        background: #2B271D;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
        position: relative;
        z-index: 2;
    }
    .stockTicker .pill .pill-flex .pill-content:nth-of-type(2) {
        padding: 1px 7px;
        margin-top: -5px;
        padding-top: 5px;
        position: relative;
        z-index: 1;
    }
}

.banner .stockTicker .pill .pill-flex,
.banner .stockTicker .pill .pill-flex .pill-content,
.banner .stockTicker .pill:hover .pill-flex .pill-buttons {
    display: block;
}

.banner .stockTicker .pill .pill-flex .pill-content:nth-of-type(1) {
    height: 80px;
    padding: 7px;
    background: #2B271D;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
    z-index: 2;
}

.banner .stockTicker .pill .pill-flex .pill-content:nth-of-type(2) {
    padding: 1px 7px;
    margin-top: -5px;
    padding-top: 5px;
    position: relative;
    z-index: 1;
}

.stockTicker .pill .pill-flex .pill-content .loc {
    white-space: normal;
}

.stockTicker .pill .pill-flex .pill-content>svg {
    margin: 0 10px;
}

.stockTicker .pill .pill-flex .pill-content>svg.middle-dot {
    bottom: 12px;
}

@media screen and (max-width: 768px) {
    .stockTicker .pill .pill-flex .pill-content>svg {
        width: 15px;
        margin: 0;
        position: absolute;
        left: 7px;
        bottom: 7px;
    }
    .stockTicker .pill .pill-flex .pill-content>svg.middle-dot {
        bottom: 12px;
    }
}

.banner .stockTicker .pill .pill-flex .pill-content>svg {
    width: 15px;
    margin: 0;
    position: absolute;
    left: 7px;
    bottom: 7px;
}

.banner .stockTicker .pill .pill-flex .pill-content>svg.middle-dot {
    bottom: 12px;
}

@media screen and (max-width: 768px) {
    .stockTicker .pill .pill-flex .pill-content .price {
        font-size: 15px;
        position: absolute;
        right: 7px;
        bottom: 7px;
    }
}

.banner .stockTicker .pill .pill-flex .pill-content .price {
    font-size: 15px;
    position: absolute;
    right: 7px;
    bottom: 7px;
}

@media screen and (max-width: 768px) {
    .stockTicker .pill .pill-flex .pill-content.red {
        background: rgba(239, 40, 40, .67);
    }
    .stockTicker .pill .pill-flex .pill-content.green {
        background: #509724;
    }
}

.banner .stockTicker .pill .pill-flex .pill-content.red {
    background: rgba(239, 40, 40, .67);
}

.banner .stockTicker .pill .pill-flex .pill-content.green {
    background: #509724;
}

@media screen and (max-width: 768px) {
    .stockTicker .pill .pill-flex .pill-content .percentage {
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: solid 1px #fff;
    }
}

.banner .stockTicker .pill .pill-flex .pill-content .percentage {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: solid 1px #fff;
}

.stockTicker .pill .pill-flex .pill-content .percentage span {
    font-size: 13px;
    margin: 0 5px 0 10px;
}

.stockTicker .pill .pill-flex .pill-content.red .percentage span {
    color: #db4f00;
}

.stockTicker .pill .pill-flex .pill-content.green .percentage span {
    color: #47bb00;
}

@media screen and (max-width: 768px) {
    .stockTicker .pill .pill-flex .pill-content .percentage span {
        font-size: 10px;
        color: #fff !important;
    }
}

.banner .stockTicker .pill .pill-flex .pill-content .percentage span {
    font-size: 10px;
    color: #fff !important;
}

.stockTicker .pill .pill-flex .pill-content .tag-price {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    background-color: #c3ac6b;
    color: #3b372c;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0px 8px;
    padding-right: 6px;
    padding-left: 8px;
}

@media screen and (max-width: 768px) {
    .stockTicker .pill .pill-flex .pill-content .tag-price {
        background: transparent;
        color: #fff;
        position: static;
        border-radius: none;
        padding: 0;
        font-size: 7px;
    }
}

.banner .stockTicker .pill .pill-flex .pill-content .tag-price {
    background: transparent;
    color: #fff;
    position: static;
    border-radius: none;
    padding: 0;
    font-size: 7px;
}

.stockTicker .pill .pill-flex .pill-content .tag-price svg {
    margin: 0 5px;
}

@media screen and (max-width: 768px) {
    .stockTicker .pill .pill-flex .pill-content .tag-price svg {
        width: 6px;
        margin: 0 2px;
    }
}

.banner .stockTicker .pill .pill-flex .pill-content .tag-price svg {
    width: 6px;
    margin: 0 2px;
}

.stockTicker .pill .pill-flex .pill-content .tag-price span:nth-of-type(2) {
    font-weight: 400;
}


/*----------------
ticker pill buttons
-----------------*/

.pill-buttons {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-left: 10px;
}

.pill-buttons button {
    font-size: 7px;
    background: #fff;
    border: none;
    border-radius: 30px;
    color: #000;
    padding: 5px 10px;
    outline: none;
}

.pill-buttons button:nth-of-type(2) {
    margin: 0 4px;
}


/*----------------
ticker panel
-----------------*/

#ticker-panel {
    display: flex;
    width: 100%;
    height: calc(100% - 60px);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 4;
    overflow: hidden;
}

.lightTheme #ticker-panel {
    background: rgb(242, 242, 242, 0.8);
}

@media screen and (max-width: 768px) {
    #ticker-panel {
        display: block;
        height: calc(100% - 40px);
        overflow: auto;
        overflow-y: hidden;
    }
}

.banner #ticker-panel {
    display: block;
    height: calc(100% - 40px);
    overflow: auto;
    overflow-y: hidden;
}


/*----------------
ticker panel menu
-----------------*/

#ticker-panel-menu {
    width: 207px;
    overflow: auto;
    border-right: solid 1px #000;
}

.lightTheme #ticker-panel-menu {
    border-right: solid 1px #fff;
}

#ticker-panel-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    font-size: 18px;
    color: #fff;
}

.lightTheme #ticker-panel-menu ul {
    color: #000;
}

#ticker-panel-menu li {
    padding: 10px 20px;
    cursor: pointer;
}

#ticker-panel-menu li span {
    display: inline;
}

#ticker-panel-menu li.active {
    color: #C3AC6B;
    border-right: solid 2px #C3AC6B;
}

#ticker-panel-menu li img {
    margin-right: 10px;
}

#ticker-panel-menu li i {
    color: #A1A1A1;
    margin-right: 15px;
    font-size: 20px;
}

#ticker-panel-menu li.active i {
    color: #C3AC6B;
    margin-right: 15px;
}

#ticker-panel-menu ul>a {
    display: none;
}

@media screen and (max-width: 768px) {
    #ticker-panel-menu {
        width: 100%;
        overflow: visible;
        border-right: none;
    }
    .lightTheme #ticker-panel-menu {
        border-right: none;
    }
    #ticker-panel-menu ul {
        display: flex;
        font-size: 15px;
    }
    #ticker-panel-menu li {
        padding: 7.5px 12px;
        border-right: solid 1px #524F49;
    }
    .lightTheme #ticker-panel-menu li {
        border-right: solid 1px #fff;
    }
    #ticker-panel-menu li span {
        display: none;
    }
    #ticker-panel-menu li.active {
        color: #C3AC6B;
        background: #524F49;
        border-right: none;
    }
    .lightTheme #ticker-panel-menu li.active {
        background: #fff;
    }
    #ticker-panel-menu li.active span {
        display: inline;
    }
    #ticker-panel-menu li i {
        color: #A1A1A1;
        margin-right: 0;
        font-size: 15px;
    }
    #ticker-panel-menu li.active i {
        margin-right: 10px;
    }
    #ticker-panel-menu ul>a {
        display: inline;
        margin-left: auto;
        color: #A1A1A1;
        align-self: center;
        font-size: 25px;
        padding: 0 10px;
        text-decoration: none;
    }
}

.banner #ticker-panel-menu {
    width: 100%;
    overflow: visible;
    border-right: none;
}

.banner.lightTheme #ticker-panel-menu {
    border-right: none;
}

.banner #ticker-panel-menu ul {
    display: flex;
    font-size: 15px;
}

.banner #ticker-panel-menu li {
    padding: 7.5px 12px;
    border-right: solid 1px #524F49;
}

.banner.lightTheme #ticker-panel-menu li {
    border-right: solid 1px #fff;
}

.banner #ticker-panel-menu li span {
    display: none;
}

.banner #ticker-panel-menu li.active {
    color: #C3AC6B;
    background: #524F49;
    border-right: none;
}

.banner.lightTheme #ticker-panel-menu li.active {
    background: #fff;
}

.banner #ticker-panel-menu li.active span {
    display: inline;
}

.banner #ticker-panel-menu li i {
    color: #A1A1A1;
    margin-right: 0;
    font-size: 15px;
}

.banner #ticker-panel-menu li.active i {
    margin-right: 10px;
}

.banner #ticker-panel-menu ul>a {
    display: inline;
    margin-left: auto;
    color: #A1A1A1;
    align-self: center;
    font-size: 25px;
    padding: 0 10px;
    text-decoration: none;
}


/*----------------
ticker panel content
-----------------*/

#ticker-panel-content {
    display: flex;
    width: calc(100% - 207px);
    height: 100%;
}

#ticker-panel-content>div {
    display: flex;
    overflow: hidden;
}

#ticker-panel-content>div>div {
    white-space: nowrap;
    overflow: auto;
}

@media screen and (max-width: 768px) {
    #ticker-panel-content {
        width: 100%;
        height: calc(100% - 37px);
        background: #524F49;
    }
    .lightTheme #ticker-panel-content {
        background: #fff;
    }
    #ticker-panel-content>div {
        overflow: auto;
    }
    #ticker-panel-content>div>div {
        overflow: visible;
    }
}

.banner #ticker-panel-content {
    width: 100%;
    height: calc(100% - 37px);
    background: #524F49;
}

.banner.lightTheme #ticker-panel-content {
    background: #fff;
}

.banner #ticker-panel-content>div {
    overflow: auto;
}

.banner #ticker-panel-content>div>div {
    overflow: visible;
}


/*----------------
scroll bars
-----------------*/

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

.lightTheme ::-webkit-scrollbar-track {
    background: #D6D3CF;
}

::-webkit-scrollbar-thumb {
    background: #C3AC6B;
}


/*----------------
ticker panel settings
-----------------*/

.ticker-panel-settings {
    background: #000;
    padding: 15px;
    border-right: solid 1px #2E2E2E;
}

.lightTheme .ticker-panel-settings {
    background: #E7E6E4;
    border-right: solid 1px #fff;
}

.ticker-panel-settings h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.lightTheme .ticker-panel-settings h4 {
    color: #000;
}

@media screen and (max-width: 768px) {
    .ticker-panel-settings {
        border-radius: 5px;
        margin: 8px 0px 8px 10px;
        padding: 10px 15px;
        border-right: none;
    }
    .lightTheme .ticker-panel-settings {
        border-right: none;
    }
    .ticker-panel-settings:last-of-type {
        margin-right: 10px;
    }
    .ticker-panel-settings h4 {
        margin-bottom: 10px;
    }
}

.banner .ticker-panel-settings {
    border-radius: 5px;
    margin: 8px 0px 8px 10px;
    padding: 10px 15px;
    border-right: none;
}

.banner.lightTheme .ticker-panel-settings {
    border-right: none;
}

.banner .ticker-panel-settings:last-of-type {
    margin-right: 10px;
}

.banner .ticker-panel-settings h4 {
    margin-bottom: 10px;
}


/*----------------
ticker panel settings - radios
-----------------*/

.radio-group {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    white-space: nowrap;
}

.lightTheme .radio-group {
    color: #000;
}

@media screen and (max-width: 768px) {
    .radio-group {
        margin-bottom: 5px;
    }
}

.banner .radio-group {
    margin-bottom: 5px;
}

.radio-group:last-of-type {
    margin-bottom: 0;
}

.radio-group input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-group .custom-radio {
    position: absolute;
    top: 5px;
    left: 0;
    height: 12px;
    width: 12px;
    border: solid 2px #fff;
    border-radius: 50%;
}

.lightTheme .radio-group .custom-radio {
    border: solid 2px #ababab;
}

.radio-group:hover input~.custom-radio {
    border: solid 2px #C3AC6B;
}

.radio-group input:checked~.custom-radio {
    border: solid 2px #C3AC6B;
}

.custom-radio:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-group input:checked~.custom-radio:after {
    display: block;
}

.radio-group .custom-radio:after {
    top: 1px;
    left: 1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C3AC6B;
}


/*----------------
ticker panel settings - checkboxes
-----------------*/

.checkbox-group {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}

.lightTheme .checkbox-group {
    color: #000;
}

@media screen and (max-width: 768px) {
    .checkbox-group {
        margin-bottom: 5px;
    }
}

.banner .checkbox-group {
    margin-bottom: 5px;
}

.checkbox-group:last-of-type {
    margin-bottom: 0;
}

.checkbox-group input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-group .custom-checkbox {
    position: absolute;
    top: 5px;
    left: 0;
    height: 12px;
    width: 12px;
    border: solid 2px #fff;
    border-radius: 2px;
}

.lightTheme .checkbox-group .custom-checkbox {
    border: solid 2px #ababab;
}

.checkbox-group:hover input~.custom-checkbox {
    border: solid 2px #C3AC6B;
}

.checkbox-group input:checked~.custom-checkbox {
    border: solid 2px #C3AC6B;
}

.custom-checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-group input:checked~.custom-checkbox:after {
    display: block;
}

.checkbox-group .custom-checkbox:after {
    top: -4px;
    left: 3px;
    width: 6px;
    height: 11px;
    border: solid #C3AC6B;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*----------------
ticker share settings
-----------------*/

#ticker-panel-share {
    overflow: auto !important;
}

.ticker-panel-share {
    background: #000;
    padding: 15px;
    border-right: solid 1px #2E2E2E;
    overflow: visible !important;
}

.lightTheme .ticker-panel-share {
    background: #E7E6E4;
    border-right: solid 1px #fff;
}

.ticker-panel-share .st-custom-button {
    cursor: pointer;
    padding-right: 5px;
}

.ticker-panel-share .st-custom-button:last-of-type {
    margin-bottom: 0px !important;
}

.ticker-panel-share.or {
    background: #524F49;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #fff;
}

.lightTheme .ticker-panel-share.or {
    background: transparent;
}

.ticker-panel-share h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.lightTheme .ticker-panel-share h4 {
    color: #000;
}

.ticker-panel-share h4 span {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #ccc;
    color: #000;
    text-align: center;
    border-radius: 9px;
    margin-right: 5px;
}

@media screen and (max-width: 768px) {
    .ticker-panel-share {
        border-radius: 5px;
        margin: 8px 0px 8px 10px;
        padding: 10px 15px;
        border-right: none;
    }
    .lightTheme .ticker-panel-share {
        border-right: none;
    }
    .ticker-panel-share:nth-of-type(3) {
        min-width: 200px;
        padding: 0;
        overflow: hidden !important;
    }
    .ticker-panel-share-content {
        height: 100%;
        padding: 10px 15px;
        overflow-y: auto;
    }
    .ticker-panel-share:nth-of-type(6) {
        margin-right: 10px;
    }
    .ticker-panel-share.or {
        padding: 0px;
    }
    .ticker-panel-share h4 {
        margin-bottom: 10px;
    }
}

.banner .ticker-panel-share {
    border-radius: 5px;
    margin: 8px 0px 8px 10px;
    padding: 10px 15px;
    border-right: none;
}

.banner.lightTheme .ticker-panel-share {
    border-right: none;
}

.banner .ticker-panel-share:nth-of-type(3) {
    min-width: 200px;
    padding: 0;
    overflow: hidden !important;
}

.banner .ticker-panel-share-content {
    height: 100%;
    padding: 10px 15px;
    overflow-y: auto;
}

.banner .ticker-panel-share:nth-of-type(6) {
    margin-right: 10px;
}

.banner .ticker-panel-share.or {
    padding: 0px;
}

.banner .ticker-panel-share h4 {
    margin-bottom: 10px;
}

.ticker-panel-share p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px !important;
    white-space: nowrap;
}

.lightTheme .ticker-panel-share p {
    color: #000;
}

.ticker-panel-share p i {
    color: #C3AC6B;
    margin-right: 10px;
    font-size: 19px;
}

.ticker-panel-share input[type=text],
.ticker-panel-share input[type=email] {
    width: 100%;
    height: 25px;
    background: none;
    border: solid 1px #C3AC6B;
    margin-bottom: 8px;
    padding: 5px;
    color: #fff;
    display: block;
    font-size: 12px;
}

.lightTheme .ticker-panel-share input[type=text],
.lightTheme .ticker-panel-share input[type=email] {
    color: #000;
}

.ticker-panel-share input::placeholder {
    color: #fff;
}

.lightTheme .ticker-panel-share input::placeholder {
    color: #000;
}


/*----------------
ticker share settings - phone
-----------------*/

.vue-tel-input {
    border-radius: 2px !important;
    border: 1px solid #C3AC6B !important;
    box-shadow: none !important;
    outline: none;
}

.vti__dropdown {
    padding: 0px !important;
    outline: none;
}

.vti__dropdown:hover,
.vti__dropdown.disabled,
.vti__dropdown.open {
    background-color: #C3AC6B !important;
}

.vti__selection .vti__country-code {
    color: #fff !important;
    font-size: 12px !important;
    padding-right: 2px;
}

.vti__dropdown-arrow {
    color: #fff !important;
}

.vti__dropdown-list {
    font-size: 12px;
    z-index: 1;
    padding: 0;
    margin: 0;
    text-align: left;
    list-style: none;
    max-height: 100px !important;
    overflow-y: scroll;
    position: absolute;
    left: -1px;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 185px !important;
}

@media screen and (max-width: 768px) {
    .vti__dropdown-list {
        width: 165px !important;
    }
}

.banner .vti__dropdown-list {
    width: 165px !important;
}

.vti__dropdown-item {
    padding: 4px !important;
}

.vti__input {
    border: none;
    border-radius: 0 2px 2px 0;
    width: 100%;
    height: 25px;
    outline: none;
    padding: 5px;
    background: transparent;
    color: #fff;
    font-size: 12px;
}


/*----------------
ticker share settings - customise
-----------------*/

.ticker-panel-share.customise>p {
    display: inline-block;
    margin-right: 10px;
}

.ticker-panel-share.customise .radio-group {
    display: inline-block;
}

.ticker-panel-share.customise .radio-group:first-of-type {
    margin-right: 10px;
}

.ticker-panel-share.customise table label {
    color: #fff;
    font-size: 15px;
}

.lightTheme .ticker-panel-share.customise table label {
    color: #000;
}

.ticker-panel-share.customise table tr td:last-of-type {
    padding-left: 10px;
}

.ticker-panel-share select {
    background: #000;
    color: #fff;
    padding: 3px;
    font-size: 12px;
    border: solid 1px #C3AC6B;
    max-width: 120px;
}

.lightTheme .ticker-panel-share select {
    background: #E7E6E4;
    color: #000;
}

.ticker-panel-share textarea {
    width: 100%;
    height: 80px;
    resize: none;
    overflow: auto;
    background: none;
    border: solid 1px #C3AC6B;
    color: #fff;
    font-size: 13px;
}

@media screen and (max-width: 768px) {
    .ticker-panel-share textarea {
        height: 60px;
    }
}

.banner .ticker-panel-share textarea {
    height: 60px;
}

.lightTheme .ticker-panel-share textarea {
    color: #000;
}

.ticker-panel-share textarea::placeholder {
    color: #fff;
}

.lightTheme .ticker-panel-share textarea::placeholder {
    color: #000;
}

.ticker-panel-share .share-buttons {
    text-align: right;
}

.ticker-panel-share .share-buttons .btn {
    border: solid 1px #C3AC6B;
    background: none;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
    color: #fff;
    border-radius: 0px;
    outline: none;
}

.lightTheme .ticker-panel-share .share-buttons .btn {
    color: #000;
}


/*----------------
ticker help settings
-----------------*/

.ticker-panel-help {
    background: #000;
    border-radius: 5px;
    margin: 8px 0px 8px 10px;
    flex-basis: 370px;
}

.lightTheme .ticker-panel-help {
    background: #E7E6E4;
}

@media screen and (max-width: 768px) {
    .ticker-panel-help {
        min-width: 250px;
        overflow: hidden !important;
    }
}

.banner .ticker-panel-help {
    min-width: 250px;
    overflow: hidden !important;
}

.ticker-panel-help:last-of-type {
    margin-right: 10px;
}

.ticker-panel-help-content {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 10px 15px;
}

.ticker-panel-help-content>* {
    display: inline-block;
    white-space: normal;
    vertical-align: top;
    height: 100%;
}

.ticker-panel-help-content>div {
    border-right: solid 1px #524F49;
    padding: 0 20px;
}

.lightTheme .ticker-panel-help-content>div {
    border-right: solid 1px #C1BFBB;
}

.ticker-panel-help-content>div:last-of-type {
    border-right: none;
    padding-right: 0;
}

.ticker-panel-help-content>div img {
    padding: 15px 0;
}

@media screen and (max-width: 768px) {
    .ticker-panel-help-content>div img {
        padding: 10px 0;
    }
}

.banner .ticker-panel-help-content>div img {
    padding: 10px 0;
}

.ticker-panel-help h4 {
    width: 130px;
    color: #fff;
    white-space: normal;
    font-size: 22px;
    margin-bottom: 0;
}

.lightTheme .ticker-panel-help h4 {
    color: #000;
}

.ticker-panel-help:last-of-type h4 {
    display: block;
    height: auto;
    margin-bottom: 10px;
}

.ticker-panel-help p {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.lightTheme .ticker-panel-help p {
    color: #000;
}

.ticker-panel-help:last-of-type p {
    /* padding-top: 40px;
    padding-left: 70px; */
    display: block;
    height: auto;
    font-size: 22px;
    margin-bottom: 10px !important;
}

.ticker-panel-help:last-of-type p a {
    text-decoration: none;
    color: #C3AC6B;
}

.ticker-panel-help:last-of-type p:last-of-type {
    font-size: 10px;
    margin-bottom: 0 !important;
}

/*----------------
help - components of ticker
-----------------*/

.ticker-panel-help-content>div p {
    width: 200px;
}

.ticker-panel-help-content>div:nth-of-type(2) p {
    width: 350px;
}


/*----------------
help - ontology of postcode
-----------------*/

.ticker-panel-help-content>img {
    margin-left: 15px;
}


/*----------------
ticker panel - version
-----------------*/

#ticker-version {
    background: #000;
    min-width: 30px;
    height: 100%;
    margin-left: auto;
    position: relative;
}

#ticker-version p {
    color: #fff;
    font-size: 9px;
    width: 190px;
    height: 30px;
    transform: rotate(-90deg);
    position: absolute;
    bottom: 80px;
    left: -80px;
    z-index: 6;
    padding: 2px 10px;
}

.lightTheme #ticker-version {
    background: #fff;
}

.lightTheme #ticker-version p {
    color: #000;
}


/*----------------
ticker panel - areadata
-----------------*/

#ticker-panel-areadata {
    width: 100%;
    height: 100%;
    padding: 0.5em 1em;
    display: flex;
    justify-content: center;
    position: relative;
}

@media screen and (max-width: 768px) {
    #ticker-panel-areadata {
        width: 1150px;
    }
}

.banner #ticker-panel-areadata {
    width: 1150px;
}

#ticker-panel-areadata>a {
    display: block;
    width: 28px;
    height: 28px;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    position: absolute;
    top: 0.5em;
    right: 0.8em;
    line-height: 1;
    z-index: 8;
}

#ticker-panel-areadata>div {
    overflow: hidden;
}

#ticker-panel-areadata button {
    border: none;
    outline: none;
    background: #fff;
    color: #000;
    cursor: pointer;
}


/*----------------
ticker panel - areadata - options
-----------------*/

#ticker-panel-areadata #area-options {
    width: 47px;
    background: #AB9454;
    border-radius: 10px 0px 0px 10px;
    padding-right: 20px;
    margin-right: -20px;
    box-sizing: content-box;
    /* flex: 0.2 !important; */
    position: relative;
    z-index: 0;
}

#ticker-panel-areadata #area-options p {
    background: none;
    transform: rotate(-90deg);
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    position: absolute;
    left: -64px;
    top: 63px;
    width: 174px;
    height: 47px;
    text-align: center;
    padding: 13px 10px;
    color: #fff;
}

#ticker-panel-areadata #area-options p a {
    color: #fff;
    text-decoration: none;
}


/*----------------
ticker panel - areadata - map
-----------------*/

#area-map {
    width: 176px;
    background: #fff;
    border-radius: 10px 0px 0px 10px;
    padding-right: 20px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .2);
    box-sizing: content-box;
    position: relative;
    z-index: 1;
}


/*----------------
ticker panel - areadata - chart
-----------------*/

#chartDashboard {
    width: 670px;
    height: 100%;
    background: #fff;
    padding: 0 0.5em 0.5em;
    border-radius: 10px;
    flex: 4 !important;
    margin-left: -20px;
    position: relative;
    z-index: 6;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .2);
}

#DateRangeFilter {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    position: absolute;
    bottom: 0.8em;
    right: 0.5em;
    z-index: 7;
}

.google-visualization-controls-rangefilter-thumblabel {
    color: #000 !important;
}

.google-visualization-controls-slider-horizontal {
    width: 100px !important;
    outline: none !important;
}

.google-visualization-controls-slider-handle {
    background-color: transparent !important;
}

.google-visualization-controls-slider-thumb {
    background-color: #AB9454 !important;
    border: none !important;
}

#ComboChart {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    #ComboChart {
        width: 670px;
    }
}

#chartDashboard h4 {
    position: absolute;
    bottom: 0.2em;
    font-size: 12px;
    font-weight: 700;
    left: 1em;
}


/*----------------
ticker panel - bing map overrides
-----------------*/

.MicrosoftMap #MicrosoftNav.NavBar_Container {
    top: auto !important;
    right: 10px !important;
    bottom: 6px !important;
}

.MicrosoftMap #MicrosoftNav.NavBar_Container .NavBar_Button {
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 5px !important;
}

.bm_bottomLeftOverlay,
.bm_bottomRightOverlay {
    display: none !important;
}


/*----------------
ticker panel - areadata - alt
-----------------*/

#ticker-panel-areadata #area-alt {
    width: 47px;
    background: #AB9454;
    border-radius: 0px 10px 10px 0px;
    padding-left: 20px;
    margin-left: -20px;
    box-sizing: content-box;
    position: relative;
    z-index: 0;
}

#ticker-panel-areadata #area-alt p {
    background: none;
    transform: rotate(-90deg);
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    position: absolute;
    left: -43px;
    top: 64px;
    width: 174px;
    height: 47px;
    text-align: center;
    padding: 14px 0;
    line-height: 1;
}

#ticker-panel-areadata #area-alt p a {
    color: #fff;
    text-decoration: none;
}


/*----------------
ticker footer
-----------------*/

#ticker-footer {
    background: #fff;
    padding: 5px 0;
    display: none;
    position: relative;
}

#ticker-footer p {
    font-size: 10px;
    line-height: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4.9px;
    color: #c3ac6b;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    #ticker-footer {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.banner #ticker-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}