vote-list-outer, title-outer, title-buttons-outer{
    display:block;
}

council-list-outer{
    display:flex;
    flex-wrap:nowrap;
    flex-direction: row;
    justify-content: flex-start;
    height:4rem;
    gap:0.2rem;
    margin-right:auto;
    margin-left:auto;
    overflow-x:scroll;
    overflow-y:hidden;
    position:relative;
    scrollbar-width: none;
}
  council-list-outer::-webkit-scrollbar {
  display: none;
}

h1, h2, h3{
    color: gray;
    font-style: normal; 
    font-size: medium;
}
.card h3{
    margin-top:0.5rem;
}

tracker-outermost{
    display:block;
}
tracker-frame{
    padding:.5rem;
    display:block;
  }
  #tracker-frame-1{
    padding-top:0;
    height:3rem;
    min-height:3rem;
    display:flex;
    flex-direction: row;
    flex-wrap:nowrap;
    justify-content: space-around;
    align-items: center;
    width:auto;
    border-bottom:1px solid gray;
    overflow:hidden;
    position:sticky;
    top:0;
    z-index:99;
    background-color:white;
    box-shadow:0px 0px 10px gray;
  }
  #tracker-frame-2{
    background-color:hsl(161, 55%, 96%);
  }
  #tracker-frame-3{
    display:flex;
    flex-wrap:nowrap;
    justify-content:center;
    height:5rem;
    min-height:5rem;
    border:1px solid gray;
    overflow: hidden;
    max-width:100%;
    position:relative;
    -ms-overflow-style: none;
    position:sticky;
    bottom:0;
    background-color:white;
    border-radius:0.5rem;
    margin-left:0.5rem;
    margin-right:0.5rem;
    margin-bottom:0.5rem;
    box-shadow:0px 0px 10px gray;
  }

#tracker-frame-2 .card, #tracker-frame-3 .profile-pic-outer{
    cursor: pointer;
}

#tracker-frame-2 .card-body{
    padding:8px;
    margin-top:-16px;
}

.card-footer{
    background-color:transparent;
    border-top: 0px;
}
.type{
    font-weight:400;
}

.profile-pic-outer{
    height:4rem;
    aspect-ratio: 1/ 1;
    padding:0.25rem;
    border-radius:25%;
    position:relative;
}
.profile-pic-inner{
    aspect-ratio: 1/1;
    width:100%;
    margin:auto;
    border-radius: 25%;
    background-size:cover;
    background-position: 50% 50%;
}

.vote-date{
    color: #DA806A;
    font-size:small;
}
.vote-icons img{
    width: 1.5rem;
    margin:0.25rem;
}

.vote-viz{
    display:flex;
    flex-wrap:wrap;
    vertical-align: middle;
    align-items: center;
    margin:1em 2px;
    border-radius:5px;
    padding: 0.7em 1em;
    position: relative;
}
.mini-pic{
border:1px solid gray;
border-radius:25%;
margin-left:-0.7em;
width:2.5rem;
aspect-ratio: 1 / 1;
background-color: green;
background-size: cover;
background-position: 50% 50%;
}
.vote-viz-label{
    font-size:small;
    font-size:small;
    position:absolute;
    top:-0.9em;
    background-color:white;
    padding: 0 0.5em;
    margin-left: 1em;
}

.vote-viz-green{
    border: green solid 0.5px;
  }
  .vote-viz-red{
    border: red solid 0.5px;
  }
    .vote-viz-neutral{
    border: gray solid 0.5px;
  }
  .vote-viz-orange{
border: rgb(182, 118, 1) solid 0.5px;
  }
  .vote-viz-yellow{
border: rgb(122, 143, 2) solid 0.5px;
  }
.vote-viz-badge-green{
    background-color: green;
  }
  .vote-viz-badge-red{
    background-color: red;
  }
    .vote-viz-badge-neutral{
    background-color: gray;
  }
  .vote-viz-badge-orange{
background-color: rgb(182, 118, 1);
  }
  .vote-viz-badge-yellow{
background-color: rgb(122, 143, 2);
  }

