

body, html {
	width:100%;
	height:100%;
    background-color:#323232;
    font-family:Arial, Helvetica, sans-serif;
    padding:0;
    margin:0;
	border:none;
    overflow-y: auto;
    overflow-y: hidden;
}

div {
    box-sizing:border-box;
}

.hide {
	display:none !important;
}

::-webkit-scrollbar {
    background: none;
    width: 12px;
}
::-webkit-scrollbar {
  height: 12px;              /* height of horizontal scrollbar ← You're missing this */
  /*border: 1px solid #d5d5d5;*/
}

::-webkit-scrollbar-thumb {
    border: solid 0 rgba(0, 0, 0, 0);
    border-right-width: 3px;
    border-left-width: 3px;
    -webkit-border-radius: 9px 4px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(128, 128, 128, 0.2), inset 0 0 0 4px rgba(128, 128, 128, 0.2);
}

::-webkit-scrollbar-thumb:horizontal {
    border: solid 0 rgba(0, 0, 0, 0);
    border-top-width: 3px;
    border-bottom-width: 3px;
    -webkit-border-radius: 4px 9px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(128, 128, 128, 0.2), inset 0 0 0 4px rgba(128, 128, 128, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    -webkit-box-shadow: inset 0 0 0 1px rgba(128, 128, 128, 0.5), inset 0 0 0 4px rgba(128, 128, 128, 0.5);
}

::-webkit-scrollbar-corner {
background: transparent
}

::-webkit-scrollbar-track {
    background-color: #323232;
}

.error {
    background-color:#d36969;
}

.new_body {
    width:100%;
    height:100%;
}

.new_body.blur {
    filter:blur(6px);
}

.share_back {
    position:absolute;
    z-index:20;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
}

.share_options {
    position: absolute;
    z-index: 20;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 2px solid white;
    border-radius: 30px;
    box-shadow: 10px 10px 30px black;
    background-color: rgba(220 220 255 / 60%);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
}

.share_options .option {
    position: relative;
    padding: 33px 20px 20px 20px;
    margin: 20px;
    border: 3px solid rgb(108 108 108);
    border-radius: 20px;
    background-color: rgba(255 255 255 / 80%);
    font-size: 26px;
    white-space: nowrap;
}

.option.break {
    flex-basis: 100%;
    height: 0;
    padding:0;
    margin:0;
    border:none;
}

.option > .label {
    position: absolute;
    bottom: -40px;
    width: 100%;
    text-align: center;
    margin-left: -40px;
}

.option > .type {
    position:absolute;
    top:12px;
    left:16px;
    font-size:12px;
    color:rgb(190 190 190);
}

.admin_nodesect div::-webkit-scrollbar-track {
    background-color: transparent;
}

.whiteout {
    width:100%;
    height:100%;
    position:fixed;
    z-index:1000;
    top:0px;
    left:0px;
    background-color:rgb(255 255 255 / 50%);
}

.spinny {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    border: 10px solid white;
    border-radius: 100px;
    clip-path: polygon(0% 100%, 0.108% 0.163%, 18.271% 0.979%, 28.385% 9.462%, 32.137% 19.739%, 33.768% 29.527%, 61.175% 25.775%, 65.905% 18.271%, 70.636% 8.809%, 72.594% 0.163%, 100% 0%, 100% 100%);
    animation: rotation 1.6s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.temp_error {
    animation: flashred 2s linear;
}

@keyframes flashred {
    0% {
        background-color:white;
    }
    3% {
        background-color:red;
    }
    100% {
        background-color:white;
    }
}


.sidescroller {
    position: relative;
    top: 0px;
    height: 602px;
    height:100%;
    /*left: 506px;*/
    right: 0px;
    white-space: nowrap;
    overflow-x: auto;
    transition: filter 0.3s;
}

.sidescroller.blur {
    filter:blur(6px);
}

.route_explorer_back {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 482px;
    right: 0px;
}

.route_explorer {
    position: absolute;
    top:40px;
    left:40px;
    right:34px;
    bottom:40px;
    background-color: rgba(0 0 0 / 20%);
    border: 2px solid #00000063;
    overflow: auto;
    opacity:0;
    transition: opacity 0.3s;
}

.route_explorer::-webkit-scrollbar-track {
    background-color: transparent;
}

.route_polyad {
    position: absolute;
    top: 16px;
    width: 200px;
    text-align: left;
    margin-left: 215px;
    color: white;
    font-weight: bold;
    letter-spacing: 4px;
}

.route_explorer.fadein {
    opacity:1;
}

.route_explorer .route_data {
    margin: 5px;
    white-space: nowrap;
}

.route_explorer .route_data .route {
    color: #ededed;
    border: 1px solid rgb(255 255 255 / 30%);
    background-color: rgb(135 135 135 / 30%);
    border-radius: 4px;
    padding: 3px;
    font-size: 18px;
    font-weight: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    word-spacing: 5px;
    letter-spacing: 1px;
    padding-top:10px;
}

.route_explorer .divider {
    margin: 10px 0;
    width: 98%;
    margin-left: 1%;
    height: 1px;
    background-color: #e3e3e39e;
    box-shadow: 0px 1px #3232327d;
}

.route_data > div {
    position:relative;
    display: inline-block;
    margin-right: 4px;
    min-width: 40px;
    background-color: #d7d7d745;
    padding: 8px 3px 0px 3px;
    border: 1px solid #efefef4a;
    border-radius: 5px;
    height: 38px;
    color: black;
    font-size: 17px;
    vertical-align: top;
    text-align: center;
    font-weight: bold;
}

.route_data .founder {
    width:56px;
    font-size: 14px;
    line-height: 20px;
}

.route_data .route .founder_label {
    position:absolute;
    left:2px;
    top:0px;
    height:12px;
    font-size:10px;
    color:black;
    letter-spacing:normal;
    word-spacing:normal;
}

.route_data div.is_stock {
    font-size: 24px;
    padding: 0;
}

.route_data div.is_stock.on {
    color:black;
}

.route_data div.is_stock.off {
    color:transparent;
}

.route_data div.is_stock.off:hover {
    color:rgba(0 0 0 / 10%);
    cursor:pointer;
}

.route_data .steps {
    font-size: 24px;
    padding: 4px;
    width: 80px;
}

.route_data .steps sup {
    font-size:17px;
}

.packs {
    overflow-x:scroll;
}

.utilities {
    position: absolute;
    top: 620px;
    left: 494px;
    left:0px;
    right: 0px;
    bottom: 0px;
    display:flex;
    justify-content: space-between;
    /*background-color: #3b555f;*/
}

.admin_pack {
    /*width: 164px;*/
    height: 100%;
    float: left;
    background-color: #3b555f;
    text-align: center;
    position:relative;
    
    /*padding:0 5px;*/
    /*border:5px solid #323232;*/
    /*border-width:0 5px;*/
    box-sizing:content-box;
    /*margin-right:12px;*/
}

.admin_pack .minimize {
    width: 12px;
    height: 7px;
    background-color: transparent;
    border-radius: 2px;
    position: absolute;
    top: 1px;
    right: 5px;
}

.admin_pack .minimize:hover {
    background-color:rgb(255 255 255 / 30%);
    cursor:pointer;
}

.admin_pack .minimize div {
    position:absolute;
    top:3px;
    height:1px;
    background-color:rgb(255 255 255 / 50%);
    width:8px;
    left:2px;
}

.admin_pack .minimize:hover div {
    background-color:rgb(255 255 255 / 80%);
}

.sidescroller .admin_pack {
    min-width: 50px;
    display:inline-block;
    vertical-align: top;
    float:none;
    height: 608px;
    overflow-y: scroll;
    overflow-x: hidden;
}

div.admin_pack {
    transition:width 0.25s;
}

div.admin_pack.skinny {
    width:100px;
}

/*.admin_pack.skinny .admin_pack_name,*/ 
.admin_pack.skinny .rating {
    display:none;
}


.admin_count_in_section {
    position:absolute;
    right:0px;
    top:1px;
    border-radius: 10px;
    padding: 0px 3px 0 2px;
    background-color:transparent;
    transition:0.4s;
}

.admin_count_in_section.egg {
    border: 1px solid white;
    margin-top: -1px;
}

.admin_count_in_section.egg.hint {
    background-color:white;
}

.admin_pack.skinny .admin_count_in_section {
    color: transparent;
    width: 5px;
    height: 5px;
    padding: 0;
    margin-right: 2px;
    margin-top: 3px;
    border-radius: 4px;
    overflow: hidden;
}

.admin_pack.skinny .admin_pack_title {
    font-size:9px;
}

.admin_pack.skinny .admin_polyad {
    font-size: 9px;
    /*margin-left: -6px;*/
}

.skinny .admin_puzz_id {
    width: 10px;
    min-width: 5px;
    overflow: hidden;
    color: transparent;
}

div.admin_pack.skinny.locked {
    width:80px;
}

.admin_pack.skinny.locked .admin_pack_name {
    display:none;
}

.admin_pack.skinny.locked .admin_polyad {
    /*display:none;*/
    font-size:8px;
}

.admin_pack.skinny.locked .admin_puzz_id {
    display:none;
}

.admin_pack.skinny.locked .admin_pack_title {
    font-size:9px;
    text-align: left;
    padding-left: 6px;
}

.admin_puzzle {
    transition:height 0.4s, color 0.3s, padding 0.4s;
}

.section.minimized .admin_puzzle {
    height:0px;
    padding:0;
    /*color:transparent;*/
}

.section.minimized .admin_count_in_section {
    /*height:1px;*/
    /*width:1px;*/
    /*margin-top:-1px;*/
    /*border:none;*/
    /*color:transparent;*/
    /*padding:0;*/
    /*font-size:2px;*/
    transform: scale(0.1);
    transform-origin:60% -10%;
}

.admin_polyad {
    transition:0.4s;
}

.section.minimized .admin_polyad,
.admin_pack.skinny.locked .section.minimized .admin_polyad {
    font-size: 2px;
    letter-spacing: 2px;
    margin-top:-1px;
}


.admin_pack.standard,
.admin_pack.periodical {
    width:162px;
}



.periodical .admin_puzzle.easy {
    background-color:#a1c3a1;
}

.periodical .admin_puzzle.medium {
    background-color:#c9b38b;
}

.periodical .admin_puzzle.hard {
    background-color:#cf9797;
}

.periodical .admin_puzzle.infuriating {
    background-color:#b095b0;
}

.periodical .admin_puzzle.unknown {
    background-color:#72a8c5;
}

.admin_pack .section .admin_puzzle.src_src {
    background: linear-gradient(90deg, cyan, white);
}

.admin_pack .section .admin_puzzle.src_trg {
    background: linear-gradient(90deg, gray, white);
}

.admin_pack .section .admin_puzzle.trg_src {
    background: linear-gradient(90deg, white, gray);
}

.admin_pack .section .admin_puzzle.trg_trg {
    background: linear-gradient(90deg, white, cyan);
}

.admin_pack .section .admin_puzzle.src_src.trg_trg {
    background:cyan;
}

.admin_pack .section .admin_puzzle.src_trg.trg_src {
    background:white;
}


.admin_pack.wide {
    width:180px;
}

.admin_pack.narrow:hover {
    width:164px;
}

.admin_pack.compound {
    min-width:180px;
}

.admin_pack.one_too_many {
    min-width:160px;
}

.admin_pack.animal_crossing {
    min-width:110px;
}

.admin_packname {
    color:rgb(200,200,200);
}

.admin_pack.builder_header {
    color:white;
}

.admin_pack.admin_builder {
    /*width:220px;*/
    /*border-right: 5px solid #323232;*/
    width: 232px;
    overflow-y: scroll;
}

.admin_pack.admin_builder.editing {
    background-color: rgb(0 80 150);
    /*background-color: rgb(38 107 167);*/
}

.admin_pack.admin_builder.editing.flipped {
    background-color:rgb(130 20 20);
}

.admin_pack.periodical {
    overflow-y:scroll;
}

/* .admin_pack.not_assigned { */
    /*width:220px;*/
/* } */

.not_assigned.collapse ul.sortable.admin_difficulty {
    height: 40px;
    overflow: hidden;
    overflow-y: scroll;
}

.delete {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 30px;
    width: 150px;
}

.delete.skinny {
    width: 88px;
}

.delete ul.garbage {
    list-style-type: none;
    margin: 0;
    padding: 0;
    min-height: 20px;
    margin-top: 5px;
    background-color: transparent;
}

.delete .icon {
    position:absolute;
    width:100%;
    height:100%;
    color: black;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    background-color:rgb(120 120 120);
}

.delete.dangling .icon {
    background-color:#ff5252;
    color: #e3e3e3;
}

.admin_pack.narrow .admin_polyad {
    display:none;
}

.admin_pack.narrow:hover .admin_polyad {
    display:block;
}

.pack_slider {
    float: left;
    height: 100%;
    width: 52%;
    overflow-x: auto;
    display: flex;
}

.admin_pack.flex {
    flex-direction: row;
    flex-wrap: nowrap;
    min-width: 164px;
}

.rating {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    font-size:10px;
    font-weight:bold;
    line-height:20px;
    color:rgb(173 179 255);
}

.admin_pack.not_assigned {
    /*width:164px;*/
    overflow-y: scroll;
    /*overflow-x: hidden;*/
    height: calc(100% - 40px);
    position: relative;
}

.admin_builder {
    /*width: 164px;*/
    height: 100%;
    float: left;
    /*margin-left: 10px;*/
    background-color: #3b555f;
    text-align: center;
}

.pathfinder_title {
    width: 350px;
    margin:12px;
    height:34px;
}

.admin_pathfinder {
    position: relative;
    width: 1200px;
    height: 100%;
    background-color: #3b555f;
    /* float: left; */
    margin-right: 12px;
    /*padding:12px;*/
}

.admin_pathfinder .button {
    border-radius:8px;
    background-color:rgba(150 150 150 / 0.25);
    display:inline-flex;
}

span.how_many {
    color: rgb(255 255 255 / 60%);
    font-size: 0.75rem;
    margin-left: 5px;
}

.admin_pack_title {
    font-size: 12px;
    line-height: 24px;
    font-weight: bold;
    color:white;
}

.admin_pack.narrow .admin_pack_name {
    display:none;
}

.admin_pack.narrow:hover .admin_pack_name {
    display:inline-block;
}

.admin_pack .admin_difficulty,
.admin_pack .admin_section {
    /*width: 100%;*/
    min-height: 8px;
    position:relative;
    padding-top: 7px;
}

.section.bright {
    /*filter:blur(2px);*/
    filter:saturate(2);
}

.section.departed {
    /*filter:brightness(.5);*/
    filter:brightness(0.7);
}

.admin_pack .admin_section {
    border:1px solid black;
    border-radius:3px;
    margin:2px;
}

.admin_pack .admin_easy {
    background-color: #5ea25e;
}

.admin_pack .admin_medium {
    background-color: rgb(64 138 187);
}

.admin_pack .admin_hard {
    background-color: #bb4b4b;
}

.admin_pack .admin_infuriating {
    background-color: #7d477d;
}

.admin_pack .admin_impossible {
    background-color: rgb(66 66 66);
}

.admin_pack .admin_unknown {
    background-color: transparent;
}

.admin_pack.locked .admin_pack_title:after {
    content:"🔒";
    position:absolute;
    right:4px;
}

.admin_difficulty {
    box-sizing: border-box;
    padding: 4px;
    margin: 0;
}

.admin_section {
    box-sizing: border-box;
    padding: 4px;
    margin: 0;
}

.admin_puzzle {
    position:relative;
    list-style-type: none;
    /*border: 1px solid gray;*/
    border-radius: 3px;
    padding: 1px 0 3px 0;
    margin: 2px 0px;
    background-color: rgba(228, 228, 228, 0.5);
    font-size: 10px;
    height:9px;
    /*border:1px solid transparent;*/
    /*padding: 2px 0 4px 0;*/
    border: 1px solid transparent;
    padding: 1px 0 3px 0;
}

.admin_puzzle:hover {
    background-color: rgba(228, 228, 228, 0.75);
}

body div.sidescroller div.admin_pack ul.section li.admin_puzzle.editing,
.new_body div.admin_pack ul.section li.admin_puzzle.editing {
    background-color: #3bf1ff;
    background-color: rgb(0 105 150);
    background-color: rgb(46 140 214);
    border: 1px solid #37339280;
}

body div.admin_pack.periodical ul.section li.admin_puzzle.editing {
    background-color: #3bf1ff;
    background-color: rgb(0 105 150);
    background-color: rgb(46 140 214);
    border-color: rgb(255 255 255 / 50%);
}

li.admin_puzzle.current {
    margin: 16px 0;
    border: 10px solid rgb(0 255 0 / 100%);
    border-width: 2px;
    border-radius: 10px;
}

body div.admin_pack.periodical ul.section li.admin_puzzle.current.editing {
    border-width:2px;
}

.admin_puzzle .admin_polyad:hover {
    cursor: pointer;
}

.admin_pack.locked .admin_puzzle .admin_polyad:hover {
    cursor: default;
}

.admin_puzz_id,
.admin_puzz_edit_icon {
    /*float: left;*/
    position:absolute;
    left:-1px;
    top:0px;
    height: 13px;
    width: auto;
    min-width: 24px;
    line-height: 12px;
    border: 1px solid transparent;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.16);
    box-sizing: border-box;
    /* margin-left: -4px; */
    /*margin-top: -1px;*/
}

.sortable .admin_puzz_id.a:hover {
    cursor: move;
    background-color: rgba(255, 255, 255, 0.65);
}

.admin_puzz_id.movie {
    border: 1px solid rgb(0 0 255 / 50%);
    background-color: rgb(0 0 255 / 20%);
}

.admin_puzz_id.pun {
    border: 1px solid rgb(0 255 0 / 50%);
    background-color: rgb(0 255 0 / 20%);
}

.admin_puzz_id.adult {
    border: 1px solid rgb(255 0 0 / 50%);
    background-color: rgb(255 0 0 / 20%);
}

.ui-sortable-helper .admin_polyad {
    text-align:center;
    color:blue;
}

.ui-sortable-helper .admin_count_in_section {
    display:none;
}

.ui-sortable-helper .admin_puzz_id {
    width:5px;
    /*display:none;*/
}


.admin_puzz_egg {
    color: rgba(0, 0, 0, 0.55);
}

.admin_play_area {
    position:relative;
    transition:height 0.25s;
}

.add_target {
    position:absolute;
    z-index:20;
    left:5%;
    bottom:-28px;
    height:28px;
    width:28px;
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:4px;
    background-color:transparent;
    color:transparent;
    transition:background-color 0.15s;
}

.add_target:hover {
    background-color: rgba(255 255 255 / 0.1);
    cursor:pointer;
    color:rgba(255 255 255 / 0.5);
}

.leven {
    position: absolute;
    z-index: 20;
    right: 5%;
    bottom: 29px;
    height: 26px;
    width: 28px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: transparent;
    color: transparent;
    transition: background-color 0.15s;
    background-color: rgb(0 0 0 / 17%);
    color: rgba(255 255 255 / 0.5);
}

.src_matches {
    content: "2";
    position: absolute;
    top: 17px;
    right: 2px;
    font-size: 12px;
    width: 60px;
    height: 20px;
    color: #5f7a84;
    text-align: right;
}

.trg_matches {
    content: "2";
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 12px;
    width: 60px;
    height: 20px;
    color: #5f7a84;
    text-align: right;
}

.admin_source {
    position:relative;
    z-index:1;
}

/*.admin_words {*/
/*    position:relative;*/
/*    z-index:2;*/
/*}*/

.admin_source,
.admin_typebox,
.admin_target,
.admin_semi_target {
    position: relative;
    text-align: center;
    width: 90%;
    height: 26px;
    font-size: 18px;
    color: white;
    margin: 2px 0;
    border: none;
    box-sizing: border-box;
    padding: 1px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.18);
    background-color: rgb(130 160 170 / 50%);
    outline: none;
}

