:root {
  --darkest-gray: #4b5055;
  --medium-light-gray: #d2d4d7;
  --medium-gray: #a4a4a4;
  --black: #000;
  --bright-blue: #4a90e2;
  --light-gray: #d8d8d8;
  --dg1: #9e80e5;
  --dg2: #8488ef;
  --dg3: #6866e0;
  --fancy-gradient: linear-gradient(135deg, #9e80e5, #8488ef, #6866e0);
}

.popover__container {
  background-color: #fff;
  border-radius: 4px;
  padding: 15px 0;
  z-index: 1;
  box-shadow: 1px 0 10px rgba(0, 0, 0, 0.15);
}
.popover__container--use-sheet {
  z-index: 100000 !important;
}
.popover__container--fade-enter {
  opacity: 0;
}
.popover__container--fade-enter-active {
  transition: opacity 0.3s ease;
}
.popover__container--fade-enter-active, .popover__container--fade-enter-done {
  opacity: 1;
}
.popover__container--fade-exit-active {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.popover__arrow {
  position: absolute;
  width: 10px;
}
.popover__arrow:after {
  content: "";
  position: absolute;
}
[data-popper-placement^=bottom] .popover__arrow {
  top: 0;
}
[data-popper-placement^=top] .popover__arrow {
  bottom: 0;
}
[data-popper-placement^=bottom] .popover__arrow:after, [data-popper-placement^=top] .popover__arrow:after {
  left: -5px;
}
[data-popper-placement^=bottom] .popover__arrow:after {
  top: -9px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  filter: drop-shadow(0px -3px 3px rgba(0, 0, 0, 0.1));
}
[data-popper-placement^=top] .popover__arrow:after {
  left: 5px;
  bottom: -9px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
}
[data-popper-placement^=left] .popover__arrow {
  right: -9px;
}
[data-popper-placement^=right] .popover__arrow {
  left: -9px;
}
[data-popper-placement^=left] .popover__arrow:after, [data-popper-placement^=right] .popover__arrow:after {
  top: -10px;
  filter: drop-shadow(0px 3px 0px rgba(0, 0, 0, 0.1));
}
[data-popper-placement^=left] .popover__arrow:after {
  border-left: 10px solid #fff;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
}
[data-popper-placement^=right] .popover__arrow:after {
  top: -10px;
  border-right: 10px solid #fff;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
}
.popover__trigger {
  align-self: flex-start;
  display: inline-block;
}
.popover__trigger.popover__trigger--block {
  display: block;
}
.popover__trigger *[disabled] {
  pointer-events: none;
}
.popover__trigger--nowrap {
  display: inline;
  white-space: nowrap;
}
.popover__sheet {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99999;
}
.popover__sheet.popover__sheet--absolute {
  position: absolute;
}

.popover__tooltip {
  font-weight: 400;
  line-height: 1.4em;
  font-size: 1.2rem;
  text-transform: none;
  color: var(--darkest-gray);
  max-width: 500px;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  padding: 16px 18px 16px 22px;
  z-index: 1051;
}
.popover__tooltip p {
  margin-bottom: 8px;
  margin-top: 0;
}
.popover__tooltip p:last-child {
  margin-bottom: 0;
}
.popover__tooltip ul {
  padding-left: 17px;
}
.popover__tooltip ul:not(:first-child) {
  margin-top: 8px;
}
.popover__tooltip ul li {
  position: relative;
  margin-bottom: 8px;
}
.popover__tooltip ul li:last-child {
  margin-bottom: 0;
}
.popover__tooltip ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--fancy-gradient);
  border-radius: 50%;
  position: absolute;
  left: -16px;
  top: 3px;
}

.popover-modal {
  padding: 24px 36px;
  min-width: 500px;
}
.popover-modal__scroll-wrapper {
  display: flex;
}
.popover-modal__scroll-wrapper > div[data-simplebar] {
  flex-grow: 1;
}
.popover-modal__title {
  font-size: 20px;
  line-height: 22px;
  text-transform: capitalize;
}
.popover-modal__sheet {
  background-color: rgba(var(--black), 0.2);
}
.popover-modal .bold,
.popover-modal strong {
  font-weight: bold;
}
.popover-modal hr {
  margin: 10px 0;
  height: 1px;
}
.popover-modal p {
  margin: 10px 0 0;
}
.popover-modal.popover__tooltip ul li::before {
  background: var(--bright-blue);
}
.popover-modal__close-icon {
  position: absolute;
  box-sizing: content-box;
  top: 20px;
  right: 20px;
  padding: 5px;
  font-size: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-weight: 300;
  transition: color 0.2s;
  color: var(--medium-light-gray);
  z-index: 999;
}
.popover-modal__close-icon:hover {
  color: var(--medium-gray);
}
.popover-modal__close-icon i {
  top: 10px;
  right: 10px;
}