.sidePaneInfoBar{
    display:flex;
    align-items:center;
    gap:0.5rem;
}
.sidePaneInfoBar > *{
    vertical-align: middle !important;
    align-self: center !important;
}

#loading-bar-one{
background-color: #DA806A;
}
#loading-bar-two{
    background-color:#298C6C;
}

.title-bar-svg{
    width:1.25em;height:1.25em;fill:#298C6C;vertical-align: -0.125em;
}
.title-bar-svg-blue{
    width:1.25em;height:1.25em;fill:#0501e7;vertical-align: -0.125em;
}

#tracker-frame-1 .btn{
    border:0px;
}

#voteItemRecordDetailOuter .header-row{
    margin-top:1rem;
}

.voteLinkListImg{
    width:1.5rem;
    vertical-align: -0.125em;
}

.side-panel-lateral-navs{
    font-size:small;
}

.highlight-red{
    animation-name: highlight-red;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.highlight-green{
    animation-name: highlight-green;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.highlight-orange{
    animation-name: highlight-orange;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes highlight-red{
    from {box-shadow: none;}
    to {box-shadow: 0px 0px 2px 2px pink,
        inset 0px 0px 5px 5px pink;}
}

@keyframes highlight-green{
    from {box-shadow: none;}
    to {box-shadow: 0px 0px 2px 2px lightgreen,
        inset 0px 0px 5px 5px lightgreen;}
}

@keyframes highlight-orange{
    from {box-shadow: none;}
    to {box-shadow: 0px 0px 2px 2px orange,
        inset 0px 0px 5px 5px orange;}
}

#highlight-mode{
    position:fixed;
    bottom:1rem;
    right:1rem;
    border-radius:0.5rem;
    box-shadow:0px 0px 2px black;
    padding:1rem;
    border:1px solid gray;
    background-color:white;
}

#divider{
    width:1px;
    height:2.5rem;
    border:1px solid gray;
    margin-left:0.5rem;
    margin-right:0.5rem;
    align-self:center;
}

.clock-badge{
    position:absolute;
    height: 1.7rem;
    width: 1.7rem;
    top:2.7rem;
    left:-0.45rem;
}
.asterisk-badge{
    position:absolute;
    height: 1.7rem;
    width: 1.7rem;
    bottom:2.7rem;
    right:-0.45rem;
}

.gauge-icon{
    background-position: 50% 50%;
}

.gauge-icon-outer{
    display:flex;
    align-items: center;
    border-radius:0.2rem;
    border:0.5px solid gray;
    background:white;
    padding:0;
}

.card .info-bar{
display:flex;
align-items:flex-start;
justify-content:space-between;
}

.trophy-basic{
    background-position: 50% 50%;
    mask: url(/img/tracker-imgs/trophy-fill.svg);
    background-color:gray;
    height: 2rem;
    aspect-ratio: 1 / 1;
    mask-size: cover;
    margin-left:auto;
    margin-right:auto;
}

.trophy-minimal{
    background-position: 50% 50%;
    mask: url(/img/tracker-imgs/trophy-fill.svg);
    background-color:rgb(191, 191, 191);
    height: 2rem;
    aspect-ratio: 1 / 1;
    mask-size: cover;
    margin-left:auto;
    margin-right:auto;
}

.trophy-plus{
    background-position: 50% 50%;
    mask: url(/img/tracker-imgs/trophy-fill.svg);
    background: conic-gradient(from var(--rotate), green, greenyellow, green, greenyellow);
    height: 2rem;
    aspect-ratio: 1 / 1;
    mask-size: cover;
    margin-left:auto;
    margin-right:auto;
    animation-name: trophy-anim;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-timing-function: linear;
}

.trophy-plus-minimal{
    background-position: 50% 50%;
    mask: url(/img/tracker-imgs/trophy-fill.svg);
    background: conic-gradient(from var(--rotate), gray, yellow, gray, yellow);
    height: 2rem;
    aspect-ratio: 1 / 1;
    mask-size: cover;
    margin-left:auto;
    margin-right:auto;
    animation-name: trophy-anim;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-timing-function: linear;
}

.face-0{
    background-position: 50% 50%;
    mask: url(/img/tracker-imgs/face-0.svg);
    background-color:red;
    height: 2.5rem;
    aspect-ratio: 1 / 1;
    mask-size: cover;
    margin-left:auto;
    margin-right:auto;
    padding-left:6px;
    padding-right:6px;
    position: relative;
}
.face-1{
    background-position: 50% 50%;
    mask: url(/img/tracker-imgs/face-1.svg);
    background-color:orange;
    height: 2.5rem;
    aspect-ratio: 1 / 1;
    mask-size: cover;
    margin-left:auto;
    margin-right:auto;
    position: relative;
}
.face-2{
    background-position: 50% 50%;
    mask: url(/img/tracker-imgs/face-2.svg);
    background-color:gray;
    height: 2.5rem;
    aspect-ratio: 1 / 1;
    mask-size: cover;
    margin-left:auto;
    margin-right:auto;
    position: relative;
}
.face-3{
    background-position: 50% 50%;
    mask: url(/img/tracker-imgs/face-3.svg);
    background-color:yellowgreen;
    height: 2.5rem;
    aspect-ratio: 1 / 1;
    mask-size: cover;
    margin-left:auto;
    margin-right:auto;
    position: relative;
}
.face-4{
    background-position: 50% 50%;
    mask: url(/img/tracker-imgs/face-4.svg);
    background-color:green;
    height: 2.5rem;
    aspect-ratio: 1 / 1;
    mask-size: cover;
    margin-left:auto;
    margin-right:auto;
    position: relative;
}

@property --rotate {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes trophy-anim{
    from {
    --rotate: 0deg;}
    to {
    --rotate: 360deg;}
}

#h2h-header-profile-container .profile-pic-inner{
    max-width:4rem;
}

#left-pane:open{
    display:flex;
    flex-wrap: nowrap;
    flex-direction:column;
    overflow:hidden;
}
#left-pane-body{
    flex-grow: 1;
    overflow-y: auto;
    padding-top:1rem;
}

