#subMenuContainer > div {
    z-index: 99;
}
#listMapID {
    position: relative;
    list-style: none;
}

#linkConfigMenuID {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 50%;
    background-color: rgba(255,255,255, .4);
    text-decoration: none;
    box-shadow: 2px 4px 16px 4px #12121226;
    color: #666;
    transition: all .25s ease 0s;
}
#linkConfigMenuID:hover {
    background-color: white;
}

.hexParentOnEnter > *:not(.hexOnEnter) {
    opacity: .5;
    filter: grayscale(25);
}

.hexInfoParentOnEnter > .hexParentOnClick {
    z-index: 0;
}

.hex {
    height: 7.5rem;
    width: calc((7.5rem / 3) * 1.73205080757); /*l = r(2/3)*3^(1/3)*/
    font-size: 7.5rem;
}
.hex .hex-span {
    height: calc((7.5rem / 3) * 1.73205080757);
    width: calc((7.5rem / 3) * 1.73205080757);
}
.hex .hex-span-tit {
    top: calc(50% + (((7.5rem / 3) * 1.73205080757) / 2) + 1px);
}

.hex.small {
    height: 3rem;
    width: calc((3rem / 3) * 1.73205080757); /*l = r(2/3)*3^(1/3)*/
    font-size: 3rem;
}
.hex.small .hex-span {
    height: calc((3rem / 3) * 1.73205080757);
    width: calc((3rem / 3) * 1.73205080757);
}
.hex.small .hex-span-tit {
    top: calc(50% + (((3rem / 3) * 1.73205080757) / 2) + 1px);
}

.hex.medium {
    height: 5rem;
    width: calc((5rem / 3) * 1.73205080757); /*l = r(2/3)*3^(1/3)*/
    font-size: 5rem;
}
.hex.medium .hex-span {
    height: calc((5rem / 3) * 1.73205080757);
    width: calc((5rem / 3) * 1.73205080757);
}
.hex.medium .hex-span-tit {
    top: calc(50% + (((5rem / 3) * 1.73205080757) / 2) + 1px);
}

.hex {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: rgb(152, 152, 152);
    cursor: pointer;

    transition: all .25s ease-in-out;
}

.hex::after
, .hex::before {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: inherit;
    content: "";
}

.hex::after {
    transform: rotateZ(-60deg);
}

.hex::before {
    transform: rotateZ(60deg);
}

.hex:hover > .hex-span {
    border-width: 3px;
}

.hex-span {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    
    border: 1px solid white;
    color: white;
    border-radius: 50%;
    font-size: 25%;
    text-align: center;
    z-index: 1;

    transition: all .1s ease-in;
}

.hex-span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.hex-span-tit {
    color: white;
    font-size: .7rem;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    text-align: center;
    text-overflow: ellipsis;
    width: 100%;
    z-index: 1;
}

.section-ppal * {
    box-sizing: border-box;
}

.section-ppal {
    height: 100%;
    /* min-height: 480px; */
    /* max-height: 500px; */
    position: relative;
}

.section-ppal-aside
, .section-ppal-div {
    height: 100%;
}

.section-ppal-div {
    overflow: auto hidden;
    width: calc(100% - 25rem);
    position: absolute;
    top: 0;
    left: 25rem;
}

.section-ppal-aside {
    width: 25rem;
    position: absolute;
    top: 0;
    left: 0;
    
    background-color: white;
    border-radius: 5px;
    box-shadow: 2px 4px 4px 0px #0003;
    overflow: hidden;
}

.hex-info-span {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    
    color: white;
    font-size: 12rem;
    mix-blend-mode: soft-light;

    pointer-events: none;

    transition: all .25s ease .1s;
}

.hex-info-div {
    box-sizing: border-box;
    height: 100%;
    width: 100%;

    position: absolute;
    top: 0;
    left: 0%;

    background-color: white;
    transition: all .15s ease;
}

.hex-info-div h2 {
    color: white;
    font-weight: 300;
    font-size: 2rem;
    padding-top: 15px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 1rem;
}


.hex-info-div h2 + section{
    height: calc(100% - 65px);
    width: calc(100% - 2rem);
    position: absolute;
    top: 50px;
    left: 1rem;
    overflow: hidden auto;

    background-color: #0000004d;
    padding: .5rem;
    border-radius: 5px;
}

.hex-info-div a.icon {
    display: block;
    position: relative;
    color: white;
    padding: .5rem 1rem .5rem 2rem;
    font-family: inherit;
    overflow: hidden;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all .25s ease;
}

.hex-info-div a.icon > span{
    font-family: Arial, Verdana, Helvetica, sans-serif;
}

.hex-info-div a::before {
    position: absolute;
    top: 50%;
    left: 0rem;
    opacity: 0;
    mix-blend-mode: soft-light;
    transform: translate3d(-2rem, -50%, 0);
    transition: all .25s ease;
}

.hex-info-div a:hover {
    border-bottom-color: white;
}

.hex-info-div a:hover::before {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
}

.hex-info-div.hexOnEnter {
    z-index: 1;
}

.hex-info-div:not(.hexOnEnter) {
    transform: translate3d(100%, 0, 0);
}

.hex-info-div:not(.hexOnEnter) > .hex-info-span {
    transform: translate3d(100%, 0, 0);
}

.hex-info-div.hexParentOnClick {
    transform: translate3d(0%, 0, 0);
}

.hex-info-div.hexParentOnClick  > .hex-info-span {
    transform: translate3d(0%, 0, 0);
}

.section-ppal-div > div {
    height: 100%;
    width: 100%;
}

.section-ppal-div-ul {
    height: 100%;
    width: 100%;

    margin: 0;
    padding: 0;

    overflow: auto;
}	