﻿

/*body {
    background-color: gray;
    font-family: "Open Sans", sans-serif;
}*/

.wp-content {
    margin-top: 60px;
    margin-left: 75px;
}

/* Remove unde
a:hover {
  text-decoration: none;
}
/* Remove Bootstrap button outline */

[data-component=sidebar] .sidebar {
    position: fixed;
    z-index: 9999;
}

[data-component=sidebar] .first-menu {
    position: fixed;
    background-color: #292a2c;
    height: 100vw;
    width: 75px;
    top: 60px;
    overflow: hidden;
    transition: width 0.5s;
}

    [data-component=sidebar] .first-menu a {
        color: #fff;
    }

    [data-component=sidebar] .first-menu i {
        font-size: 24px;
    }

    [data-component=sidebar] .first-menu span {
        font-size: 14px;
        white-space: nowrap;
        font-family: "Open Sans", sans-serif;
        opacity: 0;
        visibility: hidden;
    }

    [data-component=sidebar] .first-menu:hover span {
        opacity: 1;
        visibility: visible;
    }

    [data-component=sidebar] .first-menu .list-group-item {
        border-radius: 0;
    }

        [data-component=sidebar] .first-menu .list-group-item:hover {
            background-color: #920000 ;
        }

        /*[data-component=sidebar] .first-menu .list-group-item.active {
            background-color: #920000;
        }*/





[data-component=sidebar] .first-menu:hover {
    width: 100px;
}

[data-component=sidebar] .list-group-item {
    font-size: 14px;
}

[data-component=sidebar] .submenu {
    position: fixed;
    left: 160px;
    width: 195px;
    top: 60px;
    background-color: #009fff;
    height: 100vw;
    opacity: 0;
    visibility: hidden;
    transition: 600ms opacity 600ms, 600ms visibility 600ms;
}

    [data-component=sidebar] .submenu .list-group-item {
        margin-top: 8px;
    }

[data-component=sidebar] .first-menu li:hover .submenu {
    visibility: visible;
    opacity: 1;
}

[data-component=sidebar] .sub-submenu {
    position: fixed;
    background-color: #fff;
    left: 355px;
    top: 60px;
    height: 100vw;
    width: 195px;
    opacity: 0;
    visibility: hidden;
    transition: 600ms opacity 600ms, 600ms visibility 600ms;
}

    [data-component=sidebar] .sub-submenu a {
        color: #009fff;
    }

    [data-component=sidebar] .sub-submenu .list-group-item:hover {
        background-color: transparent;
    }

[data-component=sidebar] .submenu li:hover .sub-submenu {
    visibility: visible;
    opacity: 1;
}

[data-component=sidebar] .list-group-item {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

[data-component=sidebar] .arrow {
    position: fixed;
    left: 329px;
    width: 0;
    height: 0;
    border-top: 27px solid transparent;
    border-bottom: 27px solid transparent;
    border-right: 27px solid white;
}

    [data-component=sidebar] .arrow:nth-child(3) {
        top: 20px;
    }
