.side-nav-section {
    display: inline-block;
    /*background-color: #eee;*/ 
}

.side-nav-section .side-nav {
    width: 10%;
    float: left;
}

.side-nav-section .page {
    width: 90%;
    float: right;
    padding: 20px;
    background-color: #f3f3f3;
}

.side-nav li {
    /*width: 25%;*/
}

.side-nav > li:nth-child(1) > a {
    background-color: #426777;
}

.side-nav > li:nth-child(2) > a {
    background-color: #8ccfd7;
}

.side-nav > li:nth-child(3) > a {
    background-color: #8bc1cd;
}

.side-nav > li:nth-child(4) > a {
    background-color: #a8acad;
}

/*start repeating*/
.side-nav > li:nth-child(5) > a {
    background-color: #426777;
}

.side-nav > li:nth-child(6) > a {
    background-color: #8ccfd7;
}

.side-nav > li > a:before {
    content: "";
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    width:3px;
    /*background-color: rgba(0, 0, 0, .5);*/
    background-image: linear-gradient(to right, rgba(0, 0, 0, .2), rgba(0, 0, 0, .05));
}

/*.side-nav > li.active > a:after {
    content: "";
    position:absolute;
    top:0;
    bottom:0;
    display: block;
    width: 0; 
    height: 0;
    margin-left:-100px;
    margin-top:-100px;

    right:-10px;
    border-style: solid;
    border-width: 100px 0 100px 10px;
    border-color: inherit;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    
}*/

.side-nav li.active {
    /*animation: popout .5s ease;
    -webkit-animation: popout .5s ease;*/
    z-index: 999;
    transform: scale(1.1);

    -webkit-box-shadow: 0px 0px 83px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 83px -8px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 83px -8px rgba(0,0,0,0.75);
}


@keyframes popout {
    from{transform:scale(1)}
    80%{transform:scale(1.2)}
    to{transform:scale(1.1)}
}
@-webkit-keyframes popout {
    from{-webkit-transform:scale(1)}
    80%{-webkit-transform:scale(1.2)}
    to{-webkit-transform:scale(1.1)}
}

@keyframes color-hover-in {
    from{color: rgba(0, 0, 0, .5);}
    to{color: rgba(255, 255, 255, .5);}
}

@keyframes color-hover-out {
    from{color: rgba(255, 255, 255, .5);}
    to{color: rgba(0, 0, 0, .5);}
}


.side-nav li a {
    /*animation: color-hover-out .5s ease;
    -webkit-animation: color-hover-out .5s ease;*/
    color: rgba(255, 255, 255, 1);
    padding: 30px 5px;
    box-shadow: inset 0 -3px 3px rgba(0,0,0,0.05);
}

.side-nav li a:hover {
    /*animation: color-hover-in .5s ease;
    -webkit-animation: color-hover-in .5s ease;*/
    color: rgba(255, 255, 255, 1);
}

.side-nav li .icon-wrapper {
    /*padding: 10px 30px;*/
    border: 3px solid rgb(53, 85, 98);
    padding: 10px;
    height: 75px;
    width: 75px;
    margin: 0 auto;
    border-radius: 50%;
}

.side-nav li .icon-wrapper span {
    font-size: 35px;
    font-weight: bold;
}

.side-nav li.active a {
    /*background-color: #eeeeee;
    color: #6bacb3;*/
}

.side-nav a {
    text-align: center;
}

.side-nav a p {
    font-size: 14px;
    line-height: 1.4;
}

.side-nav a svg {
    fill: currentColor;
}

.horizontal.side-nav-section .side-nav, .horizontal.side-nav-section .page {
    width: 100%;
}

.horizontal.side-nav-section .side-nav li {
    width: 33.33%;
    float: left;
}

.horizontal.side-nav-section .side-nav li.active {
    transform: none;
}

.horizontal.side-nav-section .side-nav li a {
    padding: 10px;
    min-height: 100px;
}

.horizontal.side-nav-section .icon-wrapper {
    display: none;
}

@media (max-width: 992px) {

    .side-nav li.active {
        transform: none;
    }

    .side-nav li a {
        display: block;
        text-align: center;
        padding: 16px;
    }

    .side-nav li a p {
        display: inline-block;
    }

    .side-nav-section .side-nav {
        width: 100%;
    }

    .side-nav-section .page {
        width: 100%;
    }

    .side-nav li .icon-wrapper {
        display: none;
    }

    /*.side-nav {
        font-size: 0;
    }

    .side-nav > li > a {
        display: block;
    }

    .side-nav li {
        display:inline-block;
        width: 25%;
    }





    */
}
        