.admin_target.blind {
    color:rgb(255 255 255 / 10%);
}

.admin_target.reached {
    background-color:rgb(40,140,40);
}

.admin_accepted_word {
    padding: 1px;
    border-radius: 5px;
    margin: 2px auto;
    color: #989898;
    color:#b7b7b7;
    font-size: 18px;
    font-weight: normal;
    height: 26px;
    line-height: 26px;
    width: 90%;
}

.admin_accepted_word.semi_target {
    color:white;
}

.builder,
.admin_accepted_word {
    transition:opacity 0.5s;
}

.admin_accepted_word.invis {
    opacity:0;
}

.builder.invis {
    opacity:0;
}

.builder.invis.fadein,
.admin_accepted_word.invis.fadein {
    opacity:1;
}

.builder.invis {
    transition:opacity 0s;
}

.builder.invis.fadein {
    transition:opacity 0.5s;
}

/*.admin_accepted_word.fadein,*/
/*.builder.fadein {*/
/*    opacity:1;*/
/*}*/

/*@keyframes fadein {*/
/*    0% {*/
/*        opacity:0;*/
/*    }*/
/*    100% {*/
/*        opacity:1;*/
/*    }*/
/*}*/

.builder.shimmy {
    animation: shimmy 0.4s;
}

@keyframes shimmy {
    0% {
        margin-left:-12px;
    }
    40% {
        background-color:rgba(255 0 0 / 50%);
        margin-left:12px;
    }
    60% {
        margin-left:-9px;
    }
    75% {
        background-color:transparent;
        margin-left:8px;
    }
    85% {
        background-color:rgb(255 0 0 / 50%);
        margin-left:-6px;
    }
    92% {
        margin-left:3px;
    }
    97% {
        margin-left:-1px;
    }
    100% {
        background-color:transparent;
        margin-left:0px;
    }
}