.dialog{
    margin-bottom:0px;
}

.dialog-bottom:open{
    height: 40vh;
    bottom:0px;
    left:0px;
    margin-bottom:0px;
    border-bottom:0px;
    border-radius:0.3rem 0.3rem 0px 0px;
}
.dialog-bottom:open .dialog-body{
    max-width:50rem;
}
.dialog-body{
    align-self:center;
}
.dialog-left:open{
    width:400px;
margin-left:0px;
border-left:0px;
border-radius:0px 0.3rem 0.3rem 0px;
min-height: 90vh;
}
.councilor-dialog-title{
    align-self:center;
}

.scrollGradient {
  background: 
    linear-gradient(#ffffff 33%, rgba(255,255,255, 0)),
    linear-gradient(rgba(255,255,255, 0), #ffffff 66%) 0 100%,
    radial-gradient(farthest-side at 50% 0, rgba(0,0,0, 0.5), rgba(0,0,0,0)),
    radial-gradient(farthest-side at 50% 100%, rgba(0,0,0, 0.5), rgba(0,0,0,0)) 0 100%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-attachment: local, local, scroll, scroll;
  background-size: 100% 24px, 100% 24px, 100% 8px, 100% 8px;
}

#h2h-dialog-body-container{
    text-align:center;
}

.dialog-from-bottom:open{
  animation-duration: .3s;
  animation-name: anim-from-bottom;
  animation-direction: normal;
}
.dialog-from-center:open{
  animation-duration: .3s;
  animation-name: anim-from-center;
  animation-direction: normal;
}
.dialog-from-left:open{
  animation-duration: .3s;
  animation-name: anim-from-left;
  animation-direction: normal;
}

@keyframes anim-from-bottom{
    from{
        transform:translateY(100%);
    }
    to{
        transform:translateY(0%);
    }
}
@keyframes anim-to-bottom{
    from{
        transform:translateY(0%);
        
    }
    to{
        transform:translateY(100%);
    }
}

@keyframes anim-from-center{
    from{
        scale:0.01;
    }
    to{
        scale:1.0;
    }
}
@keyframes anim-to-center{
    from{
        scale:1.0;
    }
    to{
        scale:0.01;
    }
}

@keyframes anim-from-left{
    from{
        transform:translateX(-100%);
    }
    to{
        transform:translateX(0%);
    }
}
@keyframes anim-to-left{
    from{
        transform:translateX(0%);
        
    }
    to{
        transform:translateX(-100%);
    }
}

.from-bottom-is-closing:open{
  animation-duration: .4s;
  animation-name: anim-to-bottom;
  animation-direction: normal;
}
.from-center-is-closing:open{
  animation-duration: .3s;
  animation-name: anim-to-center;
  animation-direction: normal;
}
.from-left-is-closing:open{
  animation-duration: .3s;
  animation-name: anim-to-left;
  animation-direction: normal;
}

#showCouncilors1:checked, #showCouncilors2:checked{
    background-color: rgb(62, 62, 62);
    border-color:gray;
}