.ReactTable{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border:1px solid rgba(0,0,0,0.1);}.ReactTable *{box-sizing:border-box}.ReactTable .rt-table{-webkit-box-flex:1;-ms-flex:auto 1;flex:auto 1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%;border-collapse:collapse;overflow:auto}.ReactTable .rt-thead{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.ReactTable .rt-thead.-headerGroups{background:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.05)}.ReactTable .rt-thead.-filters{border-bottom:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-thead.-filters input,.ReactTable .rt-thead.-filters select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .rt-thead.-filters .rt-th{border-right:1px solid rgba(0,0,0,0.02)}.ReactTable .rt-thead.-header{box-shadow:0 2px 15px 0 rgba(0,0,0,0.15)}.ReactTable .rt-thead .rt-tr{text-align:center}.ReactTable .rt-thead .rt-th,.ReactTable .rt-thead .rt-td{padding:5px 5px;line-height:normal;position:relative;border-right:1px solid rgba(0,0,0,0.05);transition:box-shadow .3s cubic-bezier(.175,.885,.32,1.275);box-shadow:inset 0 0 0 0 transparent;}.ReactTable .rt-thead .rt-th.-sort-asc,.ReactTable .rt-thead .rt-td.-sort-asc{box-shadow:inset 0 3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-sort-desc,.ReactTable .rt-thead .rt-td.-sort-desc{box-shadow:inset 0 -3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-cursor-pointer,.ReactTable .rt-thead .rt-td.-cursor-pointer{cursor:pointer}.ReactTable .rt-thead .rt-th:last-child,.ReactTable .rt-thead .rt-td:last-child{border-right:0}.ReactTable .rt-thead .rt-th:focus{outline-width:0}.ReactTable .rt-thead .rt-resizable-header{overflow:visible;}.ReactTable .rt-thead .rt-resizable-header:last-child{overflow:hidden}.ReactTable .rt-thead .rt-resizable-header-content{overflow:hidden;text-overflow:ellipsis}.ReactTable .rt-thead .rt-header-pivot{border-right-color:#f7f7f7}.ReactTable .rt-thead .rt-header-pivot:after,.ReactTable .rt-thead .rt-header-pivot:before{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.ReactTable .rt-thead .rt-header-pivot:after{border-color:rgba(255,255,255,0);border-left-color:#fff;border-width:8px;margin-top:-8px}.ReactTable .rt-thead .rt-header-pivot:before{border-color:rgba(102,102,102,0);border-left-color:#f7f7f7;border-width:10px;margin-top:-10px}.ReactTable .rt-tbody{-webkit-box-flex:99999;-ms-flex:99999 1 auto;flex:99999 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow:auto;}.ReactTable .rt-tbody .rt-tr-group{border-bottom:solid 1px rgba(0,0,0,0.05);}.ReactTable .rt-tbody .rt-tr-group:last-child{border-bottom:0}.ReactTable .rt-tbody .rt-td{border-right:1px solid rgba(0,0,0,0.02);}.ReactTable .rt-tbody .rt-td:last-child{border-right:0}.ReactTable .rt-tbody .rt-expandable{cursor:pointer;text-overflow:clip}.ReactTable .rt-tr-group{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.ReactTable .rt-tr{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.ReactTable .rt-th,.ReactTable .rt-td{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;white-space:nowrap;text-overflow:ellipsis;padding:7px 5px;overflow:hidden;transition:.3s ease;transition-property:width,min-width,padding,opacity;}.ReactTable .rt-th.-hidden,.ReactTable .rt-td.-hidden{width:0 !important;min-width:0 !important;padding:0 !important;border:0 !important;opacity:0 !important}.ReactTable .rt-expander{display:inline-block;position:relative;margin:0;color:transparent;margin:0 10px;}.ReactTable .rt-expander:after{content:'';position:absolute;width:0;height:0;top:50%;left:50%;-webkit-transform:translate(-50%,-50%) rotate(-90deg);transform:translate(-50%,-50%) rotate(-90deg);border-left:5.04px solid transparent;border-right:5.04px solid transparent;border-top:7px solid rgba(0,0,0,0.8);transition:all .3s cubic-bezier(.175,.885,.32,1.275);cursor:pointer}.ReactTable .rt-expander.-open:after{-webkit-transform:translate(-50%,-50%) rotate(0);transform:translate(-50%,-50%) rotate(0)}.ReactTable .rt-resizer{display:inline-block;position:absolute;width:36px;top:0;bottom:0;right:-18px;cursor:col-resize;z-index:10}.ReactTable .rt-tfoot{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;box-shadow:0 0 15px 0 rgba(0,0,0,0.15);}.ReactTable .rt-tfoot .rt-td{border-right:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-tfoot .rt-td:last-child{border-right:0}.ReactTable.-striped .rt-tr.-odd{background:rgba(0,0,0,0.03)}.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover{background:rgba(0,0,0,0.05)}.ReactTable .-pagination{z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:3px;box-shadow:0 0 15px 0 rgba(0,0,0,0.1);border-top:2px solid rgba(0,0,0,0.1);}.ReactTable .-pagination input,.ReactTable .-pagination select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .-pagination .-btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:block;width:100%;height:100%;border:0;border-radius:3px;padding:6px;font-size:1em;color:rgba(0,0,0,0.6);background:rgba(0,0,0,0.1);transition:all .1s ease;cursor:pointer;outline-width:0;}.ReactTable .-pagination .-btn[disabled]{opacity:.5;cursor:default}.ReactTable .-pagination .-btn:not([disabled]):hover{background:rgba(0,0,0,0.3);color:#fff}.ReactTable .-pagination .-previous,.ReactTable .-pagination .-next{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center}.ReactTable .-pagination .-center{-webkit-box-flex:1.5;-ms-flex:1.5;flex:1.5;text-align:center;margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ReactTable .-pagination .-pageInfo{display:inline-block;margin:3px 10px;white-space:nowrap}.ReactTable .-pagination .-pageJump{display:inline-block;}.ReactTable .-pagination .-pageJump input{width:70px;text-align:center}.ReactTable .-pagination .-pageSizeOptions{margin:3px 10px}.ReactTable .rt-noData{display:block;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:1;pointer-events:none;padding:20px;color:rgba(0,0,0,0.5)}.ReactTable .-loading{display:block;position:absolute;left:0;right:0;top:0;bottom:0;background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:-1;opacity:0;pointer-events:none;}.ReactTable .-loading > div{position:absolute;display:block;text-align:center;width:100%;top:50%;left:0;font-size:15px;color:rgba(0,0,0,0.6);-webkit-transform:translateY(-52%);transform:translateY(-52%);transition:all .3s cubic-bezier(.25,.46,.45,.94)}.ReactTable .-loading.-active{opacity:1;z-index:2;pointer-events:all;}.ReactTable .-loading.-active > div{-webkit-transform:translateY(50%);transform:translateY(50%)}.ReactTable .rt-resizing .rt-th,.ReactTable .rt-resizing .rt-td{transition:none !important;cursor:col-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
/*!
 * 
 *         SimpleBar.js - v2.6.1
 *         Scrollbars, simpler.
 *         https://grsmto.github.io/simplebar/
 *         
 *         Made by Adrien Grsmto from a fork by Jonathan Nicol
 *         Under MIT License
 *       
 */
[data-simplebar] {
    position: relative;
    z-index: 0;
    overflow: hidden!important;
    max-height: inherit;
    -webkit-overflow-scrolling: touch; /* Trigger native scrolling for mobile, if not supported, plugin is used. */
}

[data-simplebar="init"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.simplebar-scroll-content {
    overflow-x: hidden!important;
    overflow-y: scroll;
    min-width: 100%!important;
    max-height: inherit!important;
    -webkit-box-sizing: content-box!important;
            box-sizing: content-box!important;
}

.simplebar-content {
    overflow-y: hidden!important;
    overflow-x: scroll;
    -webkit-box-sizing: border-box!important;
            box-sizing: border-box!important;
    min-height: 100%!important;
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 11px;
}

.simplebar-scrollbar {
    position: absolute;
    right: 2px;
    width: 7px;
    min-height: 10px;
}

.simplebar-scrollbar:before {
    position: absolute;
    content: "";
    background: black;
    border-radius: 7px;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.simplebar-track:hover .simplebar-scrollbar:before,
.simplebar-track .simplebar-scrollbar.visible:before {
    /* When hovered, remove all transitions from drag handle */
    opacity: 0.5;
    -webkit-transition: opacity 0 linear;
    transition: opacity 0 linear;
}

.simplebar-track.vertical {
    top: 0;
}

.simplebar-track.vertical .simplebar-scrollbar:before {
    top: 2px;
    bottom: 2px;
}

.simplebar-track.horizontal {
    left: 0;
    width: auto;
    height: 11px;
}

.simplebar-track.horizontal .simplebar-scrollbar:before {
    height: 100%;
    left: 2px;
    right: 2px;
}

.horizontal.simplebar-track .simplebar-scrollbar {
    right: auto;
    top: 2px;
    height: 7px;
    min-height: 0;
    min-width: 10px;
    width: auto;
}

:export{primaryColor:#4b5055;ltGrey:#d8d8d8;dkCoolGrey:#626c80;blue:#4578ec;blue100:#f4f8fe}body,html{-webkit-font-smoothing:antialiased}html{font-size:10px}body{font-size:1.2rem;font-family:"Open Sans",sans-serif;color:#4b5055;user-select:none}.tn-dev+.app-wrapper .tn-card,.tn-dev+.app-wrapper .tn-card-bordered,.tn-dev+.app-wrapper .tn-card-frameless,.tn-dev+.app-wrapper section{outline:1px dotted blue}html,body{width:100%;height:100%;max-width:100vw;display:flex;overflow:hidden}.fa,.fas,.far,.fal{font-size:1.4rem;padding:0 .5rem}.h3 .fa,.h3 .fas,.h3 .far,.h3 .fal{padding:0 1rem}#app{flex:1;transition:flex 400ms ease-in-out;max-width:100%;display:flex;height:100%}#app .app-wrapper{display:flex;flex-direction:column;flex:1;transition:flex 400ms ease-in-out;max-width:100%}#app .main-content{position:relative;display:flex;flex:1;transition:flex 400ms ease-in-out;overflow:hidden}.fallback-header{background-color:#132531;color:#fff;padding:0 2rem;display:flex;justify-content:space-between}.fallback-header .session-info{margin:auto 0}.filter-link{cursor:pointer}.filter-link.disabled,.filter-link.disabled .route-link,.filter-link.disabled .route-link span{cursor:initial}.route-link.disabled{cursor:initial}#main{overflow:hidden;z-index:0}.width-control{max-width:160rem;width:100%;margin:auto}.h1,.h2,h1,h2{margin:0;font-weight:400;letter-spacing:-0.07rem}.h1,h1{font-size:2.4rem;line-height:2.4rem}.h2,h2{font-size:2rem;line-height:2rem;letter-spacing:-0.07rem}.btn{padding:.6rem 1.5rem;font-size:1.1rem;font-weight:700;text-transform:uppercase}:active,:focus,a,a:active,a:focus{outline:0 !important}ol,ul{margin:0;padding:0;list-style-type:none}.section-grey{background-color:#fbfbfb;padding-top:4rem;padding-bottom:4rem}.section-grey-gradient{background:linear-gradient(#fbfbfb, #f4f4f4);padding-top:4rem;padding-bottom:4rem}section.section-paper{padding-top:4rem;margin-bottom:4rem}section.section-paper+.section-paper{margin-top:0}section.section-grey,section.section-grey-gradient{padding-top:4rem;padding-bottom:4rem}section.section-frameless{margin:0}section section{margin-top:4rem}section section:first-child,section section:first-child header{padding-top:0}section header.section-header{align-self:stretch;align-items:flex-end;display:flex;justify-content:space-between;margin-bottom:3rem}section header.section-header .h2{font-size:2.2rem;font-weight:400;text-transform:uppercase;padding-right:2rem;line-height:1em}section header.section-header .h2,section header.section-header .range-dates,section header.section-header .timestamp{line-height:2.2rem}section footer{margin-top:2rem;display:flex;justify-content:flex-end}section.section-grid{padding-left:0 !important;padding-right:0 !important;display:grid;grid-gap:2rem 0;grid-template-rows:[grid-start] auto [content-start] 1fr [content-end] auto [grid-end];grid-template-columns:[grid-start] minmax(8rem, auto) [content-start] minmax(auto, 160rem) [content-end] minmax(8rem, auto) [grid-end]}section.section-grid header.section-header{margin-bottom:0}section.section-grid footer{margin-top:0}section.section-grid header{grid-area:grid-start/content-start/content-start/content-end}section.section-grid article{grid-area:content}section.section-grid footer{grid-area:content-end/content-start/grid-end/content-end}@media only screen and (max-width: 1200px){section.section-grid{grid-template-columns:[grid-start] minmax(4rem, auto) [content-start] minmax(auto, 160rem) [content-end] minmax(4rem, auto) [grid-end]}}@media only screen and (max-width: 600px){section.section-grid{grid-template-columns:[grid-start] minmax(2rem, auto) [content-start] minmax(auto, 160rem) [content-end] minmax(2rem, auto) [grid-end]}}@media only screen and (max-width: 480px){section.section-grid article{grid-area:content-start/grid-start/content-end/grid-end}}.cards-grid{display:grid;grid-gap:6rem 4rem;grid-template-columns:repeat(3, minmax(0, 1fr))}@media only screen and (max-width: 800px){.cards-grid{grid-template-columns:1fr}}@media only screen and (max-width: 600px){.cards-grid{grid-gap:4rem}.primary-content .cards-grid{margin-left:auto;margin-right:auto}}@media only screen and (max-width: 1200px){.cards-grid{grid-template-columns:repeat(2, 1fr);margin-left:0;margin-right:0}}@media only screen and (max-width: 1200px)and (max-width: 800px){.cards-grid{grid-template-columns:1fr}}@media only screen and (max-width: 1200px)and (max-width: 600px){.cards-grid{grid-gap:4rem}.primary-content .cards-grid{margin-left:auto;margin-right:auto}}.cards-grid.cards-grid-2-col{grid-template-columns:repeat(2, 1fr)}@media only screen and (max-width: 800px){.cards-grid.cards-grid-2-col{grid-template-columns:1fr}}@media only screen and (max-width: 600px){.cards-grid.cards-grid-2-col{grid-gap:4rem}.primary-content .cards-grid.cards-grid-2-col{margin-left:auto;margin-right:auto}}.tn-table{width:100%}.tn-tbody{display:flex;flex:1;flex-direction:column}.tn-tr{min-height:4rem;display:flex;align-items:center;padding:1rem 0}.tn-tr:not(:last-child){border-bottom:1px solid rgba(75,80,85,.1)}.tn-td{flex:1}.tn-col-1{width:8.3333333333%;flex:1 0 0}.tn-col-2{width:16.6666666667%;flex:2 0 0}.tn-col-3{width:25%;flex:3 0 0}.tn-col-4{width:33.3333333333%;flex:4 0 0}.tn-col-5{width:41.6666666667%;flex:5 0 0}.tn-col-6{width:50%;flex:6 0 0}.tn-col-7{width:58.3333333333%;flex:7 0 0}.tn-col-8{width:66.6666666667%;flex:8 0 0}.tn-col-9{width:75%;flex:9 0 0}.tn-col-10{width:83.3333333333%;flex:10 0 0}.tn-col-11{width:91.6666666667%;flex:11 0 0}.tn-col-12{width:100%;flex:12 0 0}@media(min-width: 576px){.tn-col-sm-1{width:8.3333333333%;flex:1 0 0}}@media(min-width: 576px){.tn-col-sm-2{width:16.6666666667%;flex:2 0 0}}@media(min-width: 576px){.tn-col-sm-3{width:25%;flex:3 0 0}}@media(min-width: 576px){.tn-col-sm-4{width:33.3333333333%;flex:4 0 0}}@media(min-width: 576px){.tn-col-sm-5{width:41.6666666667%;flex:5 0 0}}@media(min-width: 576px){.tn-col-sm-6{width:50%;flex:6 0 0}}@media(min-width: 576px){.tn-col-sm-7{width:58.3333333333%;flex:7 0 0}}@media(min-width: 576px){.tn-col-sm-8{width:66.6666666667%;flex:8 0 0}}@media(min-width: 576px){.tn-col-sm-9{width:75%;flex:9 0 0}}@media(min-width: 576px){.tn-col-sm-10{width:83.3333333333%;flex:10 0 0}}@media(min-width: 576px){.tn-col-sm-11{width:91.6666666667%;flex:11 0 0}}@media(min-width: 576px){.tn-col-sm-12{width:100%;flex:12 0 0}}@media(min-width: 768px){.tn-col-md-1{width:8.3333333333%;flex:1 0 0}}@media(min-width: 768px){.tn-col-md-2{width:16.6666666667%;flex:2 0 0}}@media(min-width: 768px){.tn-col-md-3{width:25%;flex:3 0 0}}@media(min-width: 768px){.tn-col-md-4{width:33.3333333333%;flex:4 0 0}}@media(min-width: 768px){.tn-col-md-5{width:41.6666666667%;flex:5 0 0}}@media(min-width: 768px){.tn-col-md-6{width:50%;flex:6 0 0}}@media(min-width: 768px){.tn-col-md-7{width:58.3333333333%;flex:7 0 0}}@media(min-width: 768px){.tn-col-md-8{width:66.6666666667%;flex:8 0 0}}@media(min-width: 768px){.tn-col-md-9{width:75%;flex:9 0 0}}@media(min-width: 768px){.tn-col-md-10{width:83.3333333333%;flex:10 0 0}}@media(min-width: 768px){.tn-col-md-11{width:91.6666666667%;flex:11 0 0}}@media(min-width: 768px){.tn-col-md-12{width:100%;flex:12 0 0}}@media(min-width: 992px){.tn-col-lg-1{width:8.3333333333%;flex:1 0 0}}@media(min-width: 992px){.tn-col-lg-2{width:16.6666666667%;flex:2 0 0}}@media(min-width: 992px){.tn-col-lg-3{width:25%;flex:3 0 0}}@media(min-width: 992px){.tn-col-lg-4{width:33.3333333333%;flex:4 0 0}}@media(min-width: 992px){.tn-col-lg-5{width:41.6666666667%;flex:5 0 0}}@media(min-width: 992px){.tn-col-lg-6{width:50%;flex:6 0 0}}@media(min-width: 992px){.tn-col-lg-7{width:58.3333333333%;flex:7 0 0}}@media(min-width: 992px){.tn-col-lg-8{width:66.6666666667%;flex:8 0 0}}@media(min-width: 992px){.tn-col-lg-9{width:75%;flex:9 0 0}}@media(min-width: 992px){.tn-col-lg-10{width:83.3333333333%;flex:10 0 0}}@media(min-width: 992px){.tn-col-lg-11{width:91.6666666667%;flex:11 0 0}}@media(min-width: 992px){.tn-col-lg-12{width:100%;flex:12 0 0}}@media(min-width: 1200px){.tn-col-xl-1{width:8.3333333333%;flex:1 0 0}}@media(min-width: 1200px){.tn-col-xl-2{width:16.6666666667%;flex:2 0 0}}@media(min-width: 1200px){.tn-col-xl-3{width:25%;flex:3 0 0}}@media(min-width: 1200px){.tn-col-xl-4{width:33.3333333333%;flex:4 0 0}}@media(min-width: 1200px){.tn-col-xl-5{width:41.6666666667%;flex:5 0 0}}@media(min-width: 1200px){.tn-col-xl-6{width:50%;flex:6 0 0}}@media(min-width: 1200px){.tn-col-xl-7{width:58.3333333333%;flex:7 0 0}}@media(min-width: 1200px){.tn-col-xl-8{width:66.6666666667%;flex:8 0 0}}@media(min-width: 1200px){.tn-col-xl-9{width:75%;flex:9 0 0}}@media(min-width: 1200px){.tn-col-xl-10{width:83.3333333333%;flex:10 0 0}}@media(min-width: 1200px){.tn-col-xl-11{width:91.6666666667%;flex:11 0 0}}@media(min-width: 1200px){.tn-col-xl-12{width:100%;flex:12 0 0}}@media(min-width: 1400px){.tn-col-xxl-1{width:8.3333333333%;flex:1 0 0}}@media(min-width: 1400px){.tn-col-xxl-2{width:16.6666666667%;flex:2 0 0}}@media(min-width: 1400px){.tn-col-xxl-3{width:25%;flex:3 0 0}}@media(min-width: 1400px){.tn-col-xxl-4{width:33.3333333333%;flex:4 0 0}}@media(min-width: 1400px){.tn-col-xxl-5{width:41.6666666667%;flex:5 0 0}}@media(min-width: 1400px){.tn-col-xxl-6{width:50%;flex:6 0 0}}@media(min-width: 1400px){.tn-col-xxl-7{width:58.3333333333%;flex:7 0 0}}@media(min-width: 1400px){.tn-col-xxl-8{width:66.6666666667%;flex:8 0 0}}@media(min-width: 1400px){.tn-col-xxl-9{width:75%;flex:9 0 0}}@media(min-width: 1400px){.tn-col-xxl-10{width:83.3333333333%;flex:10 0 0}}@media(min-width: 1400px){.tn-col-xxl-11{width:91.6666666667%;flex:11 0 0}}@media(min-width: 1400px){.tn-col-xxl-12{width:100%;flex:12 0 0}}.tn-table .pagination-bottom{display:flex;justify-content:flex-end;padding:2rem 0 0}.tn-table.tn-table-striped .rt-table .rt-tr{height:initial;min-height:4rem}.tn-table.tn-table-striped .rt-table .rt-tr-group{min-height:6rem;border-bottom:none}.tn-table.tn-table-striped .rt-table .rt-tr-group:nth-child(odd){background-color:#f4f4f4}.tn-table.tn-table-striped .rt-table .rt-td,.tn-table.tn-table-striped .rt-table .rt-th{display:flex;align-items:center;justify-content:flex-start;white-space:normal;text-align:left;padding:1rem 2rem}.tn-table.tn-table-striped .rt-table .rt-td:first-child,.tn-table.tn-table-striped .rt-table .rt-th:first-child{padding-left:2rem !important}.notification-message{display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;flex:1}.notification-message .error-msg,.notification-message .primary-msg{margin:2rem 0}.notification-message .primary-msg{border-width:.5rem;border-style:solid;background:none}.notification-message .pre-msg{z-index:1}.notification-message .secondary-msg{max-width:50%;line-height:1.5em;margin-bottom:2rem;min-width:500px}.notification-message .secondary-msg a{color:#4578ec}@media only screen and (max-width: 480px){.notification-message{margin-bottom:5vh;max-width:100vw}.notification-message .primary-msg{max-width:75%;border:none;padding:0}.notification-message .secondary-msg{display:flex;flex-direction:column}}*{-moz-osx-font-smoothing:grayscale}#main a{color:inherit}#main a:focus,#main a:hover{color:inherit;opacity:1;text-decoration:none}p{font-size:1.2rem;font-weight:initial;text-transform:initial;margin:1rem 0}.label-lg,.badge,.blue-pill,.ReactTable .rt-th{font-weight:700;color:#4b5055;text-transform:uppercase;font-size:1.2rem}.label-md{font-weight:700;color:#4b5055;text-transform:uppercase;font-size:1.1rem}.label-sm,#territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data{font-weight:700;color:#4b5055;text-transform:uppercase;font-size:1rem}.label-lg.label-600,.label-600.badge,.label-600.blue-pill,.ReactTable .rt-th,.label-md.label-600,.label-sm.label-600,#territories-selector-modal .tn-select.territories-selector .tn-select__option .label-600.option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .ReactTable .option-data.rt-th,.ReactTable #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data.rt-th,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .label-600.option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .ReactTable .option-data.rt-th,.ReactTable section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data.rt-th{font-weight:600}.text-strong,.tn-card .totals-table .rt-tfoot,.tn-card-frameless .totals-table .rt-tfoot,.tn-card-bordered .totals-table .rt-tfoot{font-weight:600}.text-bold{font-weight:800}.emphasis{font-style:italic}.text-upper{text-transform:uppercase}.text-reverse,.text-reverse:hover{color:#fff}.text-feature{color:#4578ec}h1,.h1,h2,.h2,h3,.h3,h4,.h4{letter-spacing:initial;line-height:initial}.h1{padding-bottom:2rem}h2,.h2{font-size:1.8rem;line-height:initial;white-space:initial}h3,.h3{font-size:1.4rem;margin:.3rem 0}h4,.h4{font-weight:400;font-size:1.2rem;letter-spacing:initial}.small-caps{font-size:1.1rem;text-transform:uppercase}.muted-text{opacity:.75}.gradient-text{display:inline-block;color:#4578ec;background:#4578ec;background:linear-gradient(108.9deg, #9055f7 0%, #4578ec 71.63%, #4578ec 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:rgba(0,0,0,0)}.gradient-text-link.gradient-text:hover{background:#4578ec;background:linear-gradient(108.9deg, #7f36fe 0%, #117cec 71.63%, #117cec 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:rgba(0,0,0,0)}@media only screen and (max-width: 480px){h1,.h1{font-size:2rem}}@media only screen and (max-width: 480px){h2,.h2{font-size:1.6rem}}@media only screen and (max-width: 480px){input{font-size:16px !important}}.tn-title{font-size:2rem}.timestamp{font-weight:600;margin-left:auto}.font-small{font-size:1rem}.font-large{font-size:1.4rem}#main a.btn{opacity:1}.btn,.btn:hover,.btn:focus,.btn:active,.btn:focus:hover,.btn:active:hover{justify-content:center;align-items:center;display:flex;border-radius:6px;border:1px solid #d8d8d8;cursor:pointer;color:#4b5055;font-size:1.1rem;position:relative;height:4rem;padding:0 2rem;background:rgba(0,0,0,0);transition:all 100ms;text-decoration:none}.btn.reverse .fas,.btn:hover.reverse .fas,.btn:focus.reverse .fas,.btn:active.reverse .fas,.btn:focus:hover.reverse .fas,.btn:active:hover.reverse .fas{color:#fff;padding:0 .5rem}.btn.reverse,.btn.reverse:before,.btn.reverse:after{background:none}.btn-info{border:none;text-transform:uppercase;padding:1rem 2rem !important;font-weight:800;font-size:12px !important;min-width:15rem;flex:0 0 auto}.btn-info,.btn-info:hover,.btn-info:active,.btn-info:focus,.btn-info:hover:focus,.btn-info:hover:active{box-shadow:none;border:none}.btn-primary-dk,.btn-primary-dk:hover,.btn-primary-dk:active,.btn-primary-dk:focus,.btn-primary-dk:hover:focus,.btn-primary-dk:hover:active{color:#fff;background:#4578ec;border:none}.btn-frameless,.btn-frameless:hover,.btn-frameless:active,.btn-frameless:focus,.btn-frameless:hover:focus,.btn-frameless:hover:active{padding:0;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);box-shadow:none}.btn-circle,.btn-circle:hover,.btn-circle:active,.btn-circle:focus,.btn-circle:hover:focus,.btn-circle:hover:active{padding:0;border-radius:3rem;height:3rem;width:3rem}.btn-icon{font-size:1.6rem}.btn-link.btn-default,.btn-link.btn-default:hover,.btn-link.btn-default:active,.btn-link.btn-default:focus,.btn-link.btn-default:hover:focus,.btn-link.btn-default:hover:active{padding:0;margin:0;border:none;display:block;height:initial;line-height:initial;background-color:rgba(0,0,0,0)}.btn-link.btn-default .btn-text,.btn-link.btn-default:hover .btn-text,.btn-link.btn-default:active .btn-text,.btn-link.btn-default:focus .btn-text,.btn-link.btn-default:hover:focus .btn-text,.btn-link.btn-default:hover:active .btn-text{padding:0 .5rem}.btn-search{border-radius:6px}.btn-search,.btn-search:hover,.btn-search:active,.btn-search:focus,.btn-search:hover:focus,.btn-search:hover:active{background-color:#f4f4f4;border:none}.btn-search .btn-text{color:#4b5055;font-weight:700}.btn-default:hover,.btn-default:focus:hover,.btn-default:active:hover{background-color:inherit}.btn-default.reverse,.btn-default.reverse:active,.btn-default.reverse:focus,.btn-default.reverse:active:focus{background-color:rgba(0,0,0,0);border-color:#fff;color:#fff}.btn-default:active,.btn-default:focus,.btn-default:active:focus,.open>.btn-default.dropdown-toggle,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle:hover{background:rgba(0,0,0,0);box-shadow:initial}.btn-default:hover,.btn-default:hover:focus,.btn-default:hover:active{border-color:#787171}.dropdown-button:after{content:"";background:#4578ec;background:linear-gradient(108.9deg, #9055f7 0%, #4578ec 71.63%, #4578ec 100%);width:100%;height:100%;position:absolute;top:0;z-index:0;border-radius:7px}.dropdown-button{color:#4b5055;background-color:#fff;border-radius:6px}.dropdown-button .selected{background-color:#f4f8fe}.dropdown-button>.dropdown-toggle{font-weight:600;min-width:20rem;height:4rem;border:none;color:#4b5055;font-size:1.2rem;text-transform:capitalize;display:flex;justify-content:space-between;z-index:1;background-color:#fff}.dropdown-button>.dropdown-toggle:hover,.dropdown-button>.dropdown-toggle:visited,.dropdown-button>.dropdown-toggle:active,.dropdown-button>.dropdown-toggle:focus{color:#4b5055;font-size:1.2rem;border:none;display:flex;justify-content:space-between;background-color:#fff}.dropdown-button .dropdown-menu{min-width:20rem;border-bottom-left-radius:6px;border-bottom-right-radius:6px;padding:1.5rem 0;margin-top:.2rem;margin-left:.2rem}.dropdown-button .dropdown-menu li a{color:#4b5055;font-size:1.2rem}.dropdown-button .dropdown-menu li a:hover{background-color:#c6dbf6}.btn-help-link{display:inline-flex;justify-content:center;align-items:center;padding:0 1.5rem;cursor:pointer}.btn-help-link.type-rounded-light,.btn-help-link.type-rounded-dark{border-radius:1.4rem}.btn-help-link.type-rounded-light{font-weight:800;background:rgba(255,255,255,.1)}.btn-help-link.type-rounded-light:hover{background:rgba(255,255,255,.15)}.btn-help-link.type-text{display:block;padding-left:0;padding-right:0}.btn-help-link.type-rounded-dark{background:linear-gradient(135deg, #eff2ff 0%, #e1e7ff 99.91%);display:block;text-align:center;height:100%}.btn-help-link.type-rounded-dark .h3{line-height:3rem;margin:0}.btn-help-link .h3{font-weight:600;font-size:1.3rem;color:#fff}.btn-help-link .fa,.btn-help-link .info-icon{font-size:1.1rem;color:#fff;padding:0;padding-left:.5rem;position:relative}.btn-help-link .fa{bottom:.1rem}.btn-help-link .info-icon{top:.1rem}.btn-group{display:inline-flex}.btn-group .btn{opacity:.9;white-space:normal}.btn-group .btn:hover,.btn-group .btn:focus,.btn-group .btn:active{opacity:1}.btn-group .btn,.btn-group .btn:hover,.btn-group .btn:active,.btn-group .btn:focus,.btn-group .btn:hover:focus,.btn-group .btn:hover:active{justify-content:center;align-items:center;display:flex;align-items:center;padding:1.5rem;text-align:center}.btn-group .btn:not(:last-child):after{content:"";width:1px;height:100%;background:#d8d8d8;position:absolute;right:-1px}.btn-group .btn.checked{color:#4578ec}.btn-group .btn.unchecked{opacity:.7}.btn-group .btn.unchecked:hover{opacity:.8}.btn-group .btn.btn-frameless,.btn-group .btn.btn-frameless:hover,.btn-group .btn.btn-frameless:active,.btn-group .btn.btn-frameless:focus,.btn-group .btn.btn-frameless:hover:focus,.btn-group .btn.btn-frameless:hover:active{padding-top:0;padding-bottom:0;height:auto;min-height:2rem}.btn-group .btn.btn-default{border-color:rgba(0,0,0,0);background-color:#f4f4f4}.btn-group .btn.btn-default:not(:last-child){border-right-color:#fff}#streams-section .btn-group .btn.checked,#youTube-section .btn-group .btn.checked,#tiktok-section .btn-group .btn.checked,#snapchat-section .btn-group .btn.checked{color:#4a90e2}.btn-group-stretch{flex:1}.btn-group-stretch .btn{flex:1}.btn-confirm{justify-content:center;align-items:center;display:flex;border-radius:6px;border:1px solid #d8d8d8}.btn-confirm{font-size:11px;font-weight:bold;min-width:152px;height:39px;padding-left:1em;padding-right:1em}.btn-confirm,.btn-confirm:active,.btn-confirm[disabled]{background:linear-gradient(135deg, #9e80e5, #8488ef, #6866e0);color:#fff;border:none}.btn-confirm:not([disabled]):hover{background:linear-gradient(135deg, #6f59c8, #4f55c0, #3740b2);color:#fff}.view-selection{display:flex;justify-content:flex-end;padding-right:.5rem}.view-selection .tn-view-icon{display:flex;align-items:center;padding:1rem;background-color:rgba(0,0,0,0);color:#787171;cursor:pointer}.view-selection .tn-view-selected{background-color:rgba(0,0,0,0);color:#4578ec}.tn-tooltip.no-wrap+.tooltip{white-space:nowrap}.tn-tooltip.no-wrap+.tooltip .tooltip-inner{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.tn-tooltip.tn-tooltip-paper+.tooltip .tooltip-inner{background-color:#fff}.tn-tooltip.tn-tooltip-paper+.tooltip.left .tooltip-arrow{border-left-color:#fff}.tn-tooltip.tn-tooltip-paper+.tooltip.right .tooltip-arrow{border-right-color:#fff}.tn-tooltip.tn-tooltip-paper+.tooltip.top .tooltip-arrow{border-top-color:#fff}.tn-tooltip.tn-tooltip-paper+.tooltip.bottom .tooltip-arrow{border-bottom-color:#fff}.tn-tooltip.tn-tooltip-dark+.tooltip .tooltip-inner{background-color:#4b5055;color:#fff}.tn-tooltip.tn-tooltip-dark+.tooltip.left .tooltip-arrow{border-left-color:#4b5055}.tn-tooltip.tn-tooltip-dark+.tooltip.right .tooltip-arrow{border-right-color:#4b5055}.tn-tooltip.tn-tooltip-dark+.tooltip.top .tooltip-arrow{border-top-color:#4b5055}.tn-tooltip.tn-tooltip-dark+.tooltip.bottom .tooltip-arrow{border-bottom-color:#4b5055}.tn-tooltip.tooltip-small+.tooltip .tooltip-inner{border-radius:3px;font-size:.9rem;padding:.75rem 1rem}.tn-tooltip+.tooltip{z-index:1;max-width:30rem}.tn-tooltip+.tooltip.left .tooltip-arrow{border-left-color:#ededed}.tn-tooltip+.tooltip.right .tooltip-arrow{border-right-color:#ededed}.tn-tooltip+.tooltip.top .tooltip-arrow{border-top-color:#ededed}.tn-tooltip+.tooltip.bottom .tooltip-arrow{border-bottom-color:#ededed}.tn-tooltip+.tooltip .tooltip-inner{padding-left:2rem;padding-right:2rem;box-shadow:0 1px 2px 1px rgba(75,80,85,.1),0px 1rem .5rem -0.5rem rgba(93,102,162,.1);border-radius:4px;background-color:#ededed;color:#4b5055;font-size:1rem;line-height:1.4rem}@media only screen and (max-width: 800px){.tn-tooltip+.tooltip{max-width:15rem}}@media only screen and (max-width: 375px){.tn-tooltip+.tooltip.top .tooltip-inner,.tn-tooltip+.tooltip.bottom .tooltip-inner{margin-left:1rem;margin-right:1rem}}#snapchat-section .tooltip-before-label{font-size:1.3rem}#snapchat-section .tooltip-label{font-size:1.4rem}#snapchat-section .tooltip-inner{max-width:unset;padding:14px 20px}#snapchat-section .tooltip-after-label{padding-top:16px;text-transform:none}.control-pane-padded{display:flex;align-items:center;align-self:stretch;justify-content:space-between;background-color:#f4f4f4;border-radius:6px;max-width:100%;padding-left:2rem;padding-right:2rem;padding:1rem 2rem}.control-pane-padded .btn,.control-pane-padded .btn:hover,.control-pane-padded .btn:active,.control-pane-padded .btn:focus,.control-pane-padded .btn:hover:focus,.control-pane-padded .btn:hover:active{height:auto;min-height:2rem;padding-top:0;padding-bottom:0}.control-pane-padded .btn:first-child,.control-pane-padded .btn:hover:first-child,.control-pane-padded .btn:active:first-child,.control-pane-padded .btn:focus:first-child,.control-pane-padded .btn:hover:focus:first-child,.control-pane-padded .btn:hover:active:first-child{padding-left:0}.control-pane-padded .btn:last-child,.control-pane-padded .btn:hover:last-child,.control-pane-padded .btn:active:last-child,.control-pane-padded .btn:focus:last-child,.control-pane-padded .btn:hover:focus:last-child,.control-pane-padded .btn:hover:active:last-child{padding-right:0}.control-pane{display:flex;align-items:center;align-self:stretch;justify-content:space-between;background-color:#f4f4f4;border-radius:6px;max-width:100%;padding-left:2rem;padding-right:2rem}@media only screen and (max-width: 480px){.control-pane{max-width:initial;margin-left:-2rem;margin-right:-2rem;padding-left:2rem;padding-right:2rem}}@media only screen and (max-width: 480px){.control-pane .btn-group .btn,.control-pane-padded .btn-group .btn{font-size:1rem}}.control-pane-medium{background-color:#ededed}.control-pane-feature-medium{background-color:#ebf1fb;color:#4578ec}.fade-enter,.fade-exit-done{opacity:0;pointer-events:none}.fade-enter-active{opacity:1;transition:opacity 200ms ease-in}.fade-exit,.fade-enter-done{opacity:1;pointer-events:initial}.fade-exit-active{opacity:0;transition:opacity 200ms ease-in}.reveal-down-enter,.reveal-down-exit{transform-origin:top}.reveal-down-content{opacity:0;transition:opacity 125ms}.reveal-down-enter{transform:scaleY(0);transition:transform 400ms ease-in}.reveal-down-enter .reveal-down-content{opacity:0}.reveal-down-enter-active{transform:scaleY(1)}.reveal-down-enter-active .reveal-down-content{opacity:0}.reveal-down-enter-done{transform:scaleY(1)}.reveal-down-enter-done .reveal-down-content{opacity:1}.reveal-down-exit{transform:scaleY(1);transition:transform 400ms ease-in 125ms}.reveal-down-exit-active{transform:scaleY(0)}.reveal-down-exit-done{transform:scaleY(0)}section#view-header,.primary-content .filtered-trends>section{padding-left:8rem;padding-right:8rem;position:relative}@media only screen and (max-width: 1200px){section#view-header,.primary-content .filtered-trends>section{padding-left:4rem;padding-right:4rem}}@media only screen and (max-width: 600px){section#view-header,.primary-content .filtered-trends>section{padding-left:2rem;padding-right:2rem}}.primary-content{margin:0;flex:1;transition:flex 400ms ease-in-out;display:flex;flex-direction:column;overflow:hidden}.primary-content .filtered-trends{display:flex;flex-direction:column;position:relative;overflow:hidden;flex:1;align-items:stretch;justify-content:center}.song-view .primary-content .filtered-trends{padding-top:3rem}.primary-content .filtered-trends .featured-trends{margin-top:0}.primary-content .filtered-trends #tn-active-passive{margin-top:2rem;padding-top:2rem}.primary-content .filtered-trends #apiFail{padding:2rem;background:none;position:inherit}.primary-content .filtered-trends #apiFail.songs_on_the_move{color:#fff}.primary-content .filtered-trends #apiFail.position-absolute{position:absolute}@media only screen and (max-width: 1200px){.primary-content .filtered-trends #apiFail.position-absolute{position:inherit;padding-bottom:4rem}}.primary-content .trends-spinner{margin:auto}.primary-content .simple-bar-scroll{flex:1}.primary-content .simple-bar-scroll .simplebar-content{display:flex;flex-direction:column}.trend-up{color:#12b3b3;transform:translateY(3px)}.trend-down{color:#ba324f;transform:translateY(2px)}.trend-no-change{color:#787171}section#view-header{z-index:1;display:flex;flex-direction:column}section#view-header:after{content:"";left:0;right:0;height:2rem;bottom:-2rem;position:absolute;pointer-events:none;box-shadow:inset 0 1rem 1rem -1rem rgba(75,80,85,.3)}.view-header{background:#fff;display:grid;align-items:center;grid-template-areas:"left main right";grid-template-columns:minmax(20.3rem, auto) 6fr minmax(20.3rem, auto);position:relative;min-height:75px}.view-header .view-header-left{grid-area:left;display:flex;justify-content:flex-start}.view-header .view-header-main{grid-area:main}.view-header .view-header-right{grid-area:right;display:flex;justify-content:flex-end}.view-header .user-override{color:#4578ec;display:flex;overflow:hidden;height:100%;align-items:center}.view-header .user-override>span{flex:1;overflow:hidden;text-overflow:ellipsis;padding:0 1rem 0 .5rem}.view-header .btn-link,.view-header .btn-link:hover,.view-header .btn-link:active,.view-header .btn-link:focus,.view-header .btn-link:hover:focus,.view-header .btn-link:hover:active{color:#4b5055}.primary-content .view-header{padding-top:.5;padding-bottom:0}.view-header .h1{font-weight:600;font-size:1.6rem;line-height:2.2rem;color:#4b5568;padding:0}.view-header .results-info{flex:1;position:relative;padding:0 2rem}.view-header .results-info .h1{text-align:center}.view-header .view-search{width:100%;display:flex;grid-column:left/right;align-items:center;background-color:#fff;opacity:1;transition:opacity 150ms ease-in-out,background-color 150ms ease-in-out}.view-header .view-search.collapsed{opacity:0;background-color:rgba(255,255,255,0);pointer-events:none}.view-header .view-search .lookup-input{width:100%;margin:0}.view-header .view-search .lookup-input .React-Select__placeholder{font-weight:600}.view-header .view-search .lookup-input .React-Select__option .badge,.view-header .view-search .lookup-input .React-Select__option .blue-pill{margin-right:.8rem;font-weight:bold;background-color:#635a5a}.view-header .user-view .view-search{padding-left:3.5rem}.view-header .song-breadcrumbs{display:flex;justify-content:center}.view-header .song-breadcrumbs .song-label{text-align:right}.view-header .song-breadcrumbs .song-artist{display:inherit;text-align:left}.view-header .song-breadcrumbs .breadcrumb-level{display:inline}.view-header .song-breadcrumbs .breadcrumb-level:hover span{color:#4b5055}.view-header .song-breadcrumbs .breadcrumb-level:first-child::before{display:none}.view-header .song-breadcrumbs .song-artist,.view-header .song-breadcrumbs .song-label{font-weight:600;line-height:1.8rem;font-size:1.3rem;font-weight:400;color:#2237a0}.view-header .song-breadcrumbs .song-artist:hover,.view-header .song-breadcrumbs .song-label:hover{color:#142683}.view-header .song-breadcrumbs .separator~.separator:before{padding-right:.6rem;padding-left:0rem;content:","}@media only screen and (max-width: 600px){.view-header .song-breadcrumbs{flex-direction:column;justify-content:center;align-items:center;padding-bottom:.5rem}.view-header .song-breadcrumbs .filter-link{max-width:100%}.view-header .song-breadcrumbs .breadcrumb-level{display:block}.view-header .song-breadcrumbs .song-artist:before,.view-header .song-breadcrumbs .song-label:before{display:none}}@media only screen and (max-width: 960px){.primary-content.log-collapsed{padding:0 4rem}}@media only screen and (max-width: 480px){#main:not(.w-modal) .primary-content .filtered-trends{position:relative;padding-top:0;display:flex;overflow:auto}}.w-modal .filtered-trends{overflow:hidden;flex:1 1 0}.primary-content .simple-bar-scroll.no-scroll .simplebar-track.vertical{display:none}.primary-content .simple-bar-scroll.no-scroll .simplebar-scroll-content{overflow:hidden}@media only screen and (max-width: 480px){.primary-content.log-collapsed{padding:0}.primary-content .simple-bar-scroll{overflow:auto;display:flex;flex-direction:column}.primary-content .simple-bar-scroll .simplebar-scroll-content{height:100%}.primary-content .simple-bar-scroll .simplebar-scroll-content .simplebar-content{padding:0 !important}}.primary-content .other-trends{flex:1 1 50%}.primary-content .featured-trends{display:flex;flex-direction:column;flex:1 1 100%;margin-bottom:0;border:none;display:flex;flex-direction:column;flex:0 0 auto;background-color:#ededed;flex-direction:row;flex-wrap:wrap;overflow:hidden;position:relative}.primary-content .featured-trends .top-songs{max-height:68rem}.primary-content .featured-trends #top-songs-container{display:flex;flex-direction:column;flex:1 1 100%;margin-bottom:0;border:none;background-color:#fbfbfb}.primary-content .featured-trends .top-songs{flex:1}#top-songs-container .song-name,#top-songs-container .label-name{display:block}#downloads-container .ReactTable .rt-th .multi-sort{white-space:nowrap}.song-view .featured-trends{height:initial;overflow:visible;min-height:37rem;margin-bottom:4rem}@media only screen and (max-width: 960px){.primary-content .other-trends{padding:3rem 1rem 0}.primary-content .other-trends,.primary-content .featured-trends{height:initial;background-color:#fbfbfb}.primary-content section footer{justify-content:center}}@media only screen and (max-width: 800px){.view-header{grid-template-columns:auto 1fr auto}.primary-content .featured-trends:after{content:initial}.view-header-bottom{width:100%;padding-bottom:2rem}}@media only screen and (max-width: 600px){.primary-content .other-trends{padding-top:3rem}.primary-content .other-trends .tn-card .charts,.primary-content .other-trends .tn-card-bordered .charts,.primary-content .other-trends .tn-card-frameless .charts{padding:4rem 2rem}.primary-content section .section-header .dropdown-button{padding-right:2px;margin-top:1rem}.primary-content section .section-header .dropdown-button .dropdown-toggle{width:100%}.primary-content section .section-header .dropdown-button .dropdown-menu{width:100%;margin:0}.primary-content section.section-grey,.primary-content section.section-grey-gradient{padding-top:3rem;padding-bottom:3rem}.primary-content section.section-paper{margin-top:3rem;margin-bottom:3rem}.primary-content section.section-paper+.section-paper{margin-top:0}}@media only screen and (max-width: 480px){.primary-content section .section-header{flex-direction:column;align-items:flex-start;margin-bottom:1rem}.primary-content section .section-header>.dropdown{margin-top:2rem;align-self:stretch}.primary-content section .section-header .header{margin-bottom:.5rem}.primary-content section .section-header .timestamp{padding-bottom:.5rem;margin:0}.primary-content section .section-header .timestamp div:first-child{display:flex;flex-direction:row;align-items:center}.primary-content section .section-header .timestamp div:first-child .timestamp{padding-left:1rem;padding-bottom:0;font-size:1.2rem;text-transform:capitalize}.primary-content .view-header .btn-link{width:auto}.primary-content .view-header .btn-icon{padding:0}.primary-content .view-header .view-search{margin:0 1rem}.primary-content section.featured-trends{padding-left:0;padding-right:0}}h3.delta{position:absolute;top:-3rem;right:0;left:0;letter-spacing:normal;text-align:right}h3.delta span.percentage{font-size:2rem;display:block;text-align:right;font-weight:800;line-height:normal}h3.delta .percentage .fas,h3.delta .trend-direction-text{font-size:1.2rem}h3.delta sup{font-size:1.2rem;top:-0.6rem;left:.2rem;font-weight:800;margin-right:-1rem}.value-change{display:flex;flex:1;justify-content:center;min-width:15rem}.value-change>:first-child,.value-change>:last-child{display:flex;flex:0 0 40%}.value-change>:nth-child(2){flex:0 0 20%}.value-change>:first-child{justify-content:flex-end;text-align:right}.value-change>:last-child{justify-content:flex-start;text-align:left}.value-change>.divider{min-width:calc(2rem + 1px);flex:0 0 calc(2rem + 1px);display:flex;justify-content:center}.value-change>.divider:after{content:"";width:1px;height:100%;background-color:#d8d8d8}@media only screen and (max-width: 480px){.value-change .trend-icon-container{transform:translateX(3px)}.value-change .trend-icon-container .fa-caret-up,.value-change .trend-icon-container .fa-caret-down{padding-right:0;padding-left:2px}}.value-change-inline{display:flex;align-items:baseline;justify-content:center;flex-wrap:wrap}.value-change-inline .label-sm,.value-change-inline #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .value-change-inline .option-data,.value-change-inline section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .value-change-inline .option-data{margin:0 1rem}.value-change-inline .value-change{min-width:initial}.value-change-inline .value-change>:first-child,.value-change-inline .value-change>:last-child{flex:0 0 auto}@media only screen and (max-width: 480px){.value-change-inline .value-change .trend-icon-container{transform:initial}}.tiktok-creations .value-change-inline,.snapchat-views .value-change-inline,.snapchat-creation .value-change-inline{padding:1rem 1.5rem;background:#f4f8fe;border-radius:6px;align-items:center;margin-bottom:1rem;justify-content:space-between}.tiktok-creations .value-change-inline .label-sm,.tiktok-creations .value-change-inline #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .tiktok-creations .value-change-inline .option-data,.tiktok-creations .value-change-inline section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .tiktok-creations .value-change-inline .option-data,.snapchat-views .value-change-inline .label-sm,.snapchat-views .value-change-inline #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .snapchat-views .value-change-inline .option-data,.snapchat-views .value-change-inline section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .snapchat-views .value-change-inline .option-data,.snapchat-creation .value-change-inline .label-sm,.snapchat-creation .value-change-inline #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .snapchat-creation .value-change-inline .option-data,.snapchat-creation .value-change-inline section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .snapchat-creation .value-change-inline .option-data{margin:0 1rem 0 0}.tiktok-creations .total-average,.snapchat-views .total-average,.snapchat-creation .total-average{margin-right:4rem}@media only screen and (max-width: 960px){.tiktok-creations .total-average,.snapchat-views .total-average,.snapchat-creation .total-average{margin-right:0rem}}.tn-retailer{display:flex;align-items:center}.tn-retailer .retailer-icon{line-height:0;padding-right:.5rem}.retailer-icon.inline-icon{display:inline-flex;width:1.4rem;height:1.4rem}.retailer-icon.inline-icon svg{vertical-align:sub;max-width:1.4rem;max-height:1.4rem}@media only screen and (max-width: 960px){.retailer-icon.playlist-icon{width:100%;top:-2rem;left:0;position:absolute}.retailer-icon.playlist-icon svg{display:none}}.tn-card,.tn-card-bordered,.tn-card-frameless{background-color:#fff;transition:height 200ms ease-in-out}.tn-card-rounded{border-radius:6px}.tn-card-padded{padding:2rem 3rem}@media only screen and (max-width: 375px){.tn-card-padded{padding:2rem}}.tn-card-raised{box-shadow:0 1px 2px 1px rgba(75,80,85,.1),0px 1rem .5rem -0.5rem rgba(93,102,162,.1)}.tn-card-transparent{background-color:rgba(0,0,0,0)}.tn-card .card-info-wrapper,.tn-card-bordered .card-info-wrapper,.tn-card-frameless .card-info-wrapper{margin-left:-1rem;margin-bottom:2rem;display:flex;justify-content:space-between}@media only screen and (max-width: 375px){.tn-card .card-info-wrapper,.tn-card-bordered .card-info-wrapper,.tn-card-frameless .card-info-wrapper{margin-left:-3rem}}.tn-card .card-info,.tn-card-bordered .card-info,.tn-card-frameless .card-info{position:relative;display:flex;flex:0 0 auto;align-items:center;z-index:1}.tn-card .card-info .card-label,.tn-card-bordered .card-info .card-label,.tn-card-frameless .card-info .card-label{margin-right:2rem;display:flex;align-items:center}.tn-card .card-info .card-label .retailer-icon+.label-sm,.tn-card .card-info .card-label #territories-selector-modal .tn-select.territories-selector .tn-select__option .retailer-icon+.option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .tn-card .card-info .card-label .retailer-icon+.option-data,.tn-card .card-info .card-label section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .retailer-icon+.option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .tn-card .card-info .card-label .retailer-icon+.option-data,.tn-card-bordered .card-info .card-label .retailer-icon+.label-sm,.tn-card-bordered .card-info .card-label #territories-selector-modal .tn-select.territories-selector .tn-select__option .retailer-icon+.option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .tn-card-bordered .card-info .card-label .retailer-icon+.option-data,.tn-card-bordered .card-info .card-label section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .retailer-icon+.option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .tn-card-bordered .card-info .card-label .retailer-icon+.option-data,.tn-card-frameless .card-info .card-label .retailer-icon+.label-sm,.tn-card-frameless .card-info .card-label #territories-selector-modal .tn-select.territories-selector .tn-select__option .retailer-icon+.option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .tn-card-frameless .card-info .card-label .retailer-icon+.option-data,.tn-card-frameless .card-info .card-label section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .retailer-icon+.option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .tn-card-frameless .card-info .card-label .retailer-icon+.option-data{padding-left:.6rem;padding-right:.3rem}.tn-card .card-label,.tn-card-bordered .card-label,.tn-card-frameless .card-label{padding:.8rem 1.2rem}.tn-card .card-label .label-sm,.tn-card .card-label #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .tn-card .card-label .option-data,.tn-card .card-label section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .tn-card .card-label .option-data,.tn-card-bordered .card-label .label-sm,.tn-card-bordered .card-label #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .tn-card-bordered .card-label .option-data,.tn-card-bordered .card-label section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .tn-card-bordered .card-label .option-data,.tn-card-frameless .card-label .label-sm,.tn-card-frameless .card-label #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .tn-card-frameless .card-label .option-data,.tn-card-frameless .card-label section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .tn-card-frameless .card-label .option-data{color:#fff}.tn-card .card-label.card-label-compact .retailer-icon,.tn-card-bordered .card-label.card-label-compact .retailer-icon,.tn-card-frameless .card-label.card-label-compact .retailer-icon{display:flex}.tn-card .card-label.card-label-compact .retailer-icon.you-tube+.label,.tn-card-bordered .card-label.card-label-compact .retailer-icon.you-tube+.label,.tn-card-frameless .card-label.card-label-compact .retailer-icon.you-tube+.label{display:none}.tn-card .panel,.tn-card-bordered .panel,.tn-card-frameless .panel{border:none;background-color:rgba(0,0,0,0);margin-bottom:0;display:flex;flex-direction:column;height:100%}.tn-card .panel-body,.tn-card-bordered .panel-body,.tn-card-frameless .panel-body{flex:1 1 60%;display:flex;flex-direction:column;align-items:flex-start}.tn-card .dropdown-toggle .timestamp,.tn-card-bordered .dropdown-toggle .timestamp,.tn-card-frameless .dropdown-toggle .timestamp{padding-right:1rem}.tn-card .circle-callout,.tn-card-bordered .circle-callout,.tn-card-frameless .circle-callout{display:flex;flex-direction:column;font-size:1.5rem;justify-content:center;align-items:center;border:1px solid #d8d8d8;border-radius:100vw;padding:2rem;height:12rem;width:12rem;text-align:center}.tn-card .stat-callout,.tn-card-bordered .stat-callout,.tn-card-frameless .stat-callout{font-size:1.5rem;padding:0 2rem;text-align:center}.tn-card .panel-heading,.tn-card-bordered .panel-heading,.tn-card-frameless .panel-heading{padding:0 0 1rem 0;min-height:14rem;border:none;background:none}.tn-card .trend-header,.tn-card-bordered .trend-header,.tn-card-frameless .trend-header{display:flex;flex-direction:column;position:relative;flex:1;max-width:100%}.tn-card .trend-header .tooltip-inner,.tn-card-bordered .trend-header .tooltip-inner,.tn-card-frameless .trend-header .tooltip-inner{max-width:20rem}.tn-card .trend-header .h2>span,.tn-card-bordered .trend-header .h2>span,.tn-card-frameless .trend-header .h2>span{display:block}.tn-card .trend-header .event-text,.tn-card-bordered .trend-header .event-text,.tn-card-frameless .trend-header .event-text{opacity:.75}.tn-card .trend-header .proper-name,.tn-card-bordered .trend-header .proper-name,.tn-card-frameless .trend-header .proper-name{font-style:italic}.tn-card .trend-action,.tn-card-bordered .trend-action,.tn-card-frameless .trend-action{display:flex;transition:opacity 250ms;justify-content:flex-end;align-items:center;padding:2rem;text-align:right;font-size:1.5rem;font-weight:bold;color:#fff}.tn-card tbody>tr>th,.tn-card-bordered tbody>tr>th,.tn-card-frameless tbody>tr>th{font-weight:normal}.tn-card tbody tr.active,.tn-card-bordered tbody tr.active,.tn-card-frameless tbody tr.active{font-weight:bold}.tn-card tbody tr.active td,.tn-card-bordered tbody tr.active td,.tn-card-frameless tbody tr.active td{background-color:initial}.tn-card .chart-footer,.tn-card-bordered .chart-footer,.tn-card-frameless .chart-footer{text-align:center;border:initial;padding-top:1rem}.tn-card-feature-100,.tn-card-feature-150{padding:2rem 3rem;border-radius:6px}@media only screen and (max-width: 375px){.tn-card-feature-100,.tn-card-feature-150{padding:2rem}}@media only screen and (max-width: 480px){.tn-card-feature-100,.tn-card-feature-150{padding-left:2rem;padding-right:2rem}}.tn-card-feature-100{background-color:#f4f8fe}.tn-card-feature-150{background-color:#ebf1fb}.tn-card-paper{padding:2rem 3rem;box-shadow:0 1px 2px 1px rgba(75,80,85,.1),0px 1rem .5rem -0.5rem rgba(93,102,162,.1);background-color:#fff}@media only screen and (max-width: 375px){.tn-card-paper{padding:2rem}}.tn-card-light{padding:2rem 3rem;background-color:#fbfbfb}@media only screen and (max-width: 375px){.tn-card-light{padding:2rem}}.tn-card-paper .card-info-wrapper,.tn-card-light .card-info-wrapper{margin-left:-4rem}.tn-card-paper .card-info-wrapper .control-pane-padded,.tn-card-paper .card-info-wrapper .card-source-type,.tn-card-light .card-info-wrapper .control-pane-padded,.tn-card-light .card-info-wrapper .card-source-type{margin-left:4rem}@media only screen and (max-width: 375px){.tn-card-paper .card-info-wrapper,.tn-card-light .card-info-wrapper{margin-left:-3rem}.tn-card-paper .card-info-wrapper .control-pane-padded,.tn-card-paper .card-info-wrapper .card-source-type,.tn-card-light .card-info-wrapper .control-pane-padded,.tn-card-light .card-info-wrapper .card-source-type{margin-left:3rem}}.tn-card-frameless{background-color:rgba(0,0,0,0)}@media only screen and (max-width: 375px){.tn-card-frameless .card-info-wrapper{margin-left:-1rem}}.tn-card-bordered{padding:2rem;background-color:rgba(0,0,0,0);border-radius:6px;border:1px solid #d8d8d8}@media only screen and (max-width: 800px){.tn-card-bordered{padding:1rem}}.tn-card.playlist-add .playlist-number,.playlist-add.tn-card-frameless .playlist-number,.playlist-add.tn-card-bordered .playlist-number{justify-content:center;align-items:center;font-weight:bold;width:2.5rem;height:2.5rem;display:inline-flex;border-radius:3rem}.tn-card.significant-change .panel,.significant-change.tn-card-frameless .panel,.significant-change.tn-card-bordered .panel{flex:0 auto}@media only screen and (max-width: 960px){.tn-card.significant-change .panel-body,.significant-change.tn-card-frameless .panel-body,.significant-change.tn-card-bordered .panel-body{overflow:hidden}}.tn-card.current-playlists .addon-panel,.current-playlists.tn-card-frameless .addon-panel,.current-playlists.tn-card-bordered .addon-panel{flex:0 0 auto}.tn-card.current-playlists .addon-panel:not(:last-child),.current-playlists.tn-card-frameless .addon-panel:not(:last-child),.current-playlists.tn-card-bordered .addon-panel:not(:last-child){margin-bottom:2rem}.tn-card.current-playlists .card-info+.addon-panel,.current-playlists.tn-card-frameless .card-info+.addon-panel,.current-playlists.tn-card-bordered .card-info+.addon-panel{margin-top:0}.song-view .source-of-streams,.song-view .number-of-streams,.total-streams,.tiktok-engagement{height:initial;min-height:28rem}.song-view .source-of-streams .charts,.song-view .number-of-streams .charts,.total-streams .charts,.tiktok-engagement .charts{height:auto}.song-view .source-of-streams .charts .label-lg,.song-view .source-of-streams .charts .badge,.song-view .source-of-streams .charts .blue-pill,.song-view .source-of-streams .charts .ReactTable .rt-th,.ReactTable .song-view .source-of-streams .charts .rt-th,.song-view .number-of-streams .charts .label-lg,.song-view .number-of-streams .charts .badge,.song-view .number-of-streams .charts .blue-pill,.song-view .number-of-streams .charts .ReactTable .rt-th,.ReactTable .song-view .number-of-streams .charts .rt-th,.total-streams .charts .label-lg,.total-streams .charts .badge,.total-streams .charts .blue-pill,.total-streams .charts .ReactTable .rt-th,.ReactTable .total-streams .charts .rt-th,.tiktok-engagement .charts .label-lg,.tiktok-engagement .charts .badge,.tiktok-engagement .charts .blue-pill,.tiktok-engagement .charts .ReactTable .rt-th,.ReactTable .tiktok-engagement .charts .rt-th{margin-bottom:1.5rem}.source-of-streams{margin-top:2rem}.source-of-streams .tn-card,.source-of-streams .tn-card-frameless,.source-of-streams .tn-card-bordered{display:flex;flex-direction:column;padding:0;margin:0;transition:height 200ms ease-in-out}.source-of-streams .retailers-selector{align-self:flex-end}.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group.highlight{background-color:#deeefa;border-bottom:1px solid rgba(75,80,85,.2);border-top:1px solid rgba(75,80,85,.2);margin-top:-1px}.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group.highlight .color-ref{box-shadow:0 0 0 2px #fff}.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group.highlight:hover{background-color:#d5e9f9}.source-of-streams .flex{display:flex}.cards-grid .tn-card,.cards-grid .tn-card-frameless,.cards-grid .tn-card-bordered{height:auto;min-height:45rem}.cards-grid .tn-card .panel-body,.cards-grid .tn-card-frameless .panel-body,.cards-grid .tn-card-bordered .panel-body{padding:0}.total-streams{padding:0}.total-streams .rt-table .rt-th{color:#4b5055}.total-streams .rt-table .rt-tr .rt-resizable-header-content{padding:0}.total-streams .-sort-desc .rt-resizable-header-content:after{display:none !important}.top-songs .tn-table.tn-table-striped .rt-table .rt-td{width:fit-content}.top-songs .ReactTable .rt-td .primaryText{display:flex}.top-songs .ReactTable .rt-td .secondaryText{display:flex;color:#4b5055}.top-songs .ReactTable .rt-td .blue{color:#2237a0}.top-songs .ReactTable .rt-td .blue:hover{color:#142683;text-decoration:underline}.top-songs .ReactTable .rt-td .separation::after{position:relative;content:",";padding:0;color:#949faa;padding-right:.3rem}.top-songs .ReactTable .rt-td .separation:last-child::after{content:"";padding:0}.top-songs .ReactTable .rt-td .separation .route-link{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.top-songs .featured-artist{padding-right:.5rem}#streams-section{position:relative}#streams-section .section-header{position:relative;z-index:3}#streams-section article{position:relative;z-index:0}#streams-section footer{justify-content:flex-start}#streams-section .no-selected-data .pre-msg{margin-bottom:3rem;font-size:1.6rem}#streams-section,#tiktok-section{position:relative}#streams-section .control-pane,#tiktok-section .control-pane{margin-bottom:2rem}#streams-section .tn-card.source-of-streams,#streams-section .source-of-streams.tn-card-frameless,#streams-section .source-of-streams.tn-card-bordered,#tiktok-section .tn-card.source-of-streams,#tiktok-section .source-of-streams.tn-card-frameless,#tiktok-section .source-of-streams.tn-card-bordered{margin-top:6rem}#youTube-section .h2,#tiktok-section .h2,#snapchat-section .h2{padding-right:1rem}#youTube-section .control-pane-padded,#tiktok-section .control-pane-padded,#snapchat-section .control-pane-padded{margin-right:2rem}@media only screen and (max-width: 960px){#youTube-section .control-pane-padded,#tiktok-section .control-pane-padded,#snapchat-section .control-pane-padded{margin-right:0rem;order:1;margin-top:1rem;margin-bottom:1rem}}#streams-section #source-of-streams{padding-top:6rem}#streams-section #source-of-streams .tn-card.source-of-streams,#streams-section #source-of-streams .source-of-streams.tn-card-frameless,#streams-section #source-of-streams .source-of-streams.tn-card-bordered{margin-top:0}#youTube-section .header-logo{position:relative;bottom:-6px;padding-right:2rem;flex:1}#youTube-section .youtube-card{margin:2rem 0}#youTube-section .tn-card .change-table,#youTube-section .tn-card-frameless .change-table,#youTube-section .tn-card-bordered .change-table{flex:0 1 35%}#tiktok-section .header-logo,#snapchat-section .header-logo{position:relative;bottom:-6px;padding-right:2rem;flex:1}#tiktok-section .tiktok-creations,#tiktok-section .snapchat-views,#tiktok-section .snapchat-creation,#snapchat-section .tiktok-creations,#snapchat-section .snapchat-views,#snapchat-section .snapchat-creation{margin:2rem 0}#tiktok-section .tiktok-creations .value-change>:first-child,#tiktok-section .snapchat-views .value-change>:first-child,#tiktok-section .snapchat-creation .value-change>:first-child,#snapchat-section .tiktok-creations .value-change>:first-child,#snapchat-section .snapchat-views .value-change>:first-child,#snapchat-section .snapchat-creation .value-change>:first-child{font-weight:600}#tiktok-section .tiktok-creations>:first-child,#tiktok-section .snapchat-views>:first-child,#tiktok-section .snapchat-creation>:first-child,#snapchat-section .tiktok-creations>:first-child,#snapchat-section .snapchat-views>:first-child,#snapchat-section .snapchat-creation>:first-child{margin-right:2rem}#tiktok-section .tiktok-creations .charts,#tiktok-section .snapchat-views .charts,#tiktok-section .snapchat-creation .charts,#snapchat-section .tiktok-creations .charts,#snapchat-section .snapchat-views .charts,#snapchat-section .snapchat-creation .charts{min-height:auto}#tiktok-section .tiktok-creations .charts .chart-group,#tiktok-section .snapchat-views .charts .chart-group,#tiktok-section .snapchat-creation .charts .chart-group,#snapchat-section .tiktok-creations .charts .chart-group,#snapchat-section .snapchat-views .charts .chart-group,#snapchat-section .snapchat-creation .charts .chart-group{height:10rem;min-height:10rem;position:relative}#tiktok-section .tiktok-creations .value-change,#tiktok-section .snapchat-views .value-change,#tiktok-section .snapchat-creation .value-change,#snapchat-section .tiktok-creations .value-change,#snapchat-section .snapchat-views .value-change,#snapchat-section .snapchat-creation .value-change{justify-content:end;flex:0;padding-left:2rem}#tiktok-section .tiktok-creations .label-sm,#tiktok-section .tiktok-creations #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option #tiktok-section .tiktok-creations .option-data,#tiktok-section .tiktok-creations section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option #tiktok-section .tiktok-creations .option-data,#tiktok-section .snapchat-views .label-sm,#tiktok-section .snapchat-views #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option #tiktok-section .snapchat-views .option-data,#tiktok-section .snapchat-views section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option #tiktok-section .snapchat-views .option-data,#tiktok-section .snapchat-creation .label-sm,#tiktok-section .snapchat-creation #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option #tiktok-section .snapchat-creation .option-data,#tiktok-section .snapchat-creation section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option #tiktok-section .snapchat-creation .option-data,#snapchat-section .tiktok-creations .label-sm,#snapchat-section .tiktok-creations #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option #snapchat-section .tiktok-creations .option-data,#snapchat-section .tiktok-creations section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option #snapchat-section .tiktok-creations .option-data,#snapchat-section .snapchat-views .label-sm,#snapchat-section .snapchat-views #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option #snapchat-section .snapchat-views .option-data,#snapchat-section .snapchat-views section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option #snapchat-section .snapchat-views .option-data,#snapchat-section .snapchat-creation .label-sm,#snapchat-section .snapchat-creation #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option #snapchat-section .snapchat-creation .option-data,#snapchat-section .snapchat-creation section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option #snapchat-section .snapchat-creation .option-data{flex:1}#tiktok-section .tn-card .btn-help-link,#tiktok-section .tn-card-frameless .btn-help-link,#tiktok-section .tn-card-bordered .btn-help-link,#snapchat-section .tn-card .btn-help-link,#snapchat-section .tn-card-frameless .btn-help-link,#snapchat-section .tn-card-bordered .btn-help-link{display:flex;align-self:flex-end}#tiktok-section .tn-card .btn-help-link.type-text,#tiktok-section .tn-card-frameless .btn-help-link.type-text,#tiktok-section .tn-card-bordered .btn-help-link.type-text,#snapchat-section .tn-card .btn-help-link.type-text,#snapchat-section .tn-card-frameless .btn-help-link.type-text,#snapchat-section .tn-card-bordered .btn-help-link.type-text{margin-top:1rem;z-index:1}@media only screen and (max-width: 480px){#tiktok-section .section-header,#snapchat-section .section-header{align-items:stretch}#tiktok-section .section-header>div:first-of-type,#snapchat-section .section-header>div:first-of-type{margin-bottom:1rem}}#snapchat-section .header-logo{display:flex;align-items:center}.number-of-streams .change-table .ReactTable .rt-thead .rt-tr .rt-th,.source-of-streams .change-table .ReactTable .rt-thead .rt-tr .rt-th,.tiktok-engagement .change-table .ReactTable .rt-thead .rt-tr .rt-th{padding-right:.5rem;padding-left:.5rem;overflow:visible}.number-of-streams .change-table .ReactTable .rt-thead .rt-tr .rt-th>div,.source-of-streams .change-table .ReactTable .rt-thead .rt-tr .rt-th>div,.tiktok-engagement .change-table .ReactTable .rt-thead .rt-tr .rt-th>div{width:100%}.number-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group:hover,.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group:hover,.tiktok-engagement .change-table .ReactTable .rt-tbody .rt-tr-group:hover{background:#fbfbfb}.number-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td,.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td,.tiktok-engagement .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td{flex:0 0 auto;padding-left:0;padding-right:0}.number-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td .trend-icon-container,.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td .trend-icon-container,.tiktok-engagement .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td .trend-icon-container{display:flex;justify-content:flex-start}.number-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td .trend-icon-container .trend-up,.number-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td .trend-icon-container .trend-down,.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td .trend-icon-container .trend-up,.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td .trend-icon-container .trend-down,.tiktok-engagement .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td .trend-icon-container .trend-up,.tiktok-engagement .change-table .ReactTable .rt-tbody .rt-tr-group .rt-td .trend-icon-container .trend-down{padding-right:.5rem}.number-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group .streams-col,.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group .streams-col,.tiktok-engagement .change-table .ReactTable .rt-tbody .rt-tr-group .streams-col{flex:1 0 auto}.number-of-streams .change-table .ReactTable .rt-thead .rt-tr .rt-th:first-child,.number-of-streams .change-table .ReactTable .rt-thead .rt-tr .rt-td:first-child,.number-of-streams .change-table .ReactTable .rt-tbody .rt-tr .rt-th:first-child,.number-of-streams .change-table .ReactTable .rt-tbody .rt-tr .rt-td:first-child,.source-of-streams .change-table .ReactTable .rt-thead .rt-tr .rt-th:first-child,.source-of-streams .change-table .ReactTable .rt-thead .rt-tr .rt-td:first-child,.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr .rt-th:first-child,.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr .rt-td:first-child,.tiktok-engagement .change-table .ReactTable .rt-thead .rt-tr .rt-th:first-child,.tiktok-engagement .change-table .ReactTable .rt-thead .rt-tr .rt-td:first-child,.tiktok-engagement .change-table .ReactTable .rt-tbody .rt-tr .rt-th:first-child,.tiktok-engagement .change-table .ReactTable .rt-tbody .rt-tr .rt-td:first-child{padding-left:1rem}.number-of-streams .change-table .ReactTable .rt-thead .rt-tr-group.clickable.inactive,.number-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group.clickable.inactive,.source-of-streams .change-table .ReactTable .rt-thead .rt-tr-group.clickable.inactive,.source-of-streams .change-table .ReactTable .rt-tbody .rt-tr-group.clickable.inactive,.tiktok-engagement .change-table .ReactTable .rt-thead .rt-tr-group.clickable.inactive,.tiktok-engagement .change-table .ReactTable .rt-tbody .rt-tr-group.clickable.inactive{opacity:.5}#total-streams-container .charts{padding:0}.playlist-add .card-info-wrapper .retailer-icon,.playlist-drop .card-info-wrapper .retailer-icon,.algo-pl-name .retailer-icon{position:absolute;top:-1.4rem;left:-1.4rem;width:2.8rem;height:2.8rem;background-color:#fff;border-radius:50%}.playlist-add .card-info-wrapper .retailer-icon svg,.playlist-drop .card-info-wrapper .retailer-icon svg,.algo-pl-name .retailer-icon svg{width:2.4rem;height:2.4rem;position:relative;top:2px;left:2px}.playlist-add .card-info-wrapper,.playlist-drop .card-info-wrapper,.aggregate-card .card-info-wrapper{margin-top:-3.7rem;margin-left:-3rem;margin-right:-3rem;position:relative}.playlist-add .card-info-wrapper .card-info,.playlist-drop .card-info-wrapper .card-info,.aggregate-card .card-info-wrapper .card-info{flex:1;justify-content:space-between;align-items:flex-start}.playlist-add .card-info-wrapper .card-label,.playlist-drop .card-info-wrapper .card-label,.aggregate-card .card-info-wrapper .card-label{position:absolute}@media only screen and (max-width: 375px){.playlist-add .card-info-wrapper,.playlist-drop .card-info-wrapper,.aggregate-card .card-info-wrapper{margin-left:-2rem;margin-right:-2rem}}.playlist-add .rt-tr-group,.aggregate-card .rt-tr-group{border-width:0 !important}.playlist-add .rt-tr,.aggregate-card .rt-tr{align-items:flex-end}.playlist-add .ReactTable .rt-table,.playlist-add .ReactTable .rt-tbody,.playlist-drop .ReactTable .rt-table,.playlist-drop .ReactTable .rt-tbody{overflow:auto;padding:0}.playlist-add:not(.aggregate-card) .ReactTable .rt-thead .rt-tr .rt-th:nth-child(1),.playlist-add:not(.aggregate-card) .ReactTable .rt-tbody .rt-tr .rt-td:nth-child(1),.playlist-drop:not(.aggregate-card) .ReactTable .rt-thead .rt-tr .rt-th:nth-child(1),.playlist-drop:not(.aggregate-card) .ReactTable .rt-tbody .rt-tr .rt-td:nth-child(1){padding-left:0;padding-right:0;justify-content:center}.playlist-add:not(.aggregate-card) .ReactTable .rt-thead .rt-tr .rt-th:nth-child(2),.playlist-add:not(.aggregate-card) .ReactTable .rt-tbody .rt-tr .rt-td:nth-child(2),.playlist-drop:not(.aggregate-card) .ReactTable .rt-thead .rt-tr .rt-th:nth-child(2),.playlist-drop:not(.aggregate-card) .ReactTable .rt-tbody .rt-tr .rt-td:nth-child(2){justify-content:flex-start;padding-left:2rem}.playlist-add:not(.aggregate-card) .ReactTable .rt-thead .rt-tr .rt-th:nth-child(3),.playlist-add:not(.aggregate-card) .ReactTable .rt-tbody .rt-tr .rt-td:nth-child(3),.playlist-drop:not(.aggregate-card) .ReactTable .rt-thead .rt-tr .rt-th:nth-child(3),.playlist-drop:not(.aggregate-card) .ReactTable .rt-tbody .rt-tr .rt-td:nth-child(3){justify-content:flex-end}.playlist-add:not(.aggregate-card) .ReactTable .rt-td,.playlist-drop:not(.aggregate-card) .ReactTable .rt-td{padding-top:0;padding-bottom:0;padding-right:0}.playlist-add:not(.aggregate-card) .ReactTable .rt-th,.playlist-drop:not(.aggregate-card) .ReactTable .rt-th{padding-top:0}.playlist-add:not(.aggregate-card) .ReactTable .rt-tbody,.playlist-drop:not(.aggregate-card) .ReactTable .rt-tbody{overflow:hidden}.playlist-add:not(.aggregate-card) .ReactTable .rt-tbody .rt-tr,.playlist-drop:not(.aggregate-card) .ReactTable .rt-tbody .rt-tr{min-height:initial;height:initial}.playlist-add:not(.aggregate-card) .panel-heading,.playlist-drop:not(.aggregate-card) .panel-heading{justify-content:space-around}.playlist-add:not(.aggregate-card) .trend-header,.playlist-drop:not(.aggregate-card) .trend-header{flex:initial}.playlist-add:not(.aggregate-card) .rt-tbody .rt-td,.playlist-drop:not(.aggregate-card) .rt-tbody .rt-td{line-height:2.5rem}.playlist-add:not(.aggregate-card) .rt-tbody .rt-td:nth-child(2),.playlist-drop:not(.aggregate-card) .rt-tbody .rt-td:nth-child(2){padding-right:1rem}.playlist-add:not(.aggregate-card) .rt-tbody .rt-td:last-child,.playlist-drop:not(.aggregate-card) .rt-tbody .rt-td:last-child{padding-left:1rem}.playlist-add .card-label{background-color:#12b3b3}.playlist-add .ReactTable{flex:1}.playlist-add .active{color:#12b3b3}.playlist-add .playlist-number.active{background-color:#12b3b3 !important;color:#fff}.playlist-add tbody>tr>th,.playlist-add thead>tr>th:first-child{text-align:center}.playlist-add .trend-context .rt-td:first-child,.playlist-add .trend-context .rt-th:first-child{text-align:center;padding-left:0}.playlist-add .trend-context .rt-td:last-child,.playlist-add .trend-context .rt-th:last-child{text-align:right;padding-right:0}.playlist-drop .card-label{background-color:#ba324f}.playlist-drop .plays{display:flex;flex-direction:column;justify-content:flex-start}.playlist-drop .no-plays{text-align:center;font-size:1.5rem}.playlist-drop .no-plays .plays-message{border:4px solid #d8d8d8;padding:.5rem 2rem;margin:auto;color:#4b5055;border-radius:4rem}.playlist-drop .panel-body .no-consumption{display:flex;flex-direction:column;justify-content:center;align-items:center}.playlist-drop .panel-body .no-consumption>.flex-item{flex:0 0 auto;text-align:center;padding:1.5rem 0}.playlist-drop .panel-body .no-consumption>.flex-item:nth-child(n+2){border-top:1px solid #ba324f}.aggregate-card .card-info-wrapper{margin-top:-3rem}.aggregate-card .panel-heading{color:#4b5055}.aggregate-card .trend-context .rt-td:first-child,.aggregate-card .trend-context .rt-th:first-child{text-align:left}.aggregate-card .trend-context .rt-td:last-child{max-width:50px !important}.aggregate-card .trend-context .rt-td:last-child,.aggregate-card .trend-context .rt-th:last-child{text-align:right;justify-content:flex-end}.aggregate-card .trend-context .rt-tr-group{margin-right:2rem}.aggregate-card .ReactTable{position:absolute;top:0;right:0;bottom:0;left:0}.aggregate-card .ReactTable .rt-tbody .rt-tr{height:auto}.aggregate-card .simplebar-track.vertical{margin-bottom:1rem}.aggregate-card .simplebar-content{overflow-x:hidden;margin-bottom:30px}.number-of-streams .tn-card,.number-of-streams .tn-card-frameless,.number-of-streams .tn-card-bordered{box-sizing:content-box}.number-of-streams .card-label{background-color:#5d66a2}.number-of-streams .artist-names{display:flex;flex-wrap:wrap}.number-of-streams .artist-names .blue{color:#2237a0}.number-of-streams .artist-names .blue:hover{color:#142683}.number-of-streams .artist-names .separation::after{position:relative;content:",";padding:0;color:#949faa;padding-right:.3rem}.number-of-streams .artist-names .separation:last-child::after{content:"";padding:0}.number-of-streams .ellipsis,.number-of-streams .view-header .song-breadcrumbs .breadcrumb-level .route-link,.view-header .song-breadcrumbs .breadcrumb-level .number-of-streams .route-link{flex:1}.chart-group{display:flex;flex:1;min-height:20rem}.tn-card .change-table,.tn-card-frameless .change-table,.tn-card-bordered .change-table{min-height:26rem;margin-right:4rem;flex:0 1 35%}.tn-card .change-table+.charts,.tn-card-frameless .change-table+.charts,.tn-card-bordered .change-table+.charts{padding-left:2rem}.tn-card .totals-table,.tn-card-frameless .totals-table,.tn-card-bordered .totals-table{padding-right:6rem;flex:0 0 40%}.tn-card .totals-table+.charts,.tn-card-frameless .totals-table+.charts,.tn-card-bordered .totals-table+.charts{padding-left:2rem}.source-of-streams .card-label{background-color:#5d66a2}.source-of-streams .trend-header{justify-content:space-around}.source-of-streams .trend-report{text-align:right;font-size:1.5rem}.tiktok-engagement .card-label,.tiktok-creations .card-label,.snapchat-views .card-label,.snapchat-creation .card-label{background-color:#5d66a2}.youtube-card .flex{display:flex}.youtube-card .panel{background-color:rgba(0,0,0,0)}.youtube-card .youtube-header{display:flex;flex:auto;justify-content:space-between;align-items:flex-end;width:100%}.youtube-card .card-label{background-color:#4b5055}.youtube-card .header-logo{position:relative;bottom:-6px;padding-right:2rem}.youtube-card .charts{padding-left:0;padding-right:0;padding-bottom:0}.youtube-card .charts .ReactTable .rt-tbody .rt-tr:hover{background:#fbfbfb}.youtube-card .charts:not(.charts-stacked) .ReactTable{height:28rem}.youtube-card .tn-bar-wrapper{height:24rem;align-self:center}.youtube-card .charts.charts-stacked>:nth-child(2){margin-top:2rem}.youtube-card .btn-help-link{display:flex;align-self:flex-end}.youtube-card .btn-help-link.type-text{margin-top:-3rem;z-index:1}@media only screen and (max-width: 480px){.youtube-card{padding-bottom:1rem}.youtube-card .btn-help-link.type-rounded-dark{align-self:center;margin-top:-1rem}}.source-of-streams .ReactTable .rt-tbody .rt-tr .rt-td,.number-of-streams .ReactTable .rt-tbody .rt-tr .rt-td,.youtube-card .ReactTable .rt-tbody .rt-tr .rt-td,.total-streams .ReactTable .rt-tbody .rt-tr .rt-td,.tiktok-engagement .ReactTable .rt-tbody .rt-tr .rt-td{text-overflow:initial;white-space:normal}.dataset-ref{display:flex;align-items:flex-start}.color-ref{min-width:1rem;width:1rem;min-height:1rem;height:1rem;border-radius:50%;margin-right:1rem;margin-top:.3rem;margin-bottom:.3rem}.scrolling-table{position:relative;height:100%;width:100%;display:flex;flex-direction:column;justify-content:center;transition:opacity 250ms;min-height:26rem}.stacked-card-wrapper{display:flex;flex-direction:column;flex:5 5 66rem}.context-section{flex:1}@media only screen and (max-width: 1200px){.source-of-streams{margin-top:0}}@media only screen and (max-width: 1100px){#youTube-section .tn-card .change-table,#youTube-section .tn-card-frameless .change-table,#youTube-section .tn-card-bordered .change-table{min-height:auto;margin-right:0;margin-bottom:4rem}#youTube-section .youtube-card .tn-bar-wrapper{align-self:normal}}@media only screen and (max-width: 960px)and (min-width: 801px){#streams-section{padding-bottom:6rem}#streams-section footer{position:absolute;bottom:-3rem;left:0}}@media only screen and (max-width: 960px){#streams-section .section-header,#youTube-section .section-header,#tiktok-section .section-header,#snapchat-section .section-header,#tn-active-passive .section-header{flex-direction:column;align-items:flex-start;margin-bottom:10px}#streams-section .section-header .date-with-scp-detect,#youTube-section .section-header .date-with-scp-detect,#tiktok-section .section-header .date-with-scp-detect,#snapchat-section .section-header .date-with-scp-detect,#tn-active-passive .section-header .date-with-scp-detect{flex-direction:column;align-items:stretch;width:100%;margin-top:20px}#tn-active-passive .tn-select{width:100%;margin-top:20px}#streams-section #source-of-streams{padding-top:4rem}#streams-section .card-info-wrapper{flex-direction:column}#streams-section .control-pane-padded,#streams-section .card-source-type{margin-top:2rem;flex-direction:column}#streams-section .control-pane-padded{align-items:normal}#streams-section .tn-select{width:100%}#streams-section .tn-card,#streams-section .tn-card-frameless,#streams-section .tn-card-bordered{margin-top:0}#streams-section .tn-card .panel-body,#streams-section .tn-card-frameless .panel-body,#streams-section .tn-card-bordered .panel-body{padding-top:3rem}#streams-section .tn-card.source-of-streams,#streams-section .source-of-streams.tn-card-frameless,#streams-section .source-of-streams.tn-card-bordered{margin-top:0;position:relative}#streams-section .tn-card.source-of-streams .panel-body,#streams-section .source-of-streams.tn-card-frameless .panel-body,#streams-section .source-of-streams.tn-card-bordered .panel-body{padding-top:3rem}#streams-section .tn-card.source-of-streams .retailers-selector,#streams-section .source-of-streams.tn-card-frameless .retailers-selector,#streams-section .source-of-streams.tn-card-bordered .retailers-selector{margin-bottom:2rem}#streams-section .tn-card.source-of-streams .scp-detect,#streams-section .source-of-streams.tn-card-frameless .scp-detect,#streams-section .source-of-streams.tn-card-bordered .scp-detect{margin-bottom:1rem}#streams-section .tn-card.source-of-streams .retailer-with-scp-detected,#streams-section .source-of-streams.tn-card-frameless .retailer-with-scp-detected,#streams-section .source-of-streams.tn-card-bordered .retailer-with-scp-detected{justify-content:space-between}.tn-card .change-table,.tn-card-frameless .change-table,.tn-card-bordered .change-table{margin-right:2rem;flex:0 1 40%}}@media only screen and (max-width: 600px){.tn-card,.tn-card-frameless,.tn-card-bordered{height:initial;margin:0}.tn-card.source-of-streams,.source-of-streams.tn-card-frameless,.source-of-streams.tn-card-bordered,.tn-card.significant-change,.significant-change.tn-card-frameless,.significant-change.tn-card-bordered,.tn-card.total-streams,.total-streams.tn-card-frameless,.total-streams.tn-card-bordered,.tn-card.playlist-add,.playlist-add.tn-card-frameless,.playlist-add.tn-card-bordered,.tn-card.playlist-drop,.playlist-drop.tn-card-frameless,.playlist-drop.tn-card-bordered,.tn-card.youtube-card,.youtube-card.tn-card-frameless,.youtube-card.tn-card-bordered,.tn-card.tiktok-engagement,.tiktok-engagement.tn-card-frameless,.tiktok-engagement.tn-card-bordered,.tn-card.current-playlists.no-algos,.current-playlists.no-algos.tn-card-frameless,.current-playlists.no-algos.tn-card-bordered,.tn-card.stacked-card-wrapper,.stacked-card-wrapper.tn-card-frameless,.stacked-card-wrapper.tn-card-bordered{min-width:initial;min-height:45rem;height:initial}.tn-card.number-of-streams,.number-of-streams.tn-card-frameless,.number-of-streams.tn-card-bordered{min-width:240px;min-height:45rem;height:initial}.tn-card .panel-heading,.tn-card-frameless .panel-heading,.tn-card-bordered .panel-heading{padding:3rem 2rem 1rem}.tn-card .panel-heading.panel-heading-min,.tn-card-frameless .panel-heading.panel-heading-min,.tn-card-bordered .panel-heading.panel-heading-min{flex:0 0 15rem}.tn-card .panel-body,.tn-card-frameless .panel-body,.tn-card-bordered .panel-body{flex:1 0 50%;padding:3rem 2rem}.tn-card .card-info.card-info.w-icon .card-label,.tn-card-frameless .card-info.card-info.w-icon .card-label,.tn-card-bordered .card-info.card-info.w-icon .card-label{padding-left:3rem}.tn-card .chart-group,.tn-card-frameless .chart-group,.tn-card-bordered .chart-group{min-height:12rem;margin-top:2rem}.tn-card .chart-group .label-lg,.tn-card .chart-group .badge,.tn-card .chart-group .blue-pill,.tn-card .chart-group .ReactTable .rt-th,.ReactTable .tn-card .chart-group .rt-th,.tn-card-frameless .chart-group .label-lg,.tn-card-frameless .chart-group .badge,.tn-card-frameless .chart-group .blue-pill,.tn-card-frameless .chart-group .ReactTable .rt-th,.ReactTable .tn-card-frameless .chart-group .rt-th,.tn-card-bordered .chart-group .label-lg,.tn-card-bordered .chart-group .badge,.tn-card-bordered .chart-group .blue-pill,.tn-card-bordered .chart-group .ReactTable .rt-th,.ReactTable .tn-card-bordered .chart-group .rt-th{display:none}.tn-card.significant-change,.significant-change.tn-card-frameless,.significant-change.tn-card-bordered{padding-top:0}}.top-songs.tn-card .panel,.top-songs.tn-card-frameless .panel,.top-songs.tn-card-bordered .panel{background-color:rgba(0,0,0,0)}.mobile-label{display:none}@media only screen and (max-width: 960px){.youtube-card .btn-help-link.type-rounded-dark,#tiktok-section .tiktok-engagement .btn-help-link.type-rounded-dark{align-self:center}.tn-card .change-table,.tn-card-frameless .change-table,.tn-card-bordered .change-table{min-height:25rem}#snapchat-section .charts,#tiktok-section .charts{flex-direction:column}#tiktok-section .tn-card.tiktok-creations,#tiktok-section .tiktok-creations.tn-card-frameless,#tiktok-section .tiktok-creations.tn-card-bordered{flex-direction:column}#tiktok-section .tn-card.tiktok-creations .charts .chart-group,#tiktok-section .tiktok-creations.tn-card-frameless .charts .chart-group,#tiktok-section .tiktok-creations.tn-card-bordered .charts .chart-group{top:0;margin-top:1rem}#tiktok-section .tn-card.tiktok-engagement,#tiktok-section .tiktok-engagement.tn-card-frameless,#tiktok-section .tiktok-engagement.tn-card-bordered{margin-top:1rem}#tiktok-section .value-change-inline,#tiktok-section .tiktok-metric{max-width:100%;justify-content:space-between}#tiktok-section .value-change-inline .flex-on-center,#tiktok-section .value-change-inline .value-change,#tiktok-section .tiktok-metric .flex-on-center,#tiktok-section .tiktok-metric .value-change{flex:none}}@media only screen and (max-width: 800px){.song-view .source-of-streams .chart-group,.song-view .number-of-streams .chart-group,.song-view .tiktok-engagement .chart-group{margin-top:2rem}.tn-card .change-table,.tn-card-frameless .change-table,.tn-card-bordered .change-table{min-height:initial}.song-view .source-of-streams .change-table,.song-view .number-of-streams .change-table,.song-view .tiktok-engagement .change-table,.total-streams .change-table{margin-right:0;padding:initial}.song-view .source-of-streams .totals-table,.song-view .number-of-streams .totals-table,.song-view .tiktok-engagement .totals-table,.total-streams .totals-table{padding:initial}.song-view .source-of-streams .charts,.song-view .number-of-streams .charts,.song-view .tiktok-engagement .charts,.total-streams .charts{flex-direction:column}.song-view .source-of-streams .stream-activity,.song-view .number-of-streams .stream-activity,.song-view .tiktok-engagement .stream-activity,.total-streams .stream-activity{margin-right:4rem}.song-view .source-of-streams .ReactTable .rt-thead .rt-th,.song-view .number-of-streams .ReactTable .rt-thead .rt-th,.song-view .tiktok-engagement .ReactTable .rt-thead .rt-th,.total-streams .ReactTable .rt-thead .rt-th{padding-left:1rem;padding-right:1rem}.song-view .source-of-streams .ReactTable .rt-thead .rt-th:nth-child(2),.song-view .source-of-streams .ReactTable .rt-tbody .rt-tr .rt-td:nth-child(2),.song-view .number-of-streams .ReactTable .rt-thead .rt-th:nth-child(2),.song-view .number-of-streams .ReactTable .rt-tbody .rt-tr .rt-td:nth-child(2),.song-view .tiktok-engagement .ReactTable .rt-thead .rt-th:nth-child(2),.song-view .tiktok-engagement .ReactTable .rt-tbody .rt-tr .rt-td:nth-child(2),.total-streams .ReactTable .rt-thead .rt-th:nth-child(2),.total-streams .ReactTable .rt-tbody .rt-tr .rt-td:nth-child(2){display:flex;justify-content:center}#youTube-consumption .section-header{margin-bottom:1rem}.youtube-card .tn-bar-wrapper{height:16rem}.youtube-card .youtube-header{flex-direction:column;align-items:flex-start}.youtube-card .control-pane{margin-top:2rem}.panel-with-scp-detect{margin-top:1rem;justify-content:space-between;width:100%}}@media only screen and (max-width: 600px){#total-streams-container .total-streams{padding:0}#total-streams-container .total-streams .charts{padding:0;padding-top:1rem}#total-streams-container .total-streams .charts .totals-table .ReactTable .rt-tbody .rt-td,#total-streams-container .total-streams .charts .totals-table .ReactTable .rt-tfoot .rt-td{padding-left:0;padding-right:0}.number-of-streams .change-table .ReactTable .rt-thead .rt-th,.source-of-streams .change-table .ReactTable .rt-thead .rt-th{padding-left:0;padding-right:1rem}.number-of-streams .change-table .ReactTable .rt-thead .rt-th>div:first-of-type:after,.source-of-streams .change-table .ReactTable .rt-thead .rt-th>div:first-of-type:after{position:absolute}.youtube-card .tn-bar-wrapper{height:12rem}.song-view .source-of-streams,.song-view .number-of-streams,.song-view .youtube-card{min-height:initial}.song-view .source-of-streams .ReactTable .rt-thead .rt-th,.song-view .number-of-streams .ReactTable .rt-thead .rt-th,.song-view .youtube-card .ReactTable .rt-thead .rt-th,.total-streams .ReactTable .rt-thead .rt-th{font-size:.9rem}#top-songs-container .ReactTable .secondaryText{width:100%;flex-wrap:wrap}}@media only screen and (max-width: 480px){#streams-section .section-header .tn-select{margin-top:1rem}#streams-section .number-of-streams>.control-pane{margin-left:-1rem;margin-right:-1rem}#streams-section .retailer-with-scp-detected{flex-direction:column}.tn-card .dataset-ref,.tn-card-frameless .dataset-ref,.tn-card-bordered .dataset-ref{max-width:100%}.tn-card.significant-change,.significant-change.tn-card-frameless,.significant-change.tn-card-bordered{padding-top:1rem;padding-bottom:1rem}.tn-card #top-songs-container .top-songs,.tn-card-frameless #top-songs-container .top-songs,.tn-card-bordered #top-songs-container .top-songs{padding:0}.tn-card #top-songs-container .top-songs header,.tn-card-frameless #top-songs-container .top-songs header,.tn-card-bordered #top-songs-container .top-songs header{padding:2rem}.tn-card.youtube-card .ReactTable .rt-tfoot,.youtube-card.tn-card-frameless .ReactTable .rt-tfoot,.youtube-card.tn-card-bordered .ReactTable .rt-tfoot{font-weight:600}.tn-card.source-of-streams,.source-of-streams.tn-card-frameless,.source-of-streams.tn-card-bordered{margin-top:0}.tn-card.source-of-streams .retailers-selector,.source-of-streams.tn-card-frameless .retailers-selector,.source-of-streams.tn-card-bordered .retailers-selector{width:100%}}@media only screen and (max-width: 375px){.total-streams .tooltip-inner{padding-left:1rem;padding-right:1rem;width:13.7rem}#streams-section .number-of-streams>.control-pane{margin-left:0;margin-right:0}}.help-link{display:flex;justify-content:center;align-items:center;height:100%;padding:0 1.5rem}.skiprate .charts{align-items:center;justify-content:space-around}.skiprate .panel-body{padding-top:2.5rem}.skiprate .card-info .card-label{background-color:#4b5055}.skiprate .tn-select .tn-select__control{background:rgba(0,0,0,0)}.skiprate .tooltip-index-item:nth-of-type(3){border-top:1px solid rgba(255,255,255,.25);padding-top:1rem}.skiprate-insight,.skiprate-legend-wrapper{font-weight:600;display:flex;justify-content:center;flex:0 0 20%}.skiprate-chart{display:flex;margin:0 2rem;justify-content:center;max-width:75rem;min-width:0}.active-passive-bar-chart{transform:translateX(-2rem);display:flex;flex:1;height:13rem;position:relative !important;max-width:100%}@media only screen and (max-width: 960px){.skiprate .skiprate-insight,.skiprate .skiprate-legend-wrapper{flex:0 0 100%;padding:1rem}.skiprate .skiprate-chart{margin:0 1rem}.skiprate .h2{text-align:center}.skiprate .active-passive-bar-chart{transform:initial}.skiprate .charts{flex-direction:row;flex-wrap:wrap}}@media only screen and (max-width: 600px){.skiprate .active-passive-bar-chart{height:10rem}}@media only screen and (max-width: 375px){.skiprate .skiprate-chart{margin:0}.skiprate .skiprate-legend-wrapper{padding:1rem 0}}.current-playlists .card-label{background-color:#626c80}.current-playlists.no-algos .algo-wrapper{display:none}.current-playlists .panel-heading{flex:0 0 auto}.current-playlists .panel-body{align-items:stretch}.current-playlists .playlists-panel{flex:0 0 auto}.current-playlists .playlists-panel .ReactTable .rt-tr{height:auto}.current-playlists .trend-header{flex-direction:row;justify-content:space-between;align-items:flex-end}.current-playlists .header-text{flex:1}.current-playlists .ReactTable{flex:1}.current-playlists .ReactTable .rt-table,.current-playlists .ReactTable .rt-tbody,.current-playlists .ReactTable .rt-tr-group,.current-playlists .ReactTable .rt-td{overflow:visible !important}.current-playlists .ReactTable .rt-thead .rt-tr{border-bottom:1px solid #4b5055}.current-playlists .ReactTable .rt-tbody .rt-td{height:8.5rem;margin:2rem 0;padding-top:0;padding-bottom:0;display:flex;align-items:center;justify-content:center}.current-playlists .ReactTable .rt-tbody .rt-td:not(:last-child){border-right:1px solid #d8d8d8}.current-playlists .algo-wrapper{padding-top:1rem;flex:0 0 auto}.current-playlists .algo-wrapper:not(:last-child){border-bottom:1px solid #d8d8d8;padding-bottom:4rem}.current-playlists .algo-wrapper:not(:first-child){padding-top:4rem}.current-playlists .algo-wrapper .max-width-wrapper{display:flex;max-width:144rem;width:100%;margin-left:auto;margin-right:auto}.current-playlists .algo-pl-data{flex:1;display:flex;align-items:center;justify-content:space-around;height:100%}.current-playlists .algo-pl-data .flex-column{margin:1rem}.current-playlists .algo-pl-name{display:flex;align-items:center;width:10rem;height:10rem;background-color:#4578ec;color:#fff;font-weight:800;font-size:1.4rem;padding:1rem;position:relative}.current-playlists .algo-pl-name.release-radar{background:#9e80e5;background:linear-gradient(135deg, #9e80e5 0%, #8488ef 45%, #8488ef 55%, #6866e0 100%)}.current-playlists .algo-pl-name.discover-weekly{background:#9e80e5;background:linear-gradient(135deg, #9caed3 0%, #5990cc 45%, #5990cc 55%, #4363c1 100%)}.current-playlists .algo-pl-name.daily-mix{background:#9e80e5;background:linear-gradient(135deg, #69acb5 0%, #72bcd3 45%, #72bcd3 55%, #36b595 100%)}.current-playlists .algo-pl-name.new-music-mix{background:#52adb0;background:linear-gradient(45deg, #f8274e 0%, #f8274e 25%, #fc5076 100%)}.current-playlists .algo-pl-name.favorites-mix{background:#52adb0;background:linear-gradient(45deg, #762fc3 0%, #762fc3 25%, #9a45e7 100%)}.current-playlists .algo-pl-name.chill-mix{background:#52adb0;background:linear-gradient(45deg, #52adb0 0%, #52adb0 25%, #5fcfbe 100%)}.current-playlists .algo-pl-change{font-size:1.4rem;text-align:center}.current-playlists .algo-pl-change .text-bold{padding-right:.2rem}.current-playlists .algo-pl-datapoint{flex-direction:column;text-align:center;justify-content:center;align-items:center}.current-playlists .algo-pl-data{padding:0 4rem;max-width:40rem}.current-playlists .algo-performance{position:relative;flex:1;max-width:33.3%;display:flex;align-items:center}.current-playlists .algo-performance:nth-child(n+2){padding-left:4rem}.current-playlists .algo-performance:nth-child(-n+2){border-right:1px solid #d8d8d8}.current-playlists .fa-star{color:#daa520}.current-playlists .ReactTable .rt-td.playlist .h2{line-height:1.8rem;margin-bottom:.5rem}.current-playlists .ReactTable .rt-td.playlist .playlist-art{width:5rem;height:5rem;flex:0 0 5rem;background-size:5rem,5rem;background-position:center;background-color:rgba(75,80,85,.1);border:1px solid rgba(75,80,85,.1);margin-right:1rem}.current-playlists .ReactTable .rt-td.history{padding-left:1rem}.current-playlists .ReactTable .rt-td.history .chartjs-tooltip{width:13rem}.current-playlists .ReactTable.playlist-active .-sort-desc,.current-playlists .ReactTable.playlist-active .-sort-asc,.current-playlists .ReactTable.streams-active .-sort-desc,.current-playlists .ReactTable.streams-active .-sort-asc,.current-playlists .ReactTable.conversion-rate-active .-sort-desc,.current-playlists .ReactTable.conversion-rate-active .-sort-asc,.current-playlists .ReactTable.history-active .-sort-desc,.current-playlists .ReactTable.history-active .-sort-asc,.current-playlists .ReactTable.added-active .-sort-desc,.current-playlists .ReactTable.added-active .-sort-asc{background-color:#fff}.current-playlists .ReactTable.playlist-active .rt-td.playlist,.current-playlists .ReactTable.streams-active .rt-td.streams,.current-playlists .ReactTable.conversion-rate-active .rt-td.conversion-rate,.current-playlists .ReactTable.history-active .rt-td.history,.current-playlists .ReactTable.added-active .rt-td.added{transition:none;background-color:#fff;height:12.5rem;margin-top:0;margin-bottom:0;padding-top:2rem;padding-bottom:2rem;border-right:none;border-left:none}.current-playlists .ReactTable.streams-active .rt-td.streams,.current-playlists .ReactTable.conversion-rate-active .rt-td.conversion-rate,.current-playlists .ReactTable.history-active .rt-td.history,.current-playlists .ReactTable.added-active .rt-td.added{margin-left:-1px}.current-playlists .streams{justify-content:flex-end}.current-playlists .streams .values,.current-playlists .streams .delta-section{display:flex;width:48%;flex-grow:0;flex-shrink:0;flex-basis:48%}.current-playlists .streams .values{justify-content:center}.current-playlists .streams .delta-section{justify-content:space-between}.current-playlists .streams .delta-section .delta{flex-grow:1}.current-playlists .streams .fa-long-arrow-alt-right{padding:0 1rem;align-self:flex-end;flex-grow:0;line-height:1.4rem}.current-playlists .conversion-rate .cell-content{justify-content:space-between}.current-playlists .conversion-rate .labelled-value{flex:1}.current-playlists .cell-content{display:flex;flex:1}.current-playlists .cell-content .data{display:flex;align-items:stretch;justify-content:center;width:100%}.current-playlists .cell-content .separator{flex:0 0 4%;position:relative;display:flex;justify-content:center}.current-playlists .cell-content .separator:after{content:"";height:100%;width:1px;background-color:#d8d8d8;position:relative}.current-playlists .stream-activity{height:9rem}.current-playlists .label-sm,.current-playlists #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .current-playlists .option-data,.current-playlists section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .current-playlists .option-data,.current-playlists .label-lg,.current-playlists .badge,.current-playlists .blue-pill,.current-playlists .ReactTable .rt-th,.ReactTable .current-playlists .rt-th{text-align:center;color:#787171;padding:.2rem}.current-playlists .value,.current-playlists .value-text{font-size:1.4rem;line-height:1.4rem}.current-playlists .big .value,.current-playlists .big .value-text{font-weight:600;font-size:2rem;line-height:2rem}.current-playlists .labelled-value{display:flex;flex-direction:column;justify-content:space-between}.current-playlists .labelled-value .value{text-align:center;align-items:baseline;justify-content:center}.current-playlists .labelled-value.big .value .fas{content:"";height:0;padding-left:0}.current-playlists .labelled-value.colorize.up .value{color:#12b3b3}.current-playlists .labelled-value.colorize.down .value{color:#ba324f}.current-playlists .labelled-date{display:flex;flex-direction:column;justify-content:space-between;margin:0 1rem}.current-playlists .labelled-date .value{display:flex;align-items:baseline;justify-content:center;text-transform:uppercase}@media(max-width: 1600px){.current-playlists .algo-pl-data{flex-direction:column;padding:0;width:100%;justify-content:space-around}}@media only screen and (max-width: 1200px){.current-playlists .ReactTable .playlist-details{width:100%;flex-direction:column}.current-playlists .ReactTable .playlist-details .border-left,.current-playlists .ReactTable .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .current-playlists .ReactTable .playlist-details #territories-reset-all+.view-selection,.current-playlists .ReactTable .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .current-playlists .ReactTable .playlist-details #territories-reset-all+.view-selection,.current-playlists .ReactTable .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .current-playlists .ReactTable .playlist-details #territories-reset-all+.view-selection{border-left-width:0;padding-left:0;margin-left:0}.current-playlists .ReactTable .playlist-details .h4{display:flex;flex-direction:column}.current-playlists .ReactTable .playlist-details .h4>span{margin-left:0}.current-playlists .ReactTable .rt-th.playlist-header{overflow:visible !important}.current-playlists .ReactTable .rt-td.playlist .h2{font-size:1.4rem}.current-playlists .ReactTable .rt-td.playlist .playlist-art{display:none}.current-playlists .ReactTable .delta-section{justify-content:center}.current-playlists .ReactTable .streams .cell-content{flex-direction:column;align-items:center}.current-playlists .ReactTable .labelled-date .label-sm,.current-playlists .ReactTable .labelled-date #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .current-playlists .ReactTable .labelled-date .option-data,.current-playlists .ReactTable .labelled-date section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .current-playlists .ReactTable .labelled-date .option-data,.current-playlists .ReactTable .labelled-value .label-sm,.current-playlists .ReactTable .labelled-value #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .current-playlists .ReactTable .labelled-value .option-data,.current-playlists .ReactTable .labelled-value section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .current-playlists .ReactTable .labelled-value .option-data{margin-bottom:.5rem}.current-playlists .ReactTable .streams .data{display:flex}.current-playlists .ReactTable .streams .history{width:100%;height:5rem}}@media only screen and (max-width: 960px){.current-playlists .algo-wrapper{padding-top:initial}.current-playlists .algo-wrapper .algo-pl-name{height:initial;font-size:1.2rem;text-align:center;width:initial}.current-playlists .algo-wrapper .algo-pl-data{flex-direction:column;flex:initial}.current-playlists .algo-wrapper .algo-performance{margin:0;flex-direction:column}.current-playlists .algo-pl-data{width:100%;height:initial;flex-direction:column;padding:initial}.current-playlists .algo-pl-name{height:10rem;width:10rem;padding:.2rem .7rem}.current-playlists .label-sm,.current-playlists #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .current-playlists .option-data,.current-playlists section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .current-playlists .option-data{order:0}.current-playlists .algo-pl-change{order:1}.current-playlists .algo-pl-datapoint:not(:first-child) .label-lg,.current-playlists .algo-pl-datapoint:not(:first-child) .badge,.current-playlists .algo-pl-datapoint:not(:first-child) .blue-pill,.current-playlists .algo-pl-datapoint:not(:first-child) .ReactTable .rt-th,.ReactTable .current-playlists .algo-pl-datapoint:not(:first-child) .rt-th{display:none}.current-playlists .algo-pl-datapoint{display:flex}.current-playlists .algo-performance{padding-top:2rem !important}.current-playlists .algo-performance>*{margin-bottom:.5rem}.current-playlists .algo-performance:nth-child(n+2){padding:initial}.current-playlists .ReactTable .playlist-details{width:100%;flex-direction:column}.current-playlists .ReactTable .playlist-details .border-left,.current-playlists .ReactTable .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .current-playlists .ReactTable .playlist-details #territories-reset-all+.view-selection,.current-playlists .ReactTable .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .current-playlists .ReactTable .playlist-details #territories-reset-all+.view-selection,.current-playlists .ReactTable .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .current-playlists .ReactTable .playlist-details #territories-reset-all+.view-selection{border-left-width:0;padding-left:0;margin-left:0}.current-playlists .ReactTable .playlist-details .h4{display:flex;flex-direction:column}.current-playlists .ReactTable .playlist-details .h4>span{margin-left:0}.current-playlists .ReactTable .separator{opacity:0;flex-basis:0}.current-playlists .ReactTable .big .value,.current-playlists .ReactTable .big .value-text{line-height:1.4rem;font-size:1.4rem}.current-playlists .ReactTable .rt-td.playlist,.current-playlists .ReactTable .playlist-header{flex:175 0 auto !important;width:175px !important}.current-playlists .ReactTable .rt-td.streams .cell-content .data{flex-direction:column;align-items:center}.current-playlists .ReactTable .rt-td.streams,.current-playlists .ReactTable .streams-header{flex:100 0 auto !important;width:100px !important}.current-playlists .ReactTable .rt-td.streams .cell-content .values,.current-playlists .ReactTable .rt-td.conversion-rate .cell-content .average{margin-bottom:2rem}.current-playlists .ReactTable .rt-td.conversion-rate .cell-content{flex-direction:column}.current-playlists .ReactTable .rt-td.conversion-rate,.current-playlists .ReactTable .conversion-rate-header{flex:100 0 auto !important;width:100px !important}.current-playlists .ReactTable .rt-td.added,.current-playlists .ReactTable .added-header{flex:75 0 auto !important;width:75px !important}}@media only screen and (max-width: 800px){.current-playlists .algos{padding-top:2rem}.current-playlists .algo-wrapper:not(:first-child){padding-top:2rem}.current-playlists .algo-wrapper:not(:last-child){padding-bottom:2rem}.current-playlists .algo-pl-name.release-radar,.current-playlists .algo-pl-name.discover-weekly,.current-playlists .algo-pl-name.daily-mix,.current-playlists .algo-pl-name.new-music-mix,.current-playlists .algo-pl-name.favorites-mix,.current-playlists .algo-pl-name.chill-mix{background:initial;color:#4b5055}.current-playlists .playlists-panel .ReactTable .playlist-details{width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;display:inline-flex;flex-direction:row;line-height:1rem;margin-top:.2rem;overflow:hidden !important}.current-playlists .playlists-panel .ReactTable .playlist-details .h4{width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;display:inline-block}.current-playlists .playlists-panel .ReactTable .playlist-details .h4>span:not(:first-child){margin-left:1rem}.current-playlists .playlists-panel .ReactTable .playlist-details .h4>span:not(:first-child).border-left,.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card .current-playlists .playlists-panel .ReactTable .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card-frameless .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-frameless .current-playlists .playlists-panel .ReactTable .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card-bordered .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-bordered .current-playlists .playlists-panel .ReactTable .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child){margin-left:0rem}.current-playlists .playlists-panel .ReactTable .playlist-details .border-left,.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .current-playlists .playlists-panel .ReactTable .playlist-details #territories-reset-all+.view-selection,.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .current-playlists .playlists-panel .ReactTable .playlist-details #territories-reset-all+.view-selection,.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .current-playlists .playlists-panel .ReactTable .playlist-details #territories-reset-all+.view-selection{border-left-width:1px;padding-left:1rem}.current-playlists .playlists-panel .ReactTable .rt-td{padding:1rem 0 !important;align-items:stretch;text-align:left;flex:auto !important;width:100% !important;height:initial;margin:initial;background-color:initial !important}.current-playlists .playlists-panel .ReactTable .rt-td:not(:first-child){justify-content:flex-start}.current-playlists .playlists-panel .ReactTable .rt-td:not(:last-child){border-bottom:1px solid rgba(75,80,85,.1);border-right:none}.current-playlists .playlists-panel .ReactTable .rt-td:before{font-weight:bold;margin-right:2rem;border-right:1px solid #d8d8d8;width:30%;min-width:12rem;flex:0 0 30%;display:inline-block}.current-playlists .playlists-panel .ReactTable .mobile-label{font-weight:bold;margin-right:2rem;border-right:1px solid #d8d8d8;width:30%;min-width:12rem;flex:0 0 30%;display:inline-block;text-transform:capitalize}.current-playlists .playlists-panel .ReactTable .rt-td{max-width:initial !important}.current-playlists .playlists-panel .ReactTable .rt-td.retailer:before{content:"Retailer"}.current-playlists .playlists-panel .ReactTable .rt-td.created-by:before{content:"Created by"}.current-playlists .playlists-panel .ReactTable .rt-td.position:before{content:"Position"}.current-playlists .playlists-panel .ReactTable .rt-td.followers:before{content:"Followers"}.current-playlists .playlists-panel .ReactTable .rt-td.trend:before{content:"Trend"}.current-playlists .playlists-panel .ReactTable .rt-td.pop-index:before{content:"Pop. Index"}.current-playlists .playlists-panel .ReactTable .rt-td.added .label-sm,.current-playlists .playlists-panel .ReactTable .rt-td.added #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .current-playlists .playlists-panel .ReactTable .rt-td.added .option-data,.current-playlists .playlists-panel .ReactTable .rt-td.added section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .current-playlists .playlists-panel .ReactTable .rt-td.added .option-data{display:none}.current-playlists .playlists-panel .ReactTable .rt-thead.-header{display:none}.current-playlists .playlists-panel .ReactTable .rt-tr-group{display:block}.current-playlists .playlists-panel .ReactTable .rt-tr-group:not(:last-child){border-bottom:1rem solid #fff}.current-playlists .playlists-panel .ReactTable .rt-tr{display:block !important}.current-playlists .playlists-panel .ReactTable .rt-tbody{min-width:100% !important}.current-playlists .playlists-panel .ReactTable .pagination-top .-pagination{border-top:none;border-bottom:1px solid #4b5055}.current-playlists .playlists-panel .ReactTable .trend-down,.current-playlists .playlists-panel .ReactTable .trend-up,.current-playlists .playlists-panel .ReactTable .trend-no-change{padding-left:0}.current-playlists .playlists-panel .ReactTable .rt-td.playlist{min-height:7rem}.current-playlists .playlists-panel .ReactTable .rt-td.playlist .h2{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.current-playlists .playlists-panel .ReactTable .rt-td.streams,.current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate{height:initial !important}.current-playlists .playlists-panel .ReactTable .rt-td.streams .labelled-value,.current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate .labelled-value{flex-direction:row;align-items:baseline;justify-content:center;flex:initial}.current-playlists .playlists-panel .ReactTable .rt-td.streams .cell-content,.current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate .cell-content{flex-wrap:wrap}.current-playlists .playlists-panel .ReactTable .rt-td.streams .delta-section,.current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate .delta-section{margin:initial;width:initial;flex-basis:initial}.current-playlists .playlists-panel .ReactTable .rt-td.streams .label-sm,.current-playlists .playlists-panel .ReactTable .rt-td.streams #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .current-playlists .playlists-panel .ReactTable .rt-td.streams .option-data,.current-playlists .playlists-panel .ReactTable .rt-td.streams section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .current-playlists .playlists-panel .ReactTable .rt-td.streams .option-data,.current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate .label-sm,.current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option .current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate .option-data,.current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate .option-data{margin-bottom:0;margin-right:1rem}.current-playlists .playlists-panel .ReactTable .rt-td.streams .data{justify-content:flex-start;align-items:flex-start;flex-wrap:wrap;flex-direction:row;margin-top:-4px}.current-playlists .playlists-panel .ReactTable .rt-td.streams .data>span{padding-top:2px}.current-playlists .playlists-panel .ReactTable .rt-td.streams .values{margin:initial;margin-right:1rem;width:initial;flex:0 0 auto;justify-content:flex-start;flex-wrap:wrap}.current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate .cell-content{flex-direction:row;justify-content:flex-start;margin-top:-4px}.current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate .cell-content .track,.current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate .cell-content .average{padding-top:2px}.current-playlists .playlists-panel .ReactTable .rt-td.conversion-rate .average{margin:initial;margin-right:1rem}.current-playlists .playlists-panel .ReactTable .rt-td.added{flex:1}.current-playlists .playlists-panel .ReactTable .rt-td.added .labelled-date{margin:0;flex-direction:row;justify-content:flex-start;align-items:baseline}.current-playlists .playlists-panel .ReactTable .rt-td.added .header{margin:initial;margin-right:1rem}}@media only screen and (max-width: 600px){.current-playlists .algo-performance:nth-child(n+1){border:none}}@media only screen and (max-width: 480px){.current-playlists .playlists-panel .ReactTable .playlist-details{width:100%;flex-direction:column}.current-playlists .playlists-panel .ReactTable .playlist-details .border-left,.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .current-playlists .playlists-panel .ReactTable .playlist-details #territories-reset-all+.view-selection,.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .current-playlists .playlists-panel .ReactTable .playlist-details #territories-reset-all+.view-selection,.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .current-playlists .playlists-panel .ReactTable .playlist-details #territories-reset-all+.view-selection{border-left-width:0;padding-left:0;margin-left:0}.current-playlists .playlists-panel .ReactTable .playlist-details .h4{display:flex;flex-direction:column}.current-playlists .playlists-panel .ReactTable .playlist-details .h4>span{margin-left:0}.current-playlists .playlists-panel .ReactTable .rt-td.playlist .h2{white-space:initial}}@media only screen and (max-width: 375px){.current-playlists .playlists-panel .ReactTable .playlist-details{width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;display:inline-flex;flex-direction:row;line-height:1rem;margin-top:.2rem;overflow:hidden !important}.current-playlists .playlists-panel .ReactTable .playlist-details .h4{width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;display:inline-block}.current-playlists .playlists-panel .ReactTable .playlist-details .h4>span:not(:first-child){margin-left:1rem}.current-playlists .playlists-panel .ReactTable .playlist-details .h4>span:not(:first-child).border-left,.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card .current-playlists .playlists-panel .ReactTable .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card-frameless .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-frameless .current-playlists .playlists-panel .ReactTable .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card-bordered .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-bordered .current-playlists .playlists-panel .ReactTable .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child){margin-left:0rem}.current-playlists .playlists-panel .ReactTable .playlist-details .border-left,.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .current-playlists .playlists-panel .ReactTable .playlist-details #territories-reset-all+.view-selection,.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .current-playlists .playlists-panel .ReactTable .playlist-details #territories-reset-all+.view-selection,.current-playlists .playlists-panel .ReactTable .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .current-playlists .playlists-panel .ReactTable .playlist-details #territories-reset-all+.view-selection{border-left-width:1px;padding-left:1rem}.current-playlists .playlists-panel .ReactTable .rt-td{flex-direction:column}.current-playlists .playlists-panel .ReactTable .rt-td:before{width:initial;flex:0 0 auto;border-right:none;margin-bottom:1rem}.current-playlists .playlists-panel .ReactTable .mobile-label{border-right:0}}@media only screen and (min-width: 1200px){.ReactTable .h2{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.ReactTable .playlist-details{width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;display:inline-flex;flex-direction:row;line-height:1rem;margin-top:.2rem;overflow:hidden !important}.ReactTable .playlist-details .h4{width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;display:inline-block}.ReactTable .playlist-details .h4>span:not(:first-child){margin-left:1rem}.ReactTable .playlist-details .h4>span:not(:first-child).border-left,.ReactTable .playlist-details section#tn-territories .tn-card .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card .ReactTable .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.ReactTable .playlist-details section#tn-territories .tn-card-frameless .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-frameless .ReactTable .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.ReactTable .playlist-details section#tn-territories .tn-card-bordered .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-bordered .ReactTable .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child){margin-left:0rem}.ReactTable .playlist-details .border-left,.ReactTable .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .ReactTable .playlist-details #territories-reset-all+.view-selection,.ReactTable .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .ReactTable .playlist-details #territories-reset-all+.view-selection,.ReactTable .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .ReactTable .playlist-details #territories-reset-all+.view-selection{border-left-width:1px;padding-left:1rem}.ReactTable .playlist-art+.ellipsis .playlist-details,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details{width:100%;flex-direction:column}.ReactTable .playlist-art+.ellipsis .playlist-details .border-left,.ReactTable .playlist-art+.ellipsis .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .ReactTable .playlist-art+.ellipsis .playlist-details #territories-reset-all+.view-selection,.ReactTable .playlist-art+.ellipsis .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .ReactTable .playlist-art+.ellipsis .playlist-details #territories-reset-all+.view-selection,.ReactTable .playlist-art+.ellipsis .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .ReactTable .playlist-art+.ellipsis .playlist-details #territories-reset-all+.view-selection,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details .border-left,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details .border-left,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection{border-left-width:0;padding-left:0;margin-left:0}.ReactTable .playlist-art+.ellipsis .playlist-details .h4,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details .h4,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details .h4{display:flex;flex-direction:column}.ReactTable .playlist-art+.ellipsis .playlist-details .h4>span,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details .h4>span,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details .h4>span{margin-left:0}}@media only screen and (min-width: 1601px){.ReactTable .playlist-art+.ellipsis .playlist-details,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details{width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;display:inline-flex;flex-direction:row;line-height:1rem;margin-top:.2rem;overflow:hidden !important}.ReactTable .playlist-art+.ellipsis .playlist-details .h4,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details .h4,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details .h4{width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;display:inline-block}.ReactTable .playlist-art+.ellipsis .playlist-details .h4>span:not(:first-child),.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details .h4>span:not(:first-child),.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details .h4>span:not(:first-child){margin-left:1rem}.ReactTable .playlist-art+.ellipsis .playlist-details .h4>span:not(:first-child).border-left,.ReactTable .playlist-art+.ellipsis .playlist-details section#tn-territories .tn-card .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card .ReactTable .playlist-art+.ellipsis .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.ReactTable .playlist-art+.ellipsis .playlist-details section#tn-territories .tn-card-frameless .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-frameless .ReactTable .playlist-art+.ellipsis .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.ReactTable .playlist-art+.ellipsis .playlist-details section#tn-territories .tn-card-bordered .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-bordered .ReactTable .playlist-art+.ellipsis .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details .h4>span:not(:first-child).border-left,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details section#tn-territories .tn-card .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card .ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-frameless .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-frameless .ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-bordered .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-bordered .ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details .h4>span:not(:first-child).border-left,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details section#tn-territories .tn-card .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card .view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-frameless .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-frameless .view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child),.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-bordered .h4>#territories-reset-all+span.view-selection:not(:first-child),section#tn-territories .tn-card-bordered .view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details .h4>#territories-reset-all+span.view-selection:not(:first-child){margin-left:0rem}.ReactTable .playlist-art+.ellipsis .playlist-details .border-left,.ReactTable .playlist-art+.ellipsis .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .ReactTable .playlist-art+.ellipsis .playlist-details #territories-reset-all+.view-selection,.ReactTable .playlist-art+.ellipsis .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .ReactTable .playlist-art+.ellipsis .playlist-details #territories-reset-all+.view-selection,.ReactTable .playlist-art+.ellipsis .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .ReactTable .playlist-art+.ellipsis .playlist-details #territories-reset-all+.view-selection,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details .border-left,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection,.ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .ReactTable .view-header .song-breadcrumbs .breadcrumb-level .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details .border-left,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card .view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless .view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection,.view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered .view-header .song-breadcrumbs .breadcrumb-level .ReactTable .playlist-art+.route-link .playlist-details #territories-reset-all+.view-selection{border-left-width:1px;padding-left:1rem}}.scd-pagination{display:flex;padding:3rem 0;justify-content:flex-end}.scd-pagination .pagination-compact{font-size:1.6rem}.significant-change{flex:1;display:flex;flex-direction:column;padding:0;margin-bottom:0;color:#4578ec;overflow:visible}.significant-change .scd-content{display:flex;position:relative;flex:1;align-items:center;z-index:1}.significant-change .scd-content .tn-pagination{margin-top:2rem;display:flex;justify-content:center}.significant-change .scd-ribbon-icon{margin-right:2.5rem;filter:drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15))}.significant-change.scd-compact{box-shadow:0 3px 7px 0 rgba(0,0,0,.15);overflow:visible;background:rgba(255,255,255,.15);min-height:10rem;color:#fff;position:relative;margin-top:1rem}.significant-change.scd-compact,.significant-change.scd-compact:after{border-radius:4px}.significant-change.scd-compact:hover:after{background-color:rgba(141,183,238,.3);filter:saturate(1.5)}.significant-change.scd-compact .scd-content{padding-left:4rem;height:100%}.significant-change.scd-compact .scd-content>*:not(.tooltip){margin-left:0;margin-right:4rem}.scd-item .significant-change.scd-compact .filter-link,.scd-item .significant-change.scd-compact .route-link{display:flex;flex:1}.significant-change.scd-compact .retailer-icon{bottom:2px}.significant-change.scd-compact .scd-ribbon-icon{margin:initial}@media only screen and (max-width: 960px){.significant-change.scd-compact .scd-content{flex-direction:row}}@media only screen and (max-width: 800px){.significant-change{min-height:initial;margin-top:1rem}.significant-change .scd-pagination{justify-content:center}.significant-change .scd-pagination+.flex-item{margin-top:-1rem}.significant-change.scd-compact{padding-left:1.3333333333rem}.significant-change.scd-compact .scd-content{flex-wrap:wrap;padding:1rem}.significant-change.scd-compact .scd-content>*{margin-right:initial !important}.significant-change.scd-compact .scd-content .scd-icon-up-active{margin:0}.significant-change.scd-compact .scd-content:nth-last-child(2){margin-right:1rem}}@media only screen and (max-width: 480px){.significant-change .btn-help-link.rounded-light{width:100%;right:0 !important}}@media only screen and (max-width: 960px){.song-view .scd-item{display:flex;flex-direction:column}}.charts{display:flex;flex:1;min-height:15rem}.charts.charts-stacked{flex-direction:column}canvas{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.nivo-tooltip,.map-tooltip,.chartjs-tooltip{opacity:1;-webkit-transition:all .1s ease;transition:all .1s ease;pointer-events:none}.nivo-tooltip .tooltip,.nivo-tooltip .tooltip-inner,.map-tooltip .tooltip,.map-tooltip .tooltip-inner,.chartjs-tooltip .tooltip,.chartjs-tooltip .tooltip-inner{width:20rem;padding-left:1.2rem;padding-right:1.2rem}.map-tooltip{max-width:20rem;z-index:3 !important}.chartjs-tooltip{position:absolute;max-width:20rem;padding:0 !important;transform:translate3d(0, 0, 0)}.chartjs-tooltip.tooltip.center{transform:translate(1rem, -10%)}.chartjs-tooltip-key{display:inline-block;width:10px;height:10px;margin-right:10px}.tooltip-x-label,.tooltip-after-label{font-weight:600;color:#d8d8d8;text-transform:uppercase}.tooltip-index-item{display:flex;align-items:flex-end;justify-content:space-between;color:#d8d8d8;font-size:1.1rem;width:100%;margin:.7rem 0}.tooltip-index-item:first-child{margin-top:0}.tooltip-index-item .tooltip-before-label{margin-right:1rem}.tooltip-index-item .tooltip-before-label,.tooltip-index-item .tooltip-index-item-label{text-overflow:ellipsis;overflow:hidden}.tooltip-index-item .tooltip-index-item-label{display:flex;align-items:flex-start}.tooltip-index-item .tooltip-dataset-color{display:inline-block;width:1rem;min-width:1rem;height:1rem;border:1px solid #fff;margin-right:.5rem;border-radius:.75rem;margin-top:.3rem}.tooltip-index-item .tooltip-before-label{margin-right:1rem;text-align:left}.tooltip-index-item .tooltip-before-label,.tooltip-index-item .tooltip-label{font-weight:600;font-size:inherit}.youtube-card .tooltip-index-item:nth-last-child(2),.youtube-card .tooltip-index-item:last-child,.territories .tooltip-index-item:nth-last-child(2),.territories .tooltip-index-item:last-child,.skiprate .tooltip-index-item:nth-last-child(2),.skiprate .tooltip-index-item:last-child{margin-bottom:0}.tooltip-content{display:flex;flex-direction:column;justify-content:center;align-items:center}.tooltip-title{padding-bottom:1rem;color:#fff;text-transform:capitalize}.tooltip-title,.tooltip-label{font-weight:800;font-size:1.5rem;text-transform:uppercase}.tooltip-after-body{font-size:1rem;color:#d8d8d8;opacity:.75}.chart-legend{display:flex;justify-content:space-around}.chart-legend .legend-item{display:flex;flex-direction:column;flex:1;max-width:10rem;padding:0 .5rem;text-align:center;transition:200ms opacity;font-size:1.2rem;color:initial}.chart-legend .legend-item.legend-item-off{opacity:.5}.chart-legend .legend-item-swatch{min-width:1rem;min-height:.4rem;color:#787171;background-color:#d8d8d8;display:inline-block;margin-bottom:.4rem;border-radius:.2rem}.chart-legend .legend-item-change{padding-left:.5rem}.chart-legend .legend-item-text{font-weight:600;padding:0;font-size:1.2rem}.chart-legend .legend-item-marker{margin-top:1rem;margin-left:auto;margin-right:auto;height:.4rem;width:0;background-color:rgba(0,0,0,0);transition-property:opacity,width;transition-duration:150ms;transition-timing-function:ease-in}.checkbox-hidden.checked .legend-item-marker{width:100%}.chart-group .label-lg,.chart-group .badge,.chart-group .blue-pill,.chart-group .ReactTable .rt-th,.ReactTable .chart-group .rt-th{padding:.5rem}.chart-label-left{text-align:right}.chart-label-top{order:-1}.chart-label-bottom{order:1}.chart-label-right{text-align:left}.chart-label-left,.chart-label-right{font-weight:600;font-size:10px;align-self:center;width:40%}.stacked-bar{flex:1;min-width:9rem;display:flex;flex-direction:column}.bar-stack-segment{width:20%;border-bottom:1px solid #fff;margin:0 .5rem}@media only screen and (max-width: 480px){.chartjs-tooltip{max-width:14rem}.chartjs-tooltip .tooltip-index-item{font-size:1.1rem;margin:.3rem 0;line-height:1.3rem}.chartjs-tooltip .tooltip-index-item .tooltip-before-label{margin-right:1rem}}.tn-pie-wrapper{padding:0;position:relative;display:flex;margin:2rem;justify-content:center;align-items:center}.tn-pie-wrapper.tn-pie-200{height:20rem;width:20rem;min-width:10rem;max-width:20rem;flex:0 1 20rem}.tn-pie-wrapper.tn-pie-90{height:9rem;width:9rem;min-width:9rem;max-width:9rem;flex:0 1 9rem}.tn-pie-wrapper .tn-pie{position:absolute;width:100%;height:20rem;max-width:20rem;max-height:20rem;flex:0 1 20rem}.tn-pie-wrapper .tn-pie svg{overflow:visible}.tn-pie-wrapper .tn-pie-center{justify-content:center;align-items:center;display:flex;flex-direction:column;position:absolute}.tn-bar-wrapper{flex:1;transition:flex 400ms ease-in-out;min-width:0}.tn-bar-wrapper.tn-bar-200{height:20rem}.tn-bar-wrapper.tn-bar-300{height:30rem}.tn-bar-wrapper.tn-bar-400{height:40rem}.tn-bar-wrapper .tooltip-index-item:nth-last-child(2){border-bottom:1px solid rgba(255,255,255,.25);padding-bottom:1rem}.tn-bar-wrapper.single-bar-stacked-horizontal{width:100%;height:4rem}.tn-bar-wrapper svg{overflow:visible}.charts-stacked .tn-bar-wrapper{flex:0 0 auto}@media only screen and (max-width: 960px){.chart-group .label-lg,.chart-group .badge,.chart-group .blue-pill,.chart-group .ReactTable .rt-th,.ReactTable .chart-group .rt-th{font-size:1.1rem}}@media only screen and (max-width: 480px){.nivo-tooltip .tooltip,.nivo-tooltip .tooltip-inner,.chartjs-tooltip .tooltip,.chartjs-tooltip .tooltip-inner{width:16rem}.chart-legend .legend-item-text{font-size:1.1rem}}@media only screen and (max-width: 375px){.chart-legend .legend-item{padding:0 .1rem}.chart-legend .legend-item-text{padding:0}}.pulser-container{border-radius:2rem;backface-visibility:hidden;transition-property:border-radius,width,height;transition-duration:500ms;width:3rem;height:2rem;margin-left:1rem;margin-right:-1rem}.pulser-container.on{border-radius:0}.pulser-container.on .pulser,.pulser-container.on .random-pulser{width:3rem;height:2rem;top:0}.pulser,.random-pulser{position:relative;height:0;width:0;top:100%;transition:height 1s,top 1s}.pulser-bar{width:20%;height:0;position:relative;bottom:0;background-color:#fff;margin:0 .1rem}.pulser .pulser-bar,.random-pulser .pulser-bar{animation-iteration-count:infinite;animation-duration:1000ms}.pulser .pulser-bar:nth-child(1),.pulser .pulser-bar:nth-child(5){animation-name:pulse25}.pulser .pulser-bar:nth-child(2),.pulser .pulser-bar:nth-child(4){animation-name:pulse50}.pulser .pulser-bar:nth-child(3){animation-name:pulse}.random-pulser .bar25{animation-name:pulse25}.random-pulser .bar50{animation-name:pulse50}.random-pulser .bar75{animation-name:pulse75}.random-pulser .bar100{animation-name:pulse}@keyframes pulse{40%{top:0;height:100%}0%,80%{top:100%;height:0}}@keyframes pulse75{35%{top:25%;height:75%}0%,70%{top:100%;height:0}}@keyframes pulse50{35%{top:50%;height:50%}0%,70%{top:100%;height:0}}@keyframes pulse25{30%{top:75%;height:25%}0%,60%{top:100%;height:0}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes counterspin{from{transform:rotate(360deg)}to{transform:rotate(-360deg)}}.spinner-container{width:3rem;height:3rem}.index-meter{display:flex;flex-direction:column;position:relative;height:100%;width:100%;flex:1}.index-meter .index-rule{position:relative;height:100%;left:0;right:0;margin:0 4px;max-height:2rem}.index-meter .index-rule:after{background:repeating-linear-gradient(to right, rgba(120, 113, 113, 0.75), rgba(120, 113, 113, 0.75) 2px, transparent 2px, transparent 25%);position:absolute;top:0;right:0;bottom:0;left:0;content:"";border-right:2px solid rgba(0,0,0,0)}.index-meter .index-rule:before{background:repeating-linear-gradient(to right, rgba(216, 216, 216, 0.5), rgba(216, 216, 216, 0.5) 2px, transparent 2px, transparent 5%);position:absolute;top:50%;bottom:0;left:0;right:0;content:""}.index-meter .index-level{position:absolute;height:100%}.index-meter .index-level.index-up{background:repeating-linear-gradient(to right, rgba(18, 179, 179, 0.75), rgba(18, 179, 179, 0.75) 10px, transparent 10px, transparent 12px)}.index-meter .index-level.index-down{background:repeating-linear-gradient(to right, rgba(186, 50, 79, 0.75), rgba(186, 50, 79, 0.75) 10px, transparent 10px, transparent 12px)}.metrics-grid{display:grid;grid-gap:1rem;justify-content:space-between;display:grid;grid-gap:2rem;justify-content:space-between;grid-template-columns:repeat(auto-fit, minmax(20rem, 1fr))}@media only screen and (max-width: 600px){.metrics-grid{padding:2rem 1rem}}@media only screen and (max-width: 1050px){.metrics-grid{grid-template-columns:repeat(2, minmax(20rem, 1fr))}}@media only screen and (max-width: 600px){.metrics-grid{grid-template-columns:repeat(auto-fit, minmax(18rem, 1fr))}}@media only screen and (max-width: 480px){.metrics-grid{grid-gap:1rem}}@media only screen and (max-width: 390px){.metrics-grid{grid-template-columns:1fr}}.metric-card .metric-secondary .divider{height:2rem}.metric-right-left .left-metric{padding-right:2rem}.metric-right-left .right-metric{padding-left:2rem}.metric-primary{display:flex;flex-direction:column;align-items:flex-start;min-width:0}.metric-header>span{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;overflow-wrap:break-word}.metric-card{display:grid;grid-gap:1rem;justify-content:space-between;grid-template-areas:"head head head head head graph" "primary primary primary secondary secondary secondary";grid-auto-columns:1fr;grid-template-rows:1fr auto}@media only screen and (max-width: 600px){.metric-card{padding:2rem 1rem}}.metric-card .metric-header{grid-area:head}.metric-card .metric-graph{grid-area:graph;justify-self:end}.metric-card .metric-primary{grid-area:primary}.metric-card .metric-secondary{grid-area:secondary;justify-self:end}._2x2{display:grid;grid-gap:1rem;justify-content:space-between;grid-template-areas:"head head head head head graph" "primary primary primary secondary secondary secondary";grid-auto-columns:1fr;grid-template-rows:1fr auto}@media only screen and (max-width: 600px){._2x2{padding:2rem 1rem}}._2x2 .metric-header{grid-area:head}._2x2 .metric-graph{grid-area:graph;justify-self:end}._2x2 .metric-primary{grid-area:primary}._2x2 .metric-secondary{grid-area:secondary;justify-self:end}._1x2-center{display:grid;grid-gap:1rem;justify-content:space-between;justify-content:stretch;align-content:space-between;grid-template-areas:"head" "primary";grid-auto-rows:auto;grid-template-rows:auto 1fr}@media only screen and (max-width: 600px){._1x2-center{padding:2rem 1rem}}._1x2-center .metric-secondary{display:flex;flex-direction:column;align-items:flex-start;justify-self:start}._1x2-center .metric-header,._1x2-center .metric-primary{justify-self:center;align-items:center}._1x2-center .metric-header.grid-justify-stretch,._1x2-center .metric-primary.grid-justify-stretch{justify-self:stretch;min-width:0}._1x2-center .metric-primary{justify-content:center}._1x2-center .metric-header{text-align:center}._1x3-start{display:grid;grid-gap:1rem;justify-content:space-between;justify-content:stretch;align-content:space-between;grid-template-areas:"head" "primary" "secondary";grid-auto-rows:auto}@media only screen and (max-width: 600px){._1x3-start{padding:2rem 1rem}}._1x3-start .metric-secondary{display:flex;flex-direction:column;align-items:flex-start;justify-self:start}._1x3-center{display:grid;grid-gap:1rem;justify-content:space-between;justify-content:stretch;align-content:space-between;grid-template-areas:"head" "primary" "secondary";grid-auto-rows:auto;grid-template-rows:auto 1fr}@media only screen and (max-width: 600px){._1x3-center{padding:2rem 1rem}}._1x3-center .metric-secondary{display:flex;flex-direction:column;align-items:flex-start;justify-self:start}._1x3-center .metric-header,._1x3-center .metric-primary,._1x3-center .metric-secondary{justify-self:center;align-items:center}._1x3-center .metric-header.grid-justify-stretch,._1x3-center .metric-primary.grid-justify-stretch,._1x3-center .metric-secondary.grid-justify-stretch{justify-self:stretch;min-width:0}._1x3-center .metric-primary{justify-content:center}._1x3-center .metric-header{text-align:center}._2x2-start{display:grid;grid-gap:1rem;justify-content:space-between;justify-content:stretch;align-content:space-between;grid-template-areas:"head head" "primary secondary";grid-auto-rows:auto auto}@media only screen and (max-width: 600px){._2x2-start{padding:2rem 1rem}}._2x2-start .metric-secondary{display:flex;flex-direction:column;align-items:flex-end;justify-self:end}#tn-global-metrics .metric-card .metric-primary .blue{display:flex;justify-content:flex-start}#tn-global-metrics .metric-card .metric-secondary .blue{display:flex;justify-content:flex-end}#tn-global-metrics .metric-card .metric-secondary .blue .divider{height:2rem}@media only screen and (max-width: 600px){#tn-global-metrics .metrics-grid .metric-card{display:grid;grid-gap:1rem;justify-content:space-between;justify-content:stretch;align-content:space-between;grid-template-areas:"head" "primary" "secondary";grid-auto-rows:auto;grid-template-rows:auto 1fr}}@media only screen and (max-width: 600px)and (max-width: 600px){#tn-global-metrics .metrics-grid .metric-card{padding:2rem 1rem}}@media only screen and (max-width: 600px){#tn-global-metrics .metrics-grid .metric-card .metric-secondary{display:flex;flex-direction:column;align-items:flex-start;justify-self:start}}@media only screen and (max-width: 600px){#tn-global-metrics .metrics-grid .metric-card .metric-header,#tn-global-metrics .metrics-grid .metric-card .metric-primary,#tn-global-metrics .metrics-grid .metric-card .metric-secondary{justify-self:center;align-items:center}#tn-global-metrics .metrics-grid .metric-card .metric-header.grid-justify-stretch,#tn-global-metrics .metrics-grid .metric-card .metric-primary.grid-justify-stretch,#tn-global-metrics .metrics-grid .metric-card .metric-secondary.grid-justify-stretch{justify-self:stretch;min-width:0}}@media only screen and (max-width: 600px){#tn-global-metrics .metrics-grid .metric-card .metric-primary{justify-content:center}}@media only screen and (max-width: 600px){#tn-global-metrics .metrics-grid .metric-card .metric-header{text-align:center}}#tn-global-metrics .section-header{padding:0}#tn-global-metrics .section-header .h2{line-height:2.2rem}#tn-global-metrics .lg-font{margin-left:0}#tn-global-metrics .tn-card-feature-100{height:20rem}#tn-global-metrics .tn-card-linked{display:flex;flex-direction:column;position:relative}#tn-global-metrics .tn-card-linked,#tn-global-metrics .tn-card-linked .tn-card,#tn-global-metrics .tn-card-linked .tn-card-frameless,#tn-global-metrics .tn-card-linked .tn-card-bordered{transition:height 100ms ease-in-out,margin 100ms ease-in-out}#tn-global-metrics .tn-card-linked:hover .tn-card,#tn-global-metrics .tn-card-linked:hover .tn-card-frameless,#tn-global-metrics .tn-card-linked:hover .tn-card-bordered{height:21rem;margin-top:-0.5rem;margin-bottom:-0.5rem}#tn-global-metrics .tn-card-linked:hover:after{bottom:-3rem;opacity:1}#tn-global-metrics .tn-card-linked:after{content:"";width:2rem;height:2rem;bottom:-2rem;opacity:0;transition:bottom 100ms ease-in-out,opacity 100ms ease-in-out;position:absolute;align-self:center;transform:rotate(-90deg);border:1rem solid rgba(0,0,0,0);border-right-color:#4578ec;pointer-events:none}#tn-global-metrics .label{text-align:left}#tn-global-metrics .order-second .trend-up,#tn-global-metrics .order-second .trend-down{padding-right:0}#tn-global-metrics .legend-bar{width:.8rem;height:100%}#tn-global-metrics .blue-line-stripes{background-color:rgba(0,0,0,0);background-image:repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(69, 120, 236, 0.8) 3px, rgba(69, 120, 236, 0.8) 5px)}@media(min-width: 600px)and (max-width: 1350px){#tn-global-metrics .lg-font{font-size:2.5rem}}@media(min-width: 1050px)and (max-width: 1200px){#tn-global-metrics .tn-wrapper-sm{height:6rem;min-width:6rem;max-width:6rem;flex:0 1 6rem}}@media(min-width: 600px)and (max-width: 750px){#tn-global-metrics .lg-font{font-size:2.2rem;line-height:3rem}#tn-global-metrics .tn-wrapper-sm{height:5.5rem;min-width:5.5rem;max-width:5.5rem;flex:0 1 5.5rem}}@media(min-width: 1050px)and (max-width: 1100px){#tn-global-metrics .tn-card,#tn-global-metrics .tn-card-frameless,#tn-global-metrics .tn-card-bordered{padding:2rem}#tn-global-metrics .lg-font{font-size:2.2rem}#tn-global-metrics .tn-wrapper-sm{height:5.5rem;min-width:5.5rem;max-width:5.5rem;flex:0 1 5.5rem}}@media only screen and (max-width: 1050px){#tn-global-metrics .tn-card-linked{transition:none}#tn-global-metrics .tn-card-linked:hover{height:20rem;margin:0}#tn-global-metrics .tn-card-linked:after{content:none}}@media only screen and (max-width: 600px){#tn-global-metrics .tn-card,#tn-global-metrics .tn-card-frameless,#tn-global-metrics .tn-card-bordered{min-width:18rem}}@media only screen and (max-width: 390px){#tn-global-metrics .global-metrics-grid{grid-template-columns:1fr}#tn-global-metrics .section-header{margin-top:0;flex-direction:column;align-items:flex-start}#tn-global-metrics .section-header .header{padding-bottom:0}#tn-global-metrics .section-header .header .h2{line-height:3rem}#tn-global-metrics .section-header .timestamp{padding-bottom:.5rem;text-align:left;margin-left:0}#tn-global-metrics .section-header .timestamp div:first-child{display:flex;flex-direction:row;align-items:center}#tn-global-metrics .section-header .timestamp div:first-child .timestamp{padding-left:1rem;padding-bottom:0;font-size:1.1rem}}section#tn-territories{padding-top:2rem;height:calc(100vh - 55px - 75px);max-height:75rem;min-height:63rem;transition:margin 200ms}section#tn-territories .ReactTable .rt-tbody .rt-tr{height:4rem}section#tn-territories #territories-map,section#tn-territories #territories-table,section#tn-territories .territory-metrics{transition:filter 400ms}section#tn-territories .table-view .blurred #territories-map,section#tn-territories .table-view .blurred #territories-table,section#tn-territories .table-view .blurred .territory-metrics,section#tn-territories .summary-view .blurred #territories-map,section#tn-territories .summary-view .blurred #territories-table,section#tn-territories .summary-view .blurred .territory-metrics{filter:blur(1px)}section#tn-territories .detail-view .blurred #territories-map{filter:blur(1px)}section#tn-territories .detail-view .dropdown-open.blurred #territory-metrics-detail-wrapper{filter:blur(1px)}section#tn-territories .detail-view .dropdown-open #territory-metrics-detail-wrapper{z-index:0}section#tn-territories #territories-control-pane{grid-area:control-pane}section#tn-territories #territories-control-pane .tn-select__control{height:3rem;min-height:3rem;border-radius:25px;background-color:#fff;box-shadow:none}section#tn-territories #territories-control-pane .territory-indicator{margin-right:.5rem}section#tn-territories #territories-control-pane input{overflow:hidden;font-size:1.2rem !important}section#tn-territories #territories-control-pane .reset-button{height:auto}section#tn-territories #territories-control-pane .retailers-selector .tn-select__group{overflow:initial}section#tn-territories #territories-control-pane>div{padding:0}section#tn-territories #territories-control-pane .tn-select{margin-right:1rem}section#tn-territories #territories-control-pane .tn-select .tn-select__value-container{padding:0;padding-left:.5rem}section#tn-territories #territories-control-pane .tn-select .tn-select__control{border:none}section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__value-container{padding-right:0}section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__value-container input{max-width:13rem}section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__value-container:not(.tn-select__value-container--has-value) input{margin-left:0;max-width:16rem}section#tn-territories #territories-control-pane .tn-select.territories-selector.selector-open .tn-select__control{background-color:#fff}section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-label{flex:1 1 60%}section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .value-change{flex:0 0 40%;min-width:12rem}section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .streams{min-width:12rem;text-align:center}section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data{display:flex;flex:0 0 40%;color:#4578ec}section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data.streams-only{flex:1;justify-content:flex-end}@media only screen and (max-width: 960px){section#tn-territories #territories-control-pane .tn-select{flex:1;min-width:initial;max-width:18rem}section#tn-territories #territories-control-pane .tn-select__control{box-shadow:0 1px 2px 1px rgba(75,80,85,.1),0px 1rem .5rem -0.5rem rgba(93,102,162,.1)}section#tn-territories #territories-control-pane .tn-select:last-child{margin-right:0}}@media only screen and (max-width: 480px){section#tn-territories #territories-control-pane .tn-select.territories-selector{min-width:16rem}section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__group.content-group{max-height:18vh;min-height:12.5rem}}@media only screen and (max-width: 375px){section#tn-territories #territories-control-pane .tn-select.territories-selector{min-width:15rem}section#tn-territories #territories-control-pane .tn-select.retailers-selector{min-width:12rem}}@media only screen and (max-width: 960px){section#tn-territories #territories-control-pane{position:absolute;top:0;left:4rem;right:4rem;padding:0;z-index:2;background:none;flex-direction:column;align-items:stretch;justify-content:space-between}section#tn-territories #territories-control-pane .dropdown-button{margin-right:0;max-width:initial}section#tn-territories #territories-control-pane .dropdown-button>.dropdown-toggle{min-width:15rem}section#tn-territories #territories-control-pane>div:first-child{order:1}section#tn-territories #territories-control-pane>div:last-child{order:0}}@media only screen and (max-width: 600px){section#tn-territories #territories-control-pane{left:2rem;right:2rem}}section#tn-territories .overlay{background:linear-gradient(180deg, rgba(216, 216, 216, 0) 0%, rgba(216, 216, 216, 0.5) 15%, #f4f8fe 100%)}@media only screen and (max-width: 960px){section#tn-territories .section-header .reset-button{display:flex;align-items:flex-end}}@media only screen and (max-width: 480px){section#tn-territories .section-header .reset-button{padding-bottom:.5rem}}section#tn-territories article{max-height:100%;position:relative;display:grid;grid-gap:2rem;grid-template-areas:"control-pane" "content";grid-template-rows:auto 1fr;grid-template-columns:1fr}@media only screen and (max-width: 960px){section#tn-territories article{display:flex;grid-area:content-start/grid-start/grid-end/grid-end;grid-gap:initial;grid-template-rows:none;grid-template-areas:none;grid-template-columns:none}section#tn-territories article.table-view .invisible{max-height:0;height:0;overflow:hidden;display:none !important}section#tn-territories article .overlay{z-index:1}}section#tn-territories .territories-action-button{position:absolute;top:0;right:0;bottom:0;left:0;bottom:initial;display:flex;justify-content:flex-end;align-items:flex-end;transition:margin-right 200ms linear}section#tn-territories #territories-content{max-height:100%;flex:1;position:relative}section#tn-territories #territories-content.table-content{background-color:rgba(0,0,0,0);margin-left:-3rem;margin-right:-3rem}section#tn-territories #territories-content .territory-bar{position:relative}@media only screen and (min-width: 961px){section#tn-territories #territories-content{grid-area:content;display:grid;grid-gap:2rem;justify-content:space-between;grid-template-areas:"table map map" "table map map" "table metrics metrics";grid-template-rows:1fr auto;grid-template-columns:repeat(3, 1fr)}}@media only screen and (max-width: 960px){section#tn-territories #territories-content{display:flex;flex-direction:column;padding:0 4rem}}@media only screen and (max-width: 600px){section#tn-territories #territories-content{padding:0 2rem}}section#tn-territories #territories-table{padding-left:0;padding-right:0;position:relative;grid-area:table;display:flex;flex-direction:column}section#tn-territories #territories-table.expanded{grid-column-start:table;grid-column-end:-1}section#tn-territories #territories-table>.tn-card,section#tn-territories #territories-table>.tn-card-frameless,section#tn-territories #territories-table>.tn-card-bordered{flex:1;padding:1rem 2rem}section#tn-territories #territories-table>.tn-card .value-change,section#tn-territories #territories-table>.tn-card-frameless .value-change,section#tn-territories #territories-table>.tn-card-bordered .value-change{min-width:10rem}section#tn-territories #territories-table .ReactTable{justify-content:space-between}section#tn-territories #territories-table .rt-table .rt-thead .rt-th:first-child{color:#787171}section#tn-territories #territories-table .rt-table .rt-thead .rt-tr,section#tn-territories #territories-table .rt-table .rt-tr-group{padding:0}section#tn-territories #territories-table .rt-table .rt-tr-group{border-width:0}section#tn-territories #territories-table .rt-table .rt-tr-group .rt-tr .rt-td:first-child>span{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}section#tn-territories #territories-table .rt-table .rt-tr-group:not(:first-child) .rt-tr{border-top:solid 1px rgba(0,0,0,.05)}section#tn-territories #territories-table .rt-table .rt-tr-group.inactive{opacity:1}section#tn-territories #territories-table .rt-table .rt-tr-group.active{background-color:#f4f8fe;margin-top:-1px;padding-top:1px;margin-left:4px;margin-right:4px;padding-left:1.6rem;padding-right:1.6rem}section#tn-territories #territories-table .rt-table .rt-tr-group.active .rt-tr{border-bottom-color:rgba(0,0,0,0)}section#tn-territories #territories-table .rt-table .rt-tr-group.empty .rt-tr{border-top:none}section#tn-territories #territories-table .pagination-bottom{display:flex;flex-direction:column;justify-content:center;border-top:none;height:4rem}section#tn-territories #territories-table .pagination-bottom .tn-pagination{justify-content:center;align-items:center;display:flex;height:100%;border-top:solid 1px rgba(0,0,0,.05)}@media only screen and (max-width: 960px){section#tn-territories #territories-table{justify-content:flex-end;flex:0 1 auto}section#tn-territories #territories-table>.tn-card,section#tn-territories #territories-table>.tn-card-frameless,section#tn-territories #territories-table>.tn-card-bordered{flex:0;margin-bottom:4rem}section#tn-territories #territories-table .territories-action-button{margin-top:-1.5rem;margin-left:-1.5rem;margin-right:-1.5rem}}@media only screen and (max-width: 600px){section#tn-territories #territories-table>.tn-card,section#tn-territories #territories-table>.tn-card-frameless,section#tn-territories #territories-table>.tn-card-bordered{margin-bottom:2rem}}@media only screen and (min-width: 960px){section#tn-territories #territories-table .tn-card,section#tn-territories #territories-table .tn-card-frameless,section#tn-territories #territories-table .tn-card-bordered{padding-left:0;padding-right:0}section#tn-territories #territories-table .pagination-bottom{margin-left:2rem;margin-right:2rem}section#tn-territories #territories-table .rt-table .rt-thead .rt-tr,section#tn-territories #territories-table .rt-table .rt-tr-group{padding-left:2rem;padding-right:2rem}}section#tn-territories #territories-map{position:relative;margin:-2rem;margin-right:-3rem}@media only screen and (min-width: 961px){section#tn-territories #territories-map{z-index:0;grid-area:map/map/metrics}}section#tn-territories #territories-map>svg{height:100%;width:100%}@media only screen and (max-width: 960px){section#tn-territories #territories-map{top:3.5rem;margin-left:-4rem;margin-right:-4rem;flex:1 0 50%}}@media only screen and (max-width: 960px)and (min-height: 860px){section#tn-territories #territories-map{flex:1 0 40%}}@media only screen and (max-width: 960px)and (max-height: 660px){section#tn-territories #territories-map{flex:1 0 38%}}@media only screen and (max-width: 600px){section#tn-territories #territories-map{margin-left:-2rem;margin-right:-2rem}}section#tn-territories #territories-map path.rsm-geography.focused{filter:drop-shadow(0 0 1px rgba(75, 80, 85, 0.5)) drop-shadow(1px 1px 1px rgba(75, 80, 85, 0.2)) drop-shadow(2px 2px 2px rgba(93, 102, 162, 0.2))}section#tn-territories #territory-metrics-panel{display:flex}section#tn-territories #territory-metrics-detail-wrapper{z-index:2;padding-top:4rem;padding-left:0;padding-right:0;position:absolute;top:0;right:0;bottom:0;left:0;top:4rem;transition:top 500ms ease-in-out 500ms,padding 500ms}section#tn-territories #territory-metrics-detail-wrapper.invisible{top:50%}section#tn-territories #territory-metrics-detail-wrapper>.tn-card,section#tn-territories #territory-metrics-detail-wrapper>.tn-card-frameless,section#tn-territories #territory-metrics-detail-wrapper>.tn-card-bordered{padding:0 4rem;max-height:100%}section#tn-territories #territory-metrics-detail-wrapper .badge-pill,section#tn-territories #territory-metrics-detail-wrapper .blue-pill{margin-left:4rem}section#tn-territories #territory-metrics-detail-wrapper .territories-action-button{margin-top:-1.5rem;margin-left:1rem;margin-right:1rem}@media only screen and (max-width: 600px){section#tn-territories #territory-metrics-detail-wrapper>.tn-card,section#tn-territories #territory-metrics-detail-wrapper>.tn-card-frameless,section#tn-territories #territory-metrics-detail-wrapper>.tn-card-bordered{padding-left:2rem;padding-right:2rem}section#tn-territories #territory-metrics-detail-wrapper .badge-pill,section#tn-territories #territory-metrics-detail-wrapper .blue-pill{margin-left:2rem}}section#tn-territories #territory-metrics-summary-wrapper{display:flex;flex-direction:column;margin-top:-3rem;flex:0 1 auto;transition:top 100ms ease-in-out,padding 100ms}@media only screen and (max-width: 960px){section#tn-territories #territory-metrics-summary-wrapper{padding-bottom:1rem}}section#tn-territories .territory-metrics{display:flex;flex-direction:column;min-height:20rem}section#tn-territories .territory-metrics .badge-pill,section#tn-territories .territory-metrics .blue-pill{margin-bottom:1rem}@media only screen and (min-width: 960px)and (max-width: 1200px){section#tn-territories .territory-metrics .badge-pill,section#tn-territories .territory-metrics .blue-pill{margin-left:0}}section#tn-territories .territory-metrics .metric-card{flex:1;max-width:24rem;padding:2rem 1rem}section#tn-territories .territory-metrics .metric-card:not(:last-child){margin-right:2rem}@media only screen and (max-width: 960px){section#tn-territories .territory-metrics{flex:1 0 50%;justify-content:flex-end;z-index:1;max-height:100%;transition:margin 200ms linear,flex 200ms linear}section#tn-territories .territory-metrics .value-change>:first-child{color:#4578ec;font-weight:600}section#tn-territories .territory-metrics.expanded{flex:0 1 auto;margin:0;margin-bottom:-5rem;padding-top:0;padding-bottom:0}section#tn-territories .territory-metrics.expanded .territories-action-button{margin-right:.5rem}}@media only screen and (min-width: 961px){section#tn-territories .territory-metrics{z-index:0;display:flex;grid-area:metrics}}@media only screen and (min-width: 960px)and (max-width: 1200px){section#tn-territories .territory-metrics{min-height:initial}section#tn-territories .territory-metrics .tn-tbody{flex-direction:row;flex-wrap:wrap}section#tn-territories .territory-metrics .tn-tr{flex:1 1 50%}section#tn-territories .territory-metrics .tn-tr:nth-child(even){padding-left:2rem}section#tn-territories .territory-metrics .tn-tr:nth-child(odd){padding-right:2rem;border-right:1px solid rgba(75,80,85,.1)}section#tn-territories .territory-metrics .tn-tr:nth-child(n+3){border-bottom:none}}section#tn-territories .territory-metrics #territory-metrics-summary .metric-active-passive .md-font{font-size:1.2rem}section#tn-territories .territory-metrics #territory-metrics-summary .tn-tr>.tn-td:first-of-type{flex:0 1 auto}section#tn-territories .territory-metrics #territory-metrics-summary .tn-tr>.tn-td:last-of-type{flex:1 1 50%}section#tn-territories #territory-metrics-detail{margin:0 -2rem;padding:0 2rem 1rem}section#tn-territories #territory-metrics-detail .tn-card,section#tn-territories #territory-metrics-detail .tn-card-frameless,section#tn-territories #territory-metrics-detail .tn-card-bordered{margin-bottom:1rem}section#tn-territories #territory-metrics-detail .tn-card:first-of-type,section#tn-territories #territory-metrics-detail .tn-card-frameless:first-of-type,section#tn-territories #territory-metrics-detail .tn-card-bordered:first-of-type{margin-top:2rem}section#tn-territories #territory-metrics-detail .tn-bar-wrapper{margin-left:0}section#tn-territories #territory-metrics-detail #streams-detail .tn-bar-wrapper{height:5rem;margin-top:1rem;margin-bottom:-2rem}section#tn-territories #territory-metrics-detail #top-retailer-detail .tn-bar-wrapper{margin-top:1rem}section#tn-territories #territory-metrics-detail .passive-metric .label-sm,section#tn-territories #territory-metrics-detail .passive-metric #territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data,#territories-selector-modal .tn-select.territories-selector .tn-select__option section#tn-territories #territory-metrics-detail .passive-metric .option-data,section#tn-territories #territory-metrics-detail .passive-metric #territories-control-pane .tn-select.territories-selector .tn-select__option .option-data,section#tn-territories #territories-control-pane .tn-select.territories-selector .tn-select__option #territory-metrics-detail .passive-metric .option-data,section#tn-territories #territory-metrics-detail .passive-metric .text-feature{color:#626c80}section#tn-territories .retailer-legend{display:flex;flex-wrap:wrap;justify-content:center}section#tn-territories .retailer-legend>span{padding-left:2rem}@media only screen and (max-width: 480px){section#tn-territories .retailer-legend>span{padding-left:1.5rem}section#tn-territories .retailer-legend>span:first-child{padding-left:0}section#tn-territories .retailer-legend .dataset-ref .color-ref{margin-right:.3rem}}@media only screen and (max-width: 375px){section#tn-territories .retailer-legend>span:not(:first-child){padding-left:1rem}}@media only screen and (max-width: 350px){section#tn-territories .retailer-legend{display:none}}section#tn-territories .tn-card,section#tn-territories .tn-card-frameless,section#tn-territories .tn-card-bordered{position:relative}section#tn-territories .tn-card .dropdown-button,section#tn-territories .tn-card-frameless .dropdown-button,section#tn-territories .tn-card-bordered .dropdown-button{min-width:15rem;max-width:21rem;height:3.8rem;flex:1;position:relative;background:rgba(0,0,0,0)}section#tn-territories .tn-card .dropdown-button:after,section#tn-territories .tn-card-frameless .dropdown-button:after,section#tn-territories .tn-card-bordered .dropdown-button:after{content:none}section#tn-territories .tn-card .dropdown-button .dropdown-toggle,section#tn-territories .tn-card-frameless .dropdown-button .dropdown-toggle,section#tn-territories .tn-card-bordered .dropdown-button .dropdown-toggle{width:100%;height:100%;display:flex;justify-content:space-between;border:1px solid #ccc;border-radius:4px !important;background:rgba(0,0,0,0);margin:0 0 -2px 0}section#tn-territories .tn-card .top-territories-title,section#tn-territories .tn-card-frameless .top-territories-title,section#tn-territories .tn-card-bordered .top-territories-title{margin-top:0;margin-bottom:4rem;padding-left:2rem}section#tn-territories .tn-card .pill-list .badge.badge-rounded,section#tn-territories .tn-card .pill-list .badge-rounded.blue-pill,section#tn-territories .tn-card-frameless .pill-list .badge.badge-rounded,section#tn-territories .tn-card-frameless .pill-list .badge-rounded.blue-pill,section#tn-territories .tn-card-bordered .pill-list .badge.badge-rounded,section#tn-territories .tn-card-bordered .pill-list .badge-rounded.blue-pill{padding:.6rem 1.2rem .8rem 1.2rem;margin:.3rem .3rem .3rem 0}section#tn-territories .tn-card .pill-list .badge.badge-rounded .close-icon,section#tn-territories .tn-card .pill-list .badge-rounded.blue-pill .close-icon,section#tn-territories .tn-card-frameless .pill-list .badge.badge-rounded .close-icon,section#tn-territories .tn-card-frameless .pill-list .badge-rounded.blue-pill .close-icon,section#tn-territories .tn-card-bordered .pill-list .badge.badge-rounded .close-icon,section#tn-territories .tn-card-bordered .pill-list .badge-rounded.blue-pill .close-icon{padding-right:0;padding-left:1rem;margin-left:1rem;border-left:1px solid #d8d8d8}section#tn-territories .tn-card .territories-table-selectors,section#tn-territories .tn-card-frameless .territories-table-selectors,section#tn-territories .tn-card-bordered .territories-table-selectors{display:flex;margin-bottom:4rem}section#tn-territories .tn-card .tn-bar-wrapper,section#tn-territories .tn-card-frameless .tn-bar-wrapper,section#tn-territories .tn-card-bordered .tn-bar-wrapper{margin-left:-1rem;margin-bottom:0}section#tn-territories .tn-card .tn-bar-wrapper .chart-label:first-child,section#tn-territories .tn-card-frameless .tn-bar-wrapper .chart-label:first-child,section#tn-territories .tn-card-bordered .tn-bar-wrapper .chart-label:first-child{padding-left:0}section#tn-territories .tn-card .checkbox-options-wrapper,section#tn-territories .tn-card-frameless .checkbox-options-wrapper,section#tn-territories .tn-card-bordered .checkbox-options-wrapper{overflow:hidden;height:0;margin:-2rem;margin-top:2rem}section#tn-territories .tn-card .checkbox-options,section#tn-territories .tn-card-frameless .checkbox-options,section#tn-territories .tn-card-bordered .checkbox-options{display:flex;padding:.5rem 2rem;background-color:#ebf2fd}section#tn-territories .tn-card #tn-territories-bar-right-axis,section#tn-territories .tn-card-frameless #tn-territories-bar-right-axis,section#tn-territories .tn-card-bordered #tn-territories-bar-right-axis{margin-bottom:5.5rem;margin-top:1.5rem}section#tn-territories .tn-card #territories-reset-all,section#tn-territories .tn-card-frameless #territories-reset-all,section#tn-territories .tn-card-bordered #territories-reset-all{height:100%;display:flex;align-items:center;white-space:initial;flex:auto}section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection{padding-left:2rem;margin-left:1rem}section#tn-territories .tn-card .mobile-label,section#tn-territories .tn-card-frameless .mobile-label,section#tn-territories .tn-card-bordered .mobile-label{display:none}@media only screen and (max-width: 960px){section#tn-territories{max-width:100vw;overflow:hidden;max-height:initial;min-height:calc(
      56.8rem - 55px - 75px
    );background:initial;background-color:#f4f8fe;padding-bottom:0}section#tn-territories.section-grid{grid-template-rows:[grid-start] auto [content-start] 1fr [grid-end]}section#tn-territories .tn-card.territories .territories-table-selectors,section#tn-territories .territories.tn-card-frameless .territories-table-selectors,section#tn-territories .territories.tn-card-bordered .territories-table-selectors{flex-direction:column;margin-bottom:2rem}section#tn-territories .tn-card.territories .territories-table-selectors>div,section#tn-territories .territories.tn-card-frameless .territories-table-selectors>div,section#tn-territories .territories.tn-card-bordered .territories-table-selectors>div{margin-top:3rem}}@media only screen and (max-width: 480px){section#tn-territories{grid-gap:0}section#tn-territories .tn-card .tn-bar-wrapper svg+div,section#tn-territories .tn-card-frameless .tn-bar-wrapper svg+div,section#tn-territories .tn-card-bordered .tn-bar-wrapper svg+div{left:initial !important;right:initial !important;width:100%;display:flex;justify-content:center}}@media only screen and (max-width: 960px){section#tn-territories #territory-metrics-detail{padding-bottom:11rem}}.tn-mobile section#tn-territories{height:calc(100vh - 75px);min-height:calc(56.8rem - 75px)}@media only screen and (max-width: 960px){.tn-mobile section#tn-territories #territories-map{bottom:50%}}@media only screen and (max-width: 960px)and (min-height: 700px){.tn-mobile section#tn-territories #territories-map{bottom:42%}}@media only screen and (max-width: 960px)and (min-height: 800px){.tn-mobile section#tn-territories #territories-map{bottom:37%}}@media only screen and (max-width: 960px)and (min-height: 900px){.tn-mobile section#tn-territories #territories-map{bottom:33%}}@media only screen and (max-width: 960px){.tn-mobile section#tn-territories #territory-metrics-detail{padding-bottom:2rem}}@media only screen and (max-width: 480px){.tn-mobile section#tn-territories .tn-select.territories-selector .tn-select__group.content-group{max-height:45vh}}@media only screen and (max-width: 375px){.tn-mobile section#tn-territories .tn-select.territories-selector .tn-select__group.content-group{max-height:32vh}}#territories-selector-modal{display:flex;flex-direction:column;position:relative;margin:2rem;flex:1}#territories-selector-modal .content{padding-bottom:0;border-radius:5px;flex:0 1 auto;overflow:hidden}#territories-selector-modal .tn-select.territories-selector{margin:0 auto}#territories-selector-modal .tn-select.territories-selector .tn-select__control{height:3rem;min-height:3rem;border-radius:25px;background-color:#fff;box-shadow:none}#territories-selector-modal .tn-select.territories-selector .territory-indicator{margin-right:.5rem}#territories-selector-modal .tn-select.territories-selector input{overflow:hidden;font-size:1.2rem !important}#territories-selector-modal .tn-select.territories-selector .tn-select__control{border:1px solid #787171}#territories-selector-modal .tn-select.territories-selector .tn-select__control--is-focused{border:1px solid #4578ec}#territories-selector-modal .tn-select.territories-selector .tn-select__control>div{padding-top:0;padding-bottom:0}#territories-selector-modal .tn-select.territories-selector .tn-select__menu{min-width:initial;width:100%;border-radius:0;box-shadow:none;position:relative;margin-bottom:0}#territories-selector-modal .tn-select.territories-selector .tn-select__menu-list{max-height:initial}@media only screen and (min-height: 1025px){#territories-selector-modal .tn-select.territories-selector .tn-select__menu{min-height:30rem}}@media only screen and (max-height: 1024px){#territories-selector-modal .tn-select.territories-selector .tn-select__menu{height:24rem}}@media only screen and (max-height: 900px){#territories-selector-modal .tn-select.territories-selector .tn-select__menu{height:20rem}}@media only screen and (max-height: 800px){#territories-selector-modal .tn-select.territories-selector .tn-select__menu{height:16rem}}@media only screen and (max-height: 700px){#territories-selector-modal .tn-select.territories-selector .tn-select__menu{height:12rem}}@media only screen and (max-height: 600px){#territories-selector-modal .tn-select.territories-selector .tn-select__menu{height:8rem}}#territories-selector-modal .tn-select.territories-selector .tn-select__group{overflow-y:auto;max-height:initial}#territories-selector-modal .tn-select.territories-selector .tn-select__group div{padding-left:0;padding-right:0}#territories-selector-modal .tn-select.territories-selector .tn-select__group .option-label .custom-checkbox span{font-size:1.8rem}#territories-selector-modal .tn-select.territories-selector .tn-select__option .option-label{flex:1 1 60%}#territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data{display:flex;flex:0 0 40%;color:#4578ec}#territories-selector-modal .tn-select.territories-selector .tn-select__option .option-data.streams-only{flex:1;justify-content:flex-end}#territories-selector-modal .tn-select.territories-selector .tn-select__option .streams{min-width:15rem;text-align:center}@media only screen and (max-width: 375px){#territories-selector-modal .tn-select.territories-selector .tn-select__option .value-change,#territories-selector-modal .tn-select.territories-selector .tn-select__option .streams{min-width:11rem}}@media only screen and (max-height: 1024px){.tn-mobile #territories-selector-modal .tn-select.territories-selector .tn-select__menu{height:28rem}}@media only screen and (max-height: 900px){.tn-mobile #territories-selector-modal .tn-select.territories-selector .tn-select__menu{height:24rem}}@media only screen and (max-height: 800px){.tn-mobile #territories-selector-modal .tn-select.territories-selector .tn-select__menu{height:20rem}}@media only screen and (max-height: 600px){.tn-mobile #territories-selector-modal .tn-select.territories-selector .tn-select__menu{height:16rem}}#territories-selector-modal .show-territories-button{margin-top:1rem;border-radius:5px;background:#fff;color:#4578ec;text-transform:uppercase;height:4rem;width:100%;display:flex;justify-content:center;align-items:center;border:none;flex:0 0 auto}.selector-options{display:flex;justify-content:flex-start;align-items:center;margin:0 auto 1rem auto}.selector-options .badge:last-child,.selector-options .blue-pill:last-child{margin-left:auto}.selector-options .badge:first-child,.selector-options .blue-pill:first-child{margin-left:0}.tn-pagination .pagination-page,.tn-pagination .pagination-button,.tn-pagination .pagination-ellipsis{justify-content:center;align-items:center;height:2.4rem;min-width:2.4rem;line-height:2.4rem;display:inline-flex}.tn-pagination .pagination-page{font-size:1.4rem;text-align:center;border-radius:2px;padding:0}.tn-pagination .pagination-page:hover,.tn-pagination .pagination-page.active{font-weight:800}.tn-pagination .pagination-page.active{background-color:#ededed}.tn-pagination .pagination-button{color:#d8d8d8;cursor:not-allowed}.tn-pagination .pagination-button.active{cursor:pointer;color:#4b5055}.tn-pagination .pagination-button .fa,.tn-pagination .pagination-button .fas,.tn-pagination .pagination-button .far{width:2rem;height:2rem;line-height:2rem;text-align:center;border-radius:50%}.tn-pagination .pagination-button.active:hover .fa,.tn-pagination .pagination-button.active:hover .fas,.tn-pagination .pagination-button.active:hover .far{background-color:#f4f4f4;color:#4b5055}.tn-pagination.pagination-dark-theme{color:#fff}.tn-pagination.pagination-dark-theme .pagination-button{color:rgba(255,255,255,.4)}.tn-pagination.pagination-dark-theme .pagination-button .fa,.tn-pagination.pagination-dark-theme .pagination-button .fas,.tn-pagination.pagination-dark-theme .pagination-button .far{box-shadow:none}.tn-pagination.pagination-dark-theme .pagination-button.active{cursor:pointer;color:#fff}.tn-pagination.pagination-dark-theme .pagination-button.active:hover .fa,.tn-pagination.pagination-dark-theme .pagination-button.active:hover .fas,.tn-pagination.pagination-dark-theme .pagination-button.active:hover .far{background-color:rgba(255,255,255,.15);color:#fff}.tn-pagination.pagination-dark-theme .pagination-page.active{background-color:rgba(255,255,255,.3)}.tn-pagination .pagination-ellipsis{width:2.4rem}.tn-pagination.pagination-compact{justify-content:center;align-items:center;flex:1;display:flex}.tn-pagination.pagination-compact .pagination-button{width:initial;height:initial}.tn-pagination.pagination-compact .pagination-button .far{transition:background-color .1s;font-size:1.5rem;width:3rem;height:3rem;line-height:3rem;margin:0 2rem}.tn-pagination.pagination-compact.pagination-dark-theme .pagination-button .far{background-color:rgba(255,255,255,.1)}.modal-overlay{position:absolute;top:0;right:0;bottom:0;left:0;top:55px;justify-content:center;align-items:center;display:flex;background-color:rgba(255,255,255,.95);z-index:4}.modal-overlay .btn-close{position:absolute;top:0;right:0;padding:2rem;z-index:1;font-size:1.6rem}.tn-mobile .modal-overlay{top:0}.info-modal{position:fixed;margin:2rem;color:#000;background-color:rgba(0,0,0,0)}.info-modal .info-modal-content{background:#fff;position:absolute;height:100%;width:100%;padding:2rem;padding-bottom:0;border-radius:.5rem;box-shadow:0 3px 7px 0 rgba(0,0,0,.15)}.info-modal .modal-text-content{height:100%;display:flex;flex-flow:column}.info-modal .modal-text-content h3,.info-modal .modal-text-content h4{font-weight:600}.info-modal .modal-text-content h3{margin-top:2.5rem}.info-modal .modal-text-content h3+p{margin-top:.5rem}.info-modal .modal-text-content h4{margin:1.5rem 0 0}.info-modal .modal-text-content h4+p{margin-top:.5rem}.info-modal .modal-text-content .header-content{flex:0 1 auto}.info-modal .modal-text-content .header-content h2{font-weight:700;font-size:1.6rem;padding-bottom:1rem}.info-modal .modal-text-content .header-content h3{padding-bottom:1rem;margin:0}.info-modal .modal-text-content .header-content hr{background:#4578ec;background:linear-gradient(108.9deg, #9055f7 0%, #4578ec 71.63%, #4578ec 100%);height:.2rem;margin:0}.info-modal .modal-text-content .scroll-content{flex:1 1 auto;overflow-y:auto;padding-right:2rem}.info-modal .modal-text-content .scroll-content>:last-child{margin-bottom:2rem}.info-modal .modal-text-content .scroll-content ul{margin-top:1rem}.info-modal .modal-text-content .scroll-content ul li{list-style-type:initial;margin-left:2rem}.overlay{display:flex;flex-direction:column;position:absolute;height:100%;width:100%;top:0;right:0;bottom:0;left:0;background:rgba(75,80,85,.5);z-index:4}.selector-open{position:relative;z-index:4}.ReactTable{color:#4b5055;max-width:100%}.ReactTable,.ReactTable .rt-tbody .rt-td{border:none}.ReactTable .rt-tr{justify-content:space-between}.ReactTable .rt-tr-group.clickable:hover{background:#f4f4f4}.ReactTable .rt-tr-group.clickable.inactive{opacity:.5}.ReactTable .rt-thead .rt-tr{min-height:2.5rem}.ReactTable .rt-thead .rt-tr .rt-th{white-space:initial;word-wrap:break-word}.ReactTable .rt-tbody .rt-tr{min-height:4rem}.ReactTable .rt-tbody .rt-td,.ReactTable .rt-tfoot .rt-td{padding-left:2rem;padding-right:2rem;align-items:center}.ReactTable .rt-tfoot{border-top:1px solid #787171}.ReactTable .rt-tfoot .rt-td{border:none}.ReactTable .rt-tbody .rt-tr-group{border-width:0 0 1px 0;flex-grow:0;justify-content:center}.ReactTable .rt-thead .rt-th .left-align{display:inline-flex;width:100%;text-align:left}.ReactTable .rt-thead .rt-resizable-header-content{justify-content:center;padding:0 1rem}.ReactTable .rt-table,.ReactTable .rt-tbody,.ReactTable .rt-thead .rt-th,.ReactTable .rt-tbody .rt-tr .rt-td{overflow:visible}.ReactTable .rt-thead .rt-th{border-left:none;border-right:none;hyphens:auto;align-items:flex-end;padding:5px 2rem 1rem 2rem}.ReactTable .rt-thead .rt-th .rt-resizable-header-content{display:flex}.ReactTable .rt-thead .rt-th .rt-resizable-header-content:after{position:absolute;right:1rem}.ReactTable .rt-thead .rt-th .-sort-asc>div:after,.ReactTable .rt-thead .rt-th .-sort-desc>div:after{display:none}.ReactTable .rt-thead .rt-th.-sort-desc,.ReactTable .rt-thead .rt-th.-sort-asc{box-shadow:initial;color:#221515}.ReactTable .rt-thead .rt-th .col-header.flex-on-center{align-items:stretch;justify-content:center}.ReactTable .rt-thead .rt-th .col-header.flex-on-center>.divider{min-width:calc(2rem + 1px);flex:0 0 calc(2rem + 1px);display:flex;justify-content:center}.ReactTable .rt-thead .rt-th .col-header.flex-on-center>.divider:after{content:"";width:1px;height:100%;background-color:#d8d8d8}.ReactTable .rt-th .multi-sort{color:#787171}.ReactTable .rt-th .multi-sort.th-subhead{padding:0 1rem}.ReactTable .rt-th .multi-sort.th-subhead:not(:last-child){border-right:1px solid #d8d8d8}.ReactTable .rt-th .multi-sort:first-child{padding-left:0}.ReactTable .rt-th .multi-sort:last-child{padding-right:0}.ReactTable .rt-th .active-sort{color:#4b5055}.ReactTable .rt-th,.ReactTable .rt-td{display:flex;align-items:center;padding:1rem .5rem}.ReactTable .rt-th:not(:first-child),.ReactTable .rt-td:not(:first-child){justify-content:center}.ReactTable .rt-td{text-align:center}.ReactTable .rt-td .rank-number{text-align:left;font-weight:bold}.ReactTable .rt-thead.-header,.ReactTable .rt-tfoot{box-shadow:none}.ReactTable .rt-th{color:#787171;border-color:#d8d8d8}.ReactTable .rt-th .th-subhead{font-size:1.2rem;font-weight:initial;text-transform:initial;font-size:1rem}.ReactTable .rt-thead .rt-th,.ReactTable .rt-thead .rt-td,.ReactTable .rt-tfoot .rt-td,.ReactTable .rt-tbody .rt-td{transition:.3s ease;transition-property:width,min-width,padding-left,padding-right,margin-right,opacity}.ReactTable .rt-thead .rt-th:first-child,.ReactTable .rt-thead .rt-td:first-child,.ReactTable .rt-tfoot .rt-td:first-child,.ReactTable .rt-tbody .rt-td:first-child{text-align:left}.ReactTable .rt-thead .rt-th:last-child,.ReactTable .rt-thead .rt-th:last-child .rt-resizable-header-content,.ReactTable .rt-thead .rt-td:last-child,.ReactTable .rt-thead .rt-td:last-child .rt-resizable-header-content,.ReactTable .rt-tfoot .rt-td:last-child,.ReactTable .rt-tfoot .rt-td:last-child .rt-resizable-header-content,.ReactTable .rt-tbody .rt-td:last-child,.ReactTable .rt-tbody .rt-td:last-child .rt-resizable-header-content{padding-right:0;padding-left:0;margin-left:.5rem;margin-right:.5rem}.ReactTable .badge,.ReactTable .blue-pill{background-color:#83ce96;font-weight:bold}.ReactTable .-pagination{box-shadow:initial;border-top:1px solid #4b5055;padding:1rem 2rem;justify-content:center;flex-wrap:nowrap}.ReactTable .-pagination .-previous,.ReactTable .-pagination .-center,.ReactTable .-pagination .-next{flex:initial;display:flex;justify-content:center;align-items:center}.ReactTable .-pagination .-previous .-btn,.ReactTable .-pagination .-center .-btn,.ReactTable .-pagination .-next .-btn{background:rgba(0,0,0,0);margin:0 2rem;opacity:0;width:2.1rem;height:2.1rem;overflow:hidden;z-index:1}.ReactTable .-pagination .-previous button:disabled,.ReactTable .-pagination .-center button:disabled,.ReactTable .-pagination .-next button:disabled{background-color:rgba(251,251,251,.75);transform:scale(1.1);opacity:1;border-radius:50%;color:rgba(0,0,0,0)}.ReactTable .-pagination .-previous:after,.ReactTable .-pagination .-next:after{position:absolute;font-family:"Font Awesome 6 Pro";font-weight:900;font-size:2rem;color:inherit}.ReactTable .-pagination .-previous:after{content:""}.ReactTable .-pagination .-next:after{content:""}.table-data-change{max-width:25rem;margin:auto;align-items:center;border:1px solid 1px solid #d8d8d8;border-radius:1rem;padding:.1rem .7rem;display:flex;justify-content:space-around}.table-data-change span:not(.fas){flex:1}@media only screen and (max-width: 1200px){.ReactTable .th-subhead.multi-sort:not(:last-child){border-right:none}.ReactTable .th-subhead.multi-sort{padding-right:.5rem;padding-left:0}}@media only screen and (max-width: 800px){.ReactTable .rt-thead .rt-tr{min-height:2rem}}@media only screen and (max-width: 480px){.ReactTable .fa,.ReactTable .fas,.ReactTable .far,.ReactTable .fal{font-size:1.2rem}.ReactTable .table-data-change{display:inline-flex;padding:initial;border:none}.ReactTable .rt-tbody .rt-td,.ReactTable .rt-tfoot .rt-td{padding-left:4px;padding-right:4px}.ReactTable .rt-thead .rt-th:first-child,.ReactTable .rt-tbody .rt-td:first-child{padding-left:0;padding-right:0}.ReactTable .rt-thead .rt-th{font-size:1rem}.ReactTable .rt-thead .rt-th .rt-resizable-header-content:after{right:0}}.ReactTable .rt-noData{background-color:rgba(0,0,0,0);text-align:center;border-radius:6px;font-weight:700}@media only screen and (max-width: 600px){.ReactTable .rt-noData{left:auto;transform:translateY(-50%);width:100%}}@media only screen and (max-width: 960px){.ReactTable .rt-th{font-size:1.1rem}}@media only screen and (max-width: 375px){.ReactTable .rt-tbody .rt-td{font-size:1.1rem}}.hidden{display:none !important}.invisible{opacity:0 !important}.disabled{opacity:.5}.invisible-children>*{opacity:0 !important}.inline-block{display:inline-block}.no-pointer-events{pointer-events:none}.multiply-mode{mix-blend-mode:multiply}.fill,.charts{position:relative;height:100%;width:100%}.abs-fill{position:absolute;top:0;right:0;bottom:0;left:0}.pos-relative{position:relative}.clickable{cursor:pointer}.collapsed{flex:0 0 0 !important;transition:flex 400ms ease-in-out}.no-overflow{overflow:hidden !important}.overflow-auto{overflow:auto}.no-scroll .primary-content .filtered-trends{overflow:hidden !important}.overflow-visible{overflow:visible}.error-wrapper{background:#fff;z-index:99}.no-transition{transition:none !important}.z-index-0{z-index:0 !important}.tn-wrapper-sm{height:7.5rem;min-width:7.5rem;max-width:7.5rem;flex:0 1 7.5rem}.tn-wrapper-sm-rect{height:6rem;min-width:8rem}.tn-wrapper-xsm-rect{height:3.5rem;min-width:8rem}.box-shadow{box-shadow:0 3px 7px 0 rgba(0,0,0,.15)}.light-bg{background-color:#fbfbfb}.med-dark-gray,.med-dark-grey{color:#787171}.dark-gray,.dark-grey{color:#4b5055}.blue{color:#4578ec}.blue-bg{background:#4578ec}.red,.alert-danger{color:#ba324f}.alert-info{color:#4578ec;border-color:rgba(69,120,236,.5)}.alert-success{color:#83ce96;border-color:rgba(131,206,150,.5)}.teal{color:#12b3b3}.green,.success{color:#83ce96}.grey-600,.gray-600{color:#828488}.w-0{width:0}.w-50{width:50%}.w-100{width:100%}.h-0{height:0}.h-100{height:100%}.h-300{height:30rem}.p-0{padding:0}.p-1{padding:1rem}.px-1,.tn-pagination .pagination-page{padding-left:1rem;padding-right:1rem}.px-5p{padding-left:.5rem;padding-right:.5rem}.py-1{padding-top:1rem;padding-bottom:1rem}.p-2{padding:2rem}.px-0{padding-left:0;padding-right:0}.px-2{padding-left:2rem;padding-right:2rem}.px-4{padding-left:4rem;padding-right:4rem}.py-2{padding-top:2rem;padding-bottom:2rem}.py-4{padding-top:4rem;padding-bottom:4rem}.pl-1{padding-left:1rem}.pr-0{padding-right:0}.pr-5p{padding-right:.5rem}.pr-1{padding-right:1rem}.pt-5p{padding-top:.5rem}.pt-1{padding-top:1rem}.pb-1{padding-bottom:1rem}.pb-4{padding-bottom:4rem}.pl-2{padding-left:2rem}.pl-3{padding-left:3rem}.pr-2{padding-right:2rem}.pt-2{padding-top:2rem}.pb-2{padding-bottom:2rem}.pr-3{padding-right:3rem}.p-4{padding:4rem}.pr-4{padding-right:4rem}.pt-4{padding-top:4rem}.m-0{margin:0}.mb-1{margin-bottom:1rem}.mb-2{margin-bottom:2rem}.mt-1{margin-top:1rem}.mt-2{margin-top:2rem}.mt-4{margin-top:4rem}.mb-4{margin-bottom:4rem}.ml-1{margin-left:1rem}.ml-2,.mx-2{margin-left:2rem}.mr-5p{margin-right:.5rem}.mr-1{margin-right:1rem}.mr-2,.mx-2{margin-right:2rem}.mr-4{margin-right:4rem}.text-thin,.text-light{font-weight:300}.text-strong,.tn-card .totals-table .rt-tfoot,.tn-card-frameless .totals-table .rt-tfoot,.tn-card-bordered .totals-table .rt-tfoot{font-weight:600}.text-bold{font-weight:800}.emphasis{font-style:italic}.text-upper{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-reverse,.text-reverse:hover{color:#fff}.sm-font,.small-font{font-size:1.2rem}.md-font,.medium-font{font-size:2rem}.lg-font,.large-font{font-size:3rem;line-height:3.5rem;margin-left:-4px}.ellipsis,.view-header .song-breadcrumbs .breadcrumb-level .route-link{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.line-clamp-2{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;overflow-wrap:break-word}.word-break{word-break:break-all;word-break:break-word;hyphens:auto}.white-space-pre{white-space:pre}.no-wrap{white-space:nowrap}.error{background-color:#f0c8d0;color:#ba324f}.error-wrapper{background:#fff;z-index:99}.text-center{text-align:center}.text-left{text-align:left}.flex-auto{flex:0 0 auto}.flex-row{display:flex}.flex-column{display:flex;flex-direction:column}.flex-inline{display:inline-flex}.flex-item{position:relative;flex:1;transition:flex 400ms ease-in-out}.flex-item-2{position:relative;flex:2;transition:flex 400ms ease-in-out}.flex-item-3{position:relative;flex:3;transition:flex 400ms ease-in-out}.flex-item-right{align-self:flex-end;flex:1;transition:flex 400ms ease-in-out}.flex-center{justify-content:center;align-items:center}.flex-align-center{align-items:center}.flex-justify-center{justify-content:center}.flex-align-baseline{align-items:baseline}.flex-align-start{align-items:flex-start}.flex-align-end{align-items:flex-end}.flex-justify-end{justify-content:flex-end}.space-between{justify-content:space-between}.flex-align-self-stretch{align-self:stretch}.space-around{justify-content:space-around}.flex-wrap{flex-wrap:wrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.order-first{order:0}.order-second{order:1}.flex-on-center{display:flex;flex:1;align-items:flex-end}.flex-on-center>:first-child,.flex-on-center>:last-child{display:flex;flex:0 0 40%}.flex-on-center>:nth-child(2){flex:0 0 20%}.flex-on-center>:first-child{justify-content:flex-end;text-align:right}.flex-on-center>:last-child{justify-content:flex-start;text-align:left}.divider{min-width:calc(2rem + 1px);flex:0 0 calc(2rem + 1px);display:flex;justify-content:center}.divider:after{content:"";width:1px;height:100%;background-color:#d8d8d8}.grid-justify-stretch{justify-self:stretch}@media only screen and (max-width: 480px){.flex-x-stretch-480{align-self:stretch}.flex-y-stretch-480{justify-self:stretch}}@media only screen and (max-width: 800px){.flex-row.flex-switch-800{flex-direction:column}}@media only screen and (max-width: 800px){.flex-row.flex-wrap-800{flex-wrap:wrap}}.border-top,.tn-select .tn-select__option:not(:first-child),.border-left,section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection,.border-right{border-color:#d8d8d8;border-style:solid}.border-left,section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection{border-width:0 0 0 1px}.border-right{border-width:0 1px 0 0}.border-top,.tn-select .tn-select__option:not(:first-child){border-width:1px 0 0 0}.border-light,section#tn-territories .tn-card #territories-reset-all+.view-selection,section#tn-territories .tn-card-frameless #territories-reset-all+.view-selection,section#tn-territories .tn-card-bordered #territories-reset-all+.view-selection{border-color:#d8d8d8}.border-xlight,.tn-select .tn-select__option:not(:first-child){border-color:#ededed}.tn-spinner{display:flex;justify-content:center;align-items:center}@keyframes rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.tn-spinner .global-ui-spinner{width:4rem;height:4rem;border-radius:2rem;border-style:solid;border-color:#d8d8d8;border-width:.5rem;margin:2rem;border-right-color:#ba324f;animation:rotate 1s linear infinite;transition:opacity 100ms linear;opacity:0}.tn-spinner .global-ui-spinner.active{opacity:.75}@media only screen and (max-width: 480px){.tn-spinner .global-ui-spinner{width:8rem;height:8rem;border-radius:4rem;border-width:1rem}}.simplebar-track{z-index:3}@media only screen and (max-width: 480px){.trends-spinner{display:flex;flex-direction:column;justify-content:center;align-items:center;font-size:1.5rem;padding-bottom:8rem;height:100%}}.mobile-footer{min-height:5rem;width:100%;background-color:#1a2131;display:flex;justify-content:flex-end;align-items:center;margin-top:1rem}.mobile-footer .nav-item{font-weight:700;margin-right:2.5rem;letter-spacing:.02rem;font-size:1.2rem;height:100%;display:flex;align-items:center;text-decoration:none}.mobile-footer .nav-item>span{color:#fff}.mobile-footer .nav-item>.fa{margin-right:.5rem;min-width:2rem;font-size:1.5rem}.checkbox-hidden input[type=checkbox]{opacity:0;width:0;height:0;overflow:hidden;position:absolute;z-index:-1}.React-Select .React-Select__control{overflow:auto;flex-wrap:nowrap}.React-Select .React-Select__value-container{overflow:hidden}.React-Select .React-Select__group{padding-left:0;padding-right:0}.React-Select .React-Select__group:not(:last-child){border-bottom:2px solid #d8d8d8}.React-Select .React-Select__group-heading{font-weight:initial;text-transform:uppercase;color:#787171;font-size:.8em;padding-left:2rem}.React-Select .React-Select__input{padding-right:4rem}.React-Select .React-Select__option{padding-top:10px;padding-bottom:10px;padding-left:2rem;padding-right:2rem}.React-Select .React-Select__option:last-child{padding-bottom:15px}.React-Select .React-Select__option .name{padding-right:.5rem;font-weight:700;color:#221515}.React-Select .React-Select__option .context-label{font-weight:600;text-transform:uppercase;font-size:.8em;padding-right:.5rem}.React-Select .React-Select__option .context-label,.React-Select .React-Select__option .context,.React-Select .React-Select__option .context-container{color:#635a5a}.React-Select .React-Select__option .context-container:not(:last-child):after{content:"/";padding:0 .5rem;font-weight:normal}.React-Select .React-Select__option.React-Select__from-history .name{color:#4578ec}.tn-select{flex:0 0 auto;min-width:18rem}.tn-select .tn-select-flex{flex:1}.tn-select .tn-select-full{flex:0 0 100%}.tn-select .tn-select-large{flex:0 0 20rem}.tn-select .tn-select__control{cursor:pointer;background-color:rgba(0,0,0,0);transition:all 100ms}.tn-select .tn-select__control:hover{border-color:#787171}.tn-select .tn-select__input,.tn-select .tn-select__placeholder{margin-right:1rem;padding-right:1rem}.tn-select .tn-select__placeholder{font-weight:600;display:flex;font-size:1.2rem;text-transform:capitalize}.tn-select .tn-select__group{padding:0;overflow-y:scroll;flex:auto}.tn-select .tn-select__group:not(:last-child){border-bottom:1px solid #d8d8d8}.tn-select .tn-select__group-heading{height:3.5rem}.tn-select .tn-select__option{display:flex;align-items:center;justify-content:space-between;background-color:rgba(0,0,0,0);color:#4b5055;padding:.75rem 2rem;min-height:4rem}.tn-select .tn-select__option:hover{background-color:#f4f8fe}@media(hover: none){.tn-select .tn-select__option:hover{background-color:inherit}}.tn-select .tn-select__option:active{background-color:#dde9fc}.tn-select .tn-select__option.tn-select__option--is-disabled{opacity:.5;background-color:#ededed;border-color:#d8d8d8}.tn-select .tn-select__option.tn-select__option--is-disabled .selected.fas{display:none}.tn-select .tn-select__option .option-label,.tn-select .tn-select__option .option-data{display:flex;align-items:center}.tn-select .selector-options{height:3.5rem}.tn-select .tn-select__group,.tn-select .tn-select__menu{max-height:300px;height:auto;min-height:4rem}.tn-select .tn-select__menu{z-index:2}.tn-select .tn-select__menu-list--is-multi>div:first-child(){overflow-y:initial}.tn-select .tn-select__option-group+.tn-select-option{padding-top:1.5rem}.tn-select .tn-select__single-value,.tn-select .tn-select__value-container{display:flex}.tn-select .tn-select__value-container input{max-width:9rem}.tn-select .tn-select__value-container:not(.tn-select__value-container--has-value) input{max-width:12rem}.tn-select .tn-select__value-container .value-container-contents{position:relative;flex:auto;overflow:hidden}.tn-select .tn-select__value-container .value-container-contents>div{margin-top:0;margin-bottom:0}.tn-select .value-icon{display:block;height:18px;margin:0 .5rem 0 0}.tn-select .tn-select__value-container--is-multi{padding-right:.5rem}.tn-select .dropdown-icon{font-size:1.2rem;color:#4b5055}@media only screen and (max-width: 480px){.tn-select{min-width:16rem}}.legend{font-weight:600;display:flex}.legend .legend-item{display:flex;align-items:center}.legend .legend-item:not(:last-child){padding-right:2rem}.legend .legend-marker{width:1.8rem;height:1.8rem;position:relative;display:flex;justify-content:center;align-items:center;margin-right:1rem;border:1px solid rgba(75,80,85,.2)}.source-of-streams .legend .legend-item.active .legend-marker{background-color:#deeefa}.source-of-streams .legend .legend-item.passive .legend-marker{background-color:rgba(0,0,0,0)}.source-of-streams .legend.disabled{opacity:.5}.skiprate .legend{display:block}.skiprate .legend .legend-item{margin:.2rem 0}.skiprate .legend .legend-item.active .legend-marker{background-color:#697df5}.skiprate .legend .legend-item.passive .legend-marker{background-color:#9bbee6}.skiprate .legend .legend-item.skips .legend-marker:after{content:"";width:2.1rem;height:.3rem;border-radius:.4rem;background-color:#4b5055;position:absolute}.skiprate .legend .legend-item.skips .legend-marker:before{content:"";width:.9rem;height:.9rem;position:absolute;border-radius:.9rem;background-color:#4b5055}.skiprate .legend .legend-marker{width:1.5rem;height:1.5rem;border:none}@media only screen and (max-width: 960px){.skiprate .legend{display:flex;flex:1;justify-content:space-around;font-size:1rem}}@media only screen and (max-width: 375px){.source-of-streams .legend{font-size:1.1rem}.skiprate .legend .legend-item:not(:last-child){padding-right:1rem}}.tiktok-metric{padding:1rem;background:rgba(198,219,246,.5);border-radius:6px;color:#4b5055;display:flex;justify-content:center;align-items:center}.tiktok-metric:not(:last-child){margin-right:2rem}@media only screen and (max-width: 375px){.tiktok-metric{max-width:initial}}.alert{border-radius:6px;padding:2rem 4rem 2.25rem}.alert.h1{border-radius:5rem}.alert.alert-reverse{color:#fff}.alert-danger{color:#ba324f;border-color:rgba(186,50,79,.25)}.alert-default{font-weight:600;padding:15px;margin-bottom:20px;border:1px solid rgba(0,0,0,0);border-radius:6px}.alert-default .close{color:inherit;right:initial}.badge,.blue-pill{color:#fff;padding:.5rem 1rem}.badge .close-icon,.blue-pill .close-icon{color:#787171;padding:0 .5rem;font-size:1.5rem;line-height:1rem;cursor:pointer}.badge-small,.blue-pill{font-size:1rem}.badge-light{background-color:#ededed}.badge-rounded{border-radius:.2rem}.badge-pill,.blue-pill{background-color:#ededed;color:#787171;border-radius:1.5rem;max-width:20rem;display:inline-flex;align-items:center;cursor:pointer}.badge-pill:not(:last-child),.blue-pill:not(:last-child){margin-right:1rem}.badge-label{color:#4b5055;padding-right:.5rem}.badge-emphasis{background-color:#4578ec;color:#fff}.badge-emphasis .badge-label{color:rgba(255,255,255,.8)}.badge-transparent{background-color:rgba(0,0,0,0);color:#4b5055}.badge-text{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.badge-blue{color:#fff;background:#4578ec}.blue-pill{color:#fff;background:#4578ec}.paper-pill{text-transform:initial;height:3rem;line-height:3rem;color:#4b5055;border-radius:1.5rem;background-color:#fff;align-self:start;max-width:calc(100vw - 2rem* 2);padding:.5rem;flex:0 0 auto;box-shadow:0 1px 2px 1px rgba(75,80,85,.1),0px 1rem .5rem -0.5rem rgba(93,102,162,.1)}.paper-pill .close-icon{margin-left:1rem}.custom-checkbox span{padding:0;font-size:1.4rem}.custom-checkbox .selected{color:#4578ec}.custom-checkbox .unselected{color:#d8d8d8}.tooltip,.tooltip-inner{font-family:inherit}.panel,.panel-heading{border-radius:initial;box-shadow:initial}.table tbody>tr>td,.table tbody>tr>th,.table thead>tr>td,.table thead>tr>th{border:initial}.table-condensed{margin-bottom:initial}.table-condensed tbody>tr>td,.table-condensed thead>tr>th:not(:first-child){padding-left:1rem;padding-right:1rem}.table-condensed thead>tr>th:last-child,.table-condensed tbody>tr>td:last-child{text-align:right}.table-condensed tfoot>tr>td{padding:2rem 2rem 0 2rem;font-weight:initial;text-transform:uppercase;border:initial}.checkmark{display:flex;flex-wrap:wrap;position:relative;height:20px;width:20px}.checkmark:after{content:"";position:absolute;left:0;top:10px;height:20px;width:10px;border-right:4px solid #fff;border-top:4px solid #fff;transform-origin:left top;transform:scaleX(-1) rotate(135deg);animation-duration:800ms;animation-timing-function:ease;animation-name:checkmark}@keyframes checkmark{0%{height:0;width:0}20%{height:0;width:10px}40%{height:20px;width:10px}100%{height:20px;width:10px}}