/* .admin_source { */
    /*margin-top: 10px;*/
/* } */

.admin_typebox {
    border: none;
    background-color: rgba(0, 0, 0, 0.2);
}

.admin_typebox::placeholder {
    color: #497687;
    font-size: 13px;
}

.admin_error {
    background-color: rgba(255, 0, 0, 0.40);
}

/* .admin_typebox.solved { */
    /*background-color: rgba(0, 255, 0, 0.25);*/
    /*background-color:rgb(40,140,40);*/
/* } */

/* .admin_unassigned_area {} */

.admin_builder .admin_pack {
    margin: 0;
    position: absolute;
    bottom: 0px;
    height: auto;
}

.admin_builder > div {
    margin-bottom:6px;
}

.builder_header {
    color: white;
    font-size: 20px;
    height: 30px;
    padding-top: 4px;
    font-weight: normal;
}

.admin_pack .admin_pack {
    margin: 20px auto;
    height: auto;
}

.pie_chart {
    position:relative;
    width:100px;
    height:100px;
    border-radius:50px;
    background-color:red;
}

.pie_chart .half_circle {
    position:absolute;
    top:50px;
    left:0px;
    width:100px;
    height:50px;
    border-bottom-left-radius:50px;
    border-bottom-right-radius:50px;
    background-color:rgb(100 100 100);
}

