.console {
    position: fixed;
    top: 0;
    left: 0;
    margin: 15px;
    width: 340px;
    height: 95%;
    overflow-y:scroll;
}

.console-block {
    background-color: var(--bg_color);
    padding: 20px;
    border-radius: 3px;
    margin-bottom: 16px;
}

.title {
    font-size: 24px;
    line-height: 30px;
    color: var(--prim_color);
    margin-bottom: 16px;
    font-weight: bold;
}

.proj-des {
    color: var(--sec_color);
    font-size: 14px;
    font-weight: 400;
}

.entry-title {
    display: flex;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 18px;
    color: var(--ter_color);
    transition: 0.15s;
}

.entry-title.top {
    margin-top: 6px;
}

.entry-title.bottom{
    margin-bottom: 6px;
}

.entry-label{
    font-size: 16px;
    font-weight: 600;
    color: var(--ter_color);
    flex: 1;
    transition: all 0.3s;
    transition-timing-function: ease;
}

.entry-label.active{
    color: var(--prim_color);
}

.entry-dropdown {
    max-height: 0;
    opacity: 0;
    transition: all 0.3s;
    transition-timing-function: ease;
    z-index: 0;
    position: relative;
}

.entry-dropdown.active {
    margin-top: 12px;
    margin-bottom: 18px;
    padding-left: 12px;
    padding-right: 12px;
    display:block; 
    max-height: 400px;
    opacity: 1;
    overflow: hidden;
    transition: all 0.3s;
    transition-timing-function: ease;
    z-index: 10;
}

.entry-row {
    color: var(--prim_color);
    margin-bottom: 8px;
}

.row-label {
    font-weight: 300;
}

.entry-row.gradlabel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.entry-row.size {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
}

.entry-row.cat.active{
    display: flex;
    align-items: center;
    color: var(--prim_color);
    /* background-color: red; */
}

.entry-row.cat {
    color: var(--ter_color);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.gradient1 {
    height: 16px;
    background: linear-gradient(to right,#142a8c, #ab2dc4, #d92e4a);
}

.gradient2 {
    height: 16px;
    background: linear-gradient(to right,#0b5c5c, #2dd668, #2efc1c);
}

.gradient-label {
    color: var(--sec_color);
    width: 40px;
    text-align: center;
}

.gradient-label.left {
    text-align: left;
}

.gradient-label.right {
    text-align: right;
}

.circle-container {
    width: 50px;
    display: flex;
    justify-content: center;
    /* justify-items: center; */
}

.size-circle {
    background-color: rgba(223, 9, 209, 0.7);
    height: 10px;
    width: 10px;
    /* display: inline-block; */
    opacity:1;
    border-radius: 5px;
}

.size-circle.small {
    height: 10px;
    width: 10px;
    border-radius: 5px;
}

.size-circle.med {
    height: 30px;
    width: 30px;
    border-radius: 15px;
}

.size-circle.large {
    height: 50px;
    width: 50px;
    border-radius: 25px;
}

.entry-description {
    margin-top: 12px;
    color: var(--ter_color);
    font-size: 14px;
    font-style: italic;
}

/* .legend-subentry {
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-bottom: 18px;
    color: var(--ter_color);
    transition: 0.15s;
}

.legend-subentry.active {
    color: var(--prim_color);
} */

.symbol{
    height: 16px;
    width: 16px;
    margin-right: 15px;
    display: inline-block;
    opacity: 0.2;
    /* border-radius: 6px; */
    transition: 0.15s;
}

.symbol.active{
    opacity: 1;
}

.symbol-label{
    font-size: 14px;
    flex: 1;
}

.toggle-space{
    width: 24px;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.toggle {
    cursor: pointer;
    width: 24px;
    height: 14px;
    background: rgb(98, 98, 98);
    /* display: block; */
    border-radius: 12px;
    position: relative;
}

.toggle:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    background: #a8a8a8;
    border-radius: 10px;
    transition: 0.3s;
}

.toggle.active {
    background: rgb(136, 136, 136);
}

.toggle.active:after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
    background: #eaeaea;
}

.leg-line{
    height: 1px;
    width: 100%;
    background: var(--ter_color);
    margin: auto;
    margin-bottom: 8px;
  }