.h2h-row{
    cursor:pointer;
}
.star-gold{
    background-image: url(../img/tracker-imgs/star-gold.svg);
    background-position: 50% 50%;
    background-size: contain;
    width:1.5rem;
    position:absolute;
    bottom:0px;
    right:0px;
    aspect-ratio: 1 / 1;
    animation-name: star-rotate;
    animation-duration: 2.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.alert .star-gold{
    position:relative;
    animation-name: none;
    width:2rem;
    float: left;
    margin-right:0.5rem;
    margin-bottom:0.5rem;
}

.award{
    background-image: url(../img/tracker-imgs/award-solid-full.svg);
    background-position: 50% 50%;
    background-size: contain;
    width:1.5rem;
    position:absolute;
    bottom:0px;
    right:0px;
    aspect-ratio: 1 / 1;
    animation-name: award-anim;
    animation-duration: 3.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes star-rotate {
    0%{
        transform:translate(0.25rem, 0.25rem) rotate(0deg) 
        scale(1.3);
    }50%{
        transform:translate(0.25rem, 0.25rem) rotate(180deg) scale(0.7);
    }100%{
transform:translate(0.25rem, 0.25rem) rotate(359deg) scale(1.3);
    }
    
}

@keyframes award-anim {
    0% {
        transform:translate(0.25rem, 0.25rem) scale(1.1);
    }
    50% {
        transform:translate(0.25rem, 0.25rem) scale(0.9);
    }
    100%{
        transform:translate(0.25rem, 0.25rem) scale(1.1);
    }
}

.detail-active{
    background-color:aliceblue;
}
.detail-inactive{
    background-color:transparent;
    transition: background-color 3s;
    transition-delay:2s;
}
.card.detail-inactive{
    background-color:white;
}

#councilor-scroll-gradient-left{
    position:absolute;
    top:calc(0.5rem - 1px);
    left:0.5rem;
    width:0.7rem;
    height:calc(100% - 1rem + 4px);
    background: linear-gradient(90deg,rgba(128, 128, 128, 0.49) 0%, rgba(128, 128, 128, 0) 100%);
    border-radius:0.25rem 0 0 0.25rem;
}
#councilor-scroll-gradient-right{
    position:absolute;
    top:calc(0.5rem - 1px);
    right:0.5rem;
    width:0.7rem;
    height:calc(100% - 1rem + 4px);
    background: linear-gradient(270deg,rgba(128, 128, 128, 0.49) 0%, rgba(128, 128, 128, 0) 100%);
    border-radius:0 0.25rem 0.25rem 0;
}