.pie_chart .half_circle .half_circle {
    background-color:rgb(200 200 200);
    transform:rotate(90deg);
    transform-origin:25% 75%;
}



/* buttons */

.button_group {
    display:inline-flex;
    flex-shrink:0;
    /*width:220px;*/
    /*margin-bottom:6px;*/
    /*width:100%;*/
    justify-content:center;
}

.button {
    border: none;
    background-color: rgb(150 150 150 / 18%);
    padding: 0px 12px;
    margin: 0px 4px;
    color: rgba(255 255 255 / 20%);
    font-size: 12px;
    font-weight: bold;
    justify-content: center;
    display: flex;
    /*flex-direction: column;*/
    border-radius: 8px;
    text-align: center;
    flex-shrink:0;
    height:26px;
    line-height:26px;
}

.button:hover {
    cursor: default;
}

.button.enabled {
    color: rgb(255 255 255 / 80%);
    background-color: rgb(180 180 180 / 30%);
}

.button_group .button {
    margin:0;
    margin-left:1px;
}

.button_group .button.toggle {
    border: none;
    background-color: rgb(150 150 150 / 18%);
    padding: 6px 8px;
    color: rgb(255 255 255 / 20%);
    /*font-size: 10px;*/
    font-weight: bold;
    justify-content: center;
    display: flex;
    flex-direction: column;
    border-radius: 0px;
}

