/* ----------------- Elastic sidebar ----------------- */
.indexMenu{
    position: fixed;
    right: 0%;
    margin-left: -15rem;
    width: 235px;
    height: 490px;
    border-bottom-left-radius: 10px;
    pointer-events: none;
    z-index: 1;
}
.test {
    position: fixed;
    right: 0%;
    margin-left: -15rem;
    width: 235px;
    height: 490px;
    border-bottom-left-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

svg {
    overflow: visible;
}

.sidebar {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

.s-path {
    /* cursor: -webkit-grab; */
    /* cursor: grab; */
}

/* --------------------------------------------------- */
.hover_tag {
    background-color: white;
    position: absolute;
    z-index: 100000;
    color: #777;
    padding: 3px 10px;
    display: none;
}



.buttonShow {
    position: absolute;
    z-index: 10000;
    top: 50%;
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    display: none;
}

.buttonShow:hover {
    fill: #c2292e;
}

.buttonShow:hover .nav__triangle {
    transform: translate3d(-54px, 0, 0);
}

.buttonShow:hover .nav__line {
    transform: translate3d(17px, 0, 0);
}

.buttonShow.leftSide {
    left: 1%;
}

.buttonShow.rightSide {
    right: 1%;
}

.nav-icon {
    pointer-events: none;
}

.nav-icon--right {
    transform: scale3d(-1, -1, 1);
}

.nav__triangle,
.nav__line {
    transition: transform 0.3s;
    fill: currentColor;
}