.button_group .button:first-child {
    border-top-left-radius:8px;
    border-bottom-left-radius:8px;
    border-top-right-radius:0px;
    border-bottom-right-radius:0px;
}

.button_group .button:last-child {
    border-top-right-radius:8px;
    border-bottom-right-radius:8px;
    margin-left:1px;
}

.button_group .button:not(:first-child) {
    border-top-left-radius:0px;
    border-bottom-left-radius:0px;
    margin-left:1px;
}

.admin_buttons {
    display: flex;
    justify-content: center;
    /*margin-bottom:6px;*/
}

.button.enabled:hover {
    cursor: pointer;
    background-color: rgb(180 180 180 / 40%);
}

.button.toggle {
    color: rgb(255 255 255 / 20%);
    background-color: rgb(150 150 150 / 18%);
    transition:color 0.2s, background-color 0.2s;
}

.button.toggle.on {
    color: rgb(255 255 255 / 80%);
    background-color: rgb(180 180 180 / 30%);
}

.button.toggle:hover {
    cursor:pointer;
    color:rgb(255 255 255 / 40%);
    background-color: rgb(150 150 150 / 22%);
}

.button.toggle.on:hover {
    cursor: pointer;
    color:rgb(255 255 255 / 70%);
    background-color: rgb(180 180 180 / 25%);
}



.admin_progress {
    position:relative;
}

.admin_steps {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    width: 40px;
    margin: 0 auto;
    border-radius: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(180, 180, 180, 0.20);
    border: 1px solid rgba(180, 180, 180, 0.40);
    overflow:hidden;
}

.admin_steps:hover {
    cursor:pointer;
    background-color: rgba(180, 180, 180, 0.40);
    border: 1px solid rgba(180, 180, 180, 0.65);
}
.admin_steps:hover::before {
    content:" ↻ ";
}

.admin_letters {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    width: auto;
    border-radius: 5px;
    height: 16px;
    line-height: 16px;
    background-color: rgba(180, 180, 180, 0.20);
    border: 1px solid rgba(180, 180, 180, 0.40);
    position: absolute;
    left: 60%;
    top: 0px;
    z-index: 20;
    padding: 0 4px;
}

.admin_letters:hover {
    cursor:pointer;
    background-color:rgba(180, 180, 180, 0.40);
}

input.admin_pathfinder_input {
    /*width: 80%;*/
    /*margin: 5% 7.5%;*/
    margin:4px;
    background-color: rgba(255, 255, 255, 0.16);
    border-radius: 3px;
    outline: none;
    border: none;
    padding: 4px;
    font-size: 16px;
    text-align: center;
    color: #CCC;
}

div.admin_nodes {
    width: 100%;
    /* margin-left: 3%; */
    height: calc(100% - 58px);/*276px;*/
    top: 50px;
    text-align: center;
    overflow-y: hidden;
    position: absolute;
}

/*div .admin_nodesect {*/
/*    width: 100%;*/
/*    float: left;*/
/*    clear: both;*/
/*    margin: 20px 0px 5px 0px;*/
/*    padding-bottom: 3px;*/
/*    color: #648b98;*/
/*    font-size: 14px;*/
/*}*/

div .admin_nodesect {
    /*width: 100%;*/
    float: left;
    clear: none;
    padding-bottom: 3px;
    color: #648b98;
    font-size: 14px;
    /*width: 31.333%;*/
    width:33.33%;
    /*margin: 10px 1% 0 1%;*/
    /*position:relative;*/
    height:100%;
    overflow-y:hidden;
    padding:10px;
    /*calc(100% - 20px);*/
}

.admin_nodesect .deflations,
.admin_nodesect .mutations,
.admin_nodesect .inflations {
    /*position:relative;*/
    /*width: calc(100% + 14px);*/
    height: calc(100% - 20px);
    overflow-y: auto;
}

div.admin_node {
    position: relative;
    float: left;
    margin: 2px;
    width: auto;
    padding: 3px 4px;
    background-color: rgba(126, 173, 177, 0.42);
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: normal;
    color: #d3f9ff;
}

div.admin_node:hover {
    cursor: pointer;
    background-color: rgba(173, 226, 223, 0.60)
}

div.admin_node > div {
    width:100%;
    height:100%;
    position:absolute;
    top:0px;
    left:0px;
}

.change_type {
    border-bottom: 1px solid #648b98;
    line-height: 20px;
    margin-bottom: 5px;
}

.tabreturn {
    position: absolute;
    left: -1000px;
    width: 50px;
}

.button.refresh {
    position:absolute;
    bottom:4px;
    right:4px;
    width:140px;
}

.button.admin_edit.right {
    margin-left: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.button.admin_build.left {
    margin-right: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.button.on {
    color: rgba(224, 224, 224, 0.85);
}

.button.on:hover {
    cursor: default;
}

.button.off:hover {
    cursor: pointer;
}

.visual_score {
    position:absolute;
    width:100%;
    top:0px;
    left:0px;
}

.visual_word_count {
    position:absolute;
    left:0px;
    height:3px;
}

.visual_letter_count {
    position:absolute;
    left:0px;
    height:3px;
}

.visual_word_count.stock {
    top:0px;
    background-color:yellow;
}

.visual_word_count.best {
    top:3px;
    background-color:green;
}

.visual_letter_count.stock {
    top:6px;
    background-color:red;
}

.visual_letter_count.best {
    top:9px;
    background-color:blue;
}




.change_diff {
    background-color: rgb(130 160 170 / 50%);
    border: none;
    border-radius: 5px;
    height: 26px;
    padding: 0 5px;
    color: white;
    outline: none;
    /*margin-top: -2px;*/
}

.change_diff option {
    background: rgb(92 92 92 / 50%);
    padding:5px 0;
}

.change_diff:disabled {
    color: rgb(150 150 150 / 50%);
    background-color: rgb(150 150 150 / 25%);
}

.admin_egg_input {
    position: relative;
    text-align: center;
    width: 90%;
    height: 26px;
    font-size: 12px;
    color: white;
    margin: 8px 0 1px 0;
    border: none;
    box-sizing: border-box;
    padding: 1px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.18);
    background-color: rgb(130 160 170 / 50%);
    outline: none;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    /*border-bottom: 1px solid #005096;*/
}

.admin_egg_hint {
    position: relative;
    text-align: center;
    width: 90%;
    height: 44px;
    font-size: 11px;
    color: white;
    margin: 0 0 8px 0;
    border: none;
    box-sizing: border-box;
    padding: 4px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.18);
    background-color: rgb(130 160 170 / 50%);
    outline: none;
    resize: none;
    overflow-x: hidden;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.admin_puzz_special {
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    margin: -1px 2px;
    display: inline-block;
    background-color:transparent;
}

.stock_score {
    font-size: 8px;
    left: 25px;
    margin-top: 2px;
    position: absolute;
}

.best_score {
    font-size: 8px;
    right: 25px;
    margin-top: 2px;
    position: absolute;
}

    


.dictionary_mod {
    width: 360px;
    height: 100%;
    /*overflow-y:scroll;*/
    padding:10px 0 0 10px;
    float: left;
    background-color: #3b555f;
    /*text-align: center;*/
    position: relative;
    /*margin-left:12px;*/
    flex-shrink:0;
}

.dictionary_title {
    color:rgb(200,200,200);
    margin-left:10px;
    position:relative;
    display: inline-block;
}

/* .dictionary_version { */
    /*top: -8px;*/
    /*right: 0px;*/
    /*font-size: 18px;*/
    /*color: #a1a1a1;*/
    /*display: inline-block;*/
/* } */

.dictionary_version.red {
    color:rgb(255 120 120);
}

.dictionary_mod .custom_word_row {
    /*width: auto; */
    /*margin: 0px 2px 0 4px;*/
    float: left;
    clear: both; 
    border-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    background-color: rgba(255,255,255,0.2);
    margin-bottom: 6px;
    padding: 0px 20px 0 0;
    /* height: 24px; */
    /* line-height: 24px; */
    font-size:14px;
    color: #CCC;
}

.recently_changed .custom_word_row {
    /*float:none;*/
    position: relative;
    padding:0 10px 0 0;
}

.custom_word {
    /*width: 80%;*/
    float: right;
    padding:0 4px;
    line-height:18px;
}

.delete_custom_word,
.validate_word {
    float: right;
    width: 20px;
    /* margin-left: -20px; */
    height: 100%;
    background-color: #8a3c3c;
    border-radius: inherit;
    border-radius: 0px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    text-align: center;
    line-height:20px;
}

.delete_custom_word:hover,
.validate_word:hover {
    background-color:#bf6666;
    color:white;
    cursor:pointer;
}

.search_results {
    float: left;
    margin-top: 10px;
}

.custom_word_adder {
    float: left;
    height: 24px;
    width: 180px;
    margin: 4px 0 6px 0;
}

.custom_word_adder input[type=text] {
    width: 70%;
    border: none;
    height: 100%;
    border-radius: 2px;
    padding: 0;
    padding-left: 6px;
    float: left;
}

.custom_word_adder button {
    width: 23%;
    margin-left: 2%;
    /* display: inline-block; */
    float: left;
    height:100%;
    border:none;
    border-radius:3px;
    font-size:11px;
}

.utilities .tools {
    padding-top:10px;
    font-size:12px;
    color:#CCC;
    float:left;
    clear:both;
}

.utilities .tools div {
    float:left;
    clear:both;
    margin:4px 0;
}

.utilities button.update_pack_icons {
    /* display: inline-block; */
    height:26px;
    float: left;
    clear: both;
    border: none;
    border-radius: 3px;
    font-size: 11px;
}

.add_word_to_dictionary {
    transition:0.2s;
}

.add_word_to_dictionary:hover {
    cursor:pointer;
    background-color:#c7c7c7;
}

.export_dictionary {
    margin-left:8px;
}

.dictionary_stats {
    color: #c7c7c7;
    font-size: 12px;
    margin: 8px 0px;
    position:relative;
    width:180px;
}

.dictionary_latest {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 100%;
    overflow-y:scroll;
    color:rgb(200,200,200);
    text-align:center;
    font-size:12px;
    /* padding-bottom:10px; */
}

.recently_changed {
    position: relative;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
}

.dictionary_latest .title {
    height:30px;
    text-align:center;
    line-height:30px;
}

.dictionary_mod .separator {
    width: 1px;
    position: absolute;
    left: 204px;
    top: 10px;
    bottom: 10px;
    background: rgb(120 170 190 / 25%);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(120,170,190,0.25) 5%, rgba(120,170,190,0.25) 95%, rgba(0,0,0,0) 100%);
    /*background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(120,170,190,0.25) 5%, rgba(120,170,190,0.25) 100%);*/
    
}

.changed_word {
    text-align: left;
    margin-left: 4px;
    height: 24px;
    margin-right: 10px;
    padding-left: 4px;
    border: 1px solid #a4b6b95c;
    margin-bottom: 4px;
    line-height: 24px;
}

table.word_counts {
    border-collapse: collapse;
}

table.word_counts tr:first-child td:first-child {
    border:0;
}

.word_counts td {
    border:1px solid rgb(180 180 180 / 60%);
    padding:4px;
    text-align:center;
    width:100%;
}

.auto_store {
    width: 20px;
    height: 20px;
    margin-left: -20px;
}



.admin_toggle.window {
    border-radius: 12px;
    width: 120px;
    height: 26px;
    color: #b3b8b9;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.5);
    box-shadow: inset 3px 3px 6px rgb(0 0 0 / 75%);
    font-size: 11px;
    box-sizing: content-box;
    transition-duration: 0.1s;
    margin: 0 4px;
}

.admin_toggle.window.disabled {
    opacity:25%;
}

.admin_toggle.window.xlarge {
    width: 108px;
}

.admin_toggle.window.large {
    width: 96px;
}

.admin_toggle.window.medium {
    width:84px;
}

.admin_toggle.window.small {
    width:72px;
}

.admin_toggle.window.xsmall {
    width:60px;
}

.admin_toggle.window:hover {
    cursor: pointer;
    filter: brightness(1.2);
    background-color: rgb(150 150 150 / 10%);
}

.admin_toggle.window.disabled:hover {
    cursor:default;
    filter:brightness(1);
    background-color:transparent;
}

.admin_toggle.tray {
    position: absolute;
    height: 100%;
    /*left: calc(-100% + 56px);*/
    width: 150%;
    /*left: -67%;*/
    left: -60%;
    transition-duration: 0.5s;
}

.admin_toggle.window.togright .tray {
    left: 0%;
    animation: togright 0.5s;
}

.admin_toggle.window.togleft .tray {
    animation: togleft 0.5s;
}

.admin_toggle.window.togright .tray.instant {
    left:0%;
    animation: togright 0s;
}

.admin_toggle.window.togleft .tray.instant {
    animation: togleft 0s;
}


.admin_toggle .left {
    position: absolute;
    text-align: center;
    height: 100%;
    line-height: 34px;
    color: #dcf1f5;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    
    /*width: 45%;*/
    /*left: 0%;*/
    width: 42.5%;
    left: 0%;
}

.admin_toggle.ball {
    border-radius: 10px;
    top: 4%;
    height: 92%;
    color: rgba(230,230,230);
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    position: absolute;
    line-height: 30px;
    transition-duration: 0.5s;
    box-shadow: inset 2px 2px 2px rgb(255 255 255 / 28%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    
    /*width: 21%;*/
    /*left: 45%;*/
    width: 26%;
    left: 40%;
}

.admin_toggle .right {
    position: absolute;
    text-align: center;
    height: 100%;
    line-height: 34px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    
    /*width: 45%;*/
    /*left: 67%;*/
    width: 42.5%;
    left: 65%;
}

@keyframes togright {
    /*from { left: -67%; }*/
    /*to { left: 0%; }*/
    from { left: -60%; }
    to { left: 0%; }
}

@keyframes togleft {
    /*from { left: 0%; }*/
    /*to { left: -67%; }  */
    from { left: 0%; }
    to { left: -60%; }    
}

@keyframes togmiddle {
    from { left:unset }
    to { left: -25%; }
}
