/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    /* fix fideinright*/
    max-width: 100%;
    /*overflow: hidden;*/
    overflow-x: hidden;
    /*background: url(../images/lrh-background-1.jpg) no-repeat center center fixed !important; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;*/
    /* for IE*/
    /*filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/lrh-background-1.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/lrh-background-1.jpg', sizingMethod='scale')";*/
}

body {
    /*font-size: 1.6rem;*/
    /*font-family: "Open Sans", sans-serif;*/
    font-size: 15px;
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    letter-spacing: 0.1px;
    color: #555;
    /*background-color: #ecedef;*/
    /*line-height: 1em;*/
    line-height: 1.4 !important;
    /*background: url(../images/lrh-background-1.jpg) center center no-repeat;
  background-size: 100%;*/
}

    body::after {
        clear: both;
        content: "";
        display: table;
    }

a {
    color: #1784c7;
    text-decoration: none;
}

input {
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem;
}

    input[type="search"]::-webkit-search-decoration,
    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-results-button,
    input[type="search"]::-webkit-search-results-decoration {
        display: none;
    }

/* -------------------------------- 

Main Page Content

-------------------------------- */
.cd-main-content .content-wrapper {
    padding: 45px 0 3em;
}

    .cd-main-content .content-wrapper h1 {
        text-align: center;
        /*padding: 3em 0; eak*/
        font-size: 2rem;
    }

.cd-main-content::before {
    /* never visible - used to check MQ in jQuery */
    display: none;
    content: 'mobile';
}

@media only screen and (min-width: 768px) {
    .cd-main-content .content-wrapper {
        /*margin-left: 110px; eak*/
        /*margin-right: 220px;*/
        padding-top: 55px;
        /*background-color: #ecedef;*/
    }

        .cd-main-content .content-wrapper h1 {
            /*padding: 4em 0; eak*/
            font-size: 3.2rem;
            font-weight: 300;
        }

    .cd-main-content::before {
        content: 'tablet';
    }
}
/*
@media only screen and (min-width: 1170px) {
  .cd-main-content .content-wrapper {
    margin-left: 200px;
  }
  .cd-main-content::before {
    content: 'desktop';
  }
}
*/

/* -------------------------------- 

Header

-------------------------------- */
.cd-main-header {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 45px;
    width: 100%;
    /*background: #3e454c; eak*/
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    .cd-main-header::after {
        clear: both;
        content: "";
        display: table;
    }

@media only screen and (min-width: 768px) {
    .cd-main-header {
        position: fixed;
        height: 55px;
    }
}

.cd-logo {
    float: left;
    display: block;
    /*margin: 11px 0 0 5%; eak*/
    margin: 2px 0 0 5%;
}

    .cd-logo img {
        width: 80%;
        display: block;
    }

@media only screen and (min-width: 768px) {
    .cd-logo {
        /*margin: 16px 0 0 36px; eak*/
        margin: 0 0 0 36px;
    }

        .cd-logo img {
            width: auto;
            max-width: 100%;
        }

    .cd-nav-menu {
        /* navigation trigger - visible on mobile devices only */
        float: right;
        position: relative;
        display: block;
        width: 34px;
        height: 55px;
        margin-right: 20px;
        /* hide text */
        overflow: hidden;
        white-space: nowrap;
        color: transparent !important;
    }
}

.cd-nav-trigger {
    /* navigation trigger - visible on mobile devices only */
    float: right;
    position: relative;
    display: block;
    width: 34px;
    height: 44px;
    margin-right: 5%;
    /* hide text */
    overflow: hidden;
    white-space: nowrap;
    color: transparent !important;
}

    .cd-nav-menu span, .cd-nav-menu span::before, .cd-nav-menu span::after, .cd-nav-trigger span, .cd-nav-trigger span::before, .cd-nav-trigger span::after {
        /* hamburger icon in CSS */
        position: absolute;
        display: inline-block;
        height: 3px;
        width: 24px;
        /*background: #ffffff;eak*/
        background: #444646;
    }

    .cd-nav-menu span, .cd-nav-trigger span {
        /* line in the center */
        position: absolute;
        top: 50%;
        right: 5px;
        margin-top: -2px;
        -webkit-transition: background 0.2s;
        -moz-transition: background 0.2s;
        transition: background 0.2s;
    }

        .cd-nav-menu span::before, .cd-nav-menu span::after, .cd-nav-trigger span::before, .cd-nav-trigger span::after {
            /* other 2 lines */
            content: '';
            right: 0;
            /* Force Hardware Acceleration in WebKit */
            -webkit-transform: translateZ(0);
            -moz-transform: translateZ(0);
            -ms-transform: translateZ(0);
            -o-transform: translateZ(0);
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transform-origin: 0% 50%;
            -moz-transform-origin: 0% 50%;
            -ms-transform-origin: 0% 50%;
            -o-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
            -webkit-transition: -webkit-transform 0.2s;
            -moz-transition: -moz-transform 0.2s;
            transition: transform 0.2s;
        }

        .cd-nav-menu span::before, .cd-nav-trigger span::before {
            /* menu icon top line */
            top: -6px;
        }

        .cd-nav-menu span::after, .cd-nav-trigger span::after {
            /* menu icon bottom line */
            top: 6px;
        }

    .cd-nav-trigger.nav-is-visible span {
        /* hide line in the center */
        background: rgba(255, 255, 255, 0);
    }

        .cd-nav-trigger.nav-is-visible span::before, .cd-nav-trigger.nav-is-visible span::after {
            /* keep visible other 2 lines */
            /*background: white;*/
            background: #444646;
        }

        .cd-nav-trigger.nav-is-visible span::before {
            -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
            -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
            -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
            -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
            transform: translateX(4px) translateY(-3px) rotate(45deg);
        }

        .cd-nav-trigger.nav-is-visible span::after {
            -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
            -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
            -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
            -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
            transform: translateX(4px) translateY(2px) rotate(-45deg);
        }

@media only screen and (min-width: 768px) {
    .cd-nav-trigger {
        display: none;
    }

    .cd-nav-menu {
        display: block;
    }
}

.cd-search {
    position: relative;
    margin: 1.2em 5% 0.6em;
}

    .cd-search.is-hidden {
        opacity: 0;
    }

    .cd-search::before {
        /* lens icon */
        content: '';
        position: absolute;
        left: 8px;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 16px;
        width: 16px;
        background: url(../images/cd-search.svg) no-repeat 0 0;
    }

    .cd-search input {
        padding-left: 32px;
        width: 100%;
        height: 36px;
        border: none;
        border-radius: .25em;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
    }

        .cd-search input:focus {
            outline: none;
        }

@media only screen and (min-width: 768px) {
    .cd-search {
        float: left;
        display: inline-block;
        width: 250px;
        height: 100%;
        margin: 0 0 0 2.5em;
    }

        .cd-search.is-hidden {
            /* reset style */
            opacity: 1;
        }

        .cd-search::before {
            background-position: 0 -16px;
            left: 1em;
        }

        .cd-search form, .cd-search input {
            height: 100%;
            width: 100%;
        }

        .cd-search input {
            border: none;
            padding-left: 2.6em;
            border-radius: 0;
            background-color: #3e454c;
            border-left: 1px solid #51575d;
            color: #ffffff;
        }

            .cd-search input::-webkit-input-placeholder {
                color: #777c81;
            }

            .cd-search input::-moz-placeholder {
                color: #777c81;
            }

            .cd-search input:-moz-placeholder {
                color: #777c81;
            }

            .cd-search input:-ms-input-placeholder {
                color: #777c81;
            }
}

/* -------------------------------- 

Top Navigation

-------------------------------- */
.cd-nav {
    /* top nav - not visible on mobile devices */
    display: none;
}

@media only screen and (min-width: 768px) {
    .cd-nav {
        display: block;
        float: right;
        height: 100%;
    }
}

.cd-top-nav > li > a::before {
    /* reset style */
    display: none;
}

.cd-top-nav > li a {
    padding: 1em 5% !important;
}

.cd-top-nav img {
    /* avatar image */
    position: absolute;
    left: 1.8em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: none;
}

@media only screen and (min-width: 768px) {
    .cd-top-nav {
        height: 100%;
    }

        .cd-top-nav a {
            display: block;
            font-size: 1.4rem;
            color: #ffffff;
        }

        .cd-top-nav > li {
            display: inline-block;
            margin-right: 1em;
            height: 100%;
        }

            .cd-top-nav > li:last-of-type {
                margin-right: 0;
            }

            .cd-top-nav > li a {
                padding: 1em .6em !important;
            }

        .cd-top-nav img {
            display: block;
        }
}
/*
@media only screen and (min-width: 1170px) {
  .cd-top-nav li:not(.has-children) a:hover {
    color: #1784c7;
  }
}
*/

/* -------------------------------- 

Sidebar

-------------------------------- */
.cd-side-nav {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    padding: 45px 0 0;
    background-color: #2c3136;
    visibility: hidden;
    opacity: 0;
    max-height: 100vh;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    transition: opacity 0.2s 0s, visibility 0s 0.2s;
}

    .cd-side-nav.nav-is-visible {
        opacity: 1;
        visibility: visible;
        overflow: visible;
        -webkit-overflow-scrolling: touch;
        -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
        -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
        transition: opacity 0.2s 0s, visibility 0s 0s;
        max-height: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .cd-side-nav > ul {
        padding: 0.6em 0;
    }

        .cd-side-nav > ul:last-of-type {
            padding-bottom: 0;
        }

    .cd-side-nav .cd-label, .cd-side-nav a {
        display: block;
        /*padding: 1em 5%;*/
        padding: 12px 5px;
    }

    .cd-side-nav .cd-label {
        text-transform: uppercase;
        font-weight: bold;
        color: #646a6f;
        font-size: 1rem;
        letter-spacing: .1em;
    }

    .cd-side-nav a {
        position: relative;
        color: #ffffff;
        font-size: 1.4rem;
    }

    .cd-side-nav ul.cd-top-nav > li:last-of-type > a {
        border-bottom: none;
    }

    .cd-side-nav > ul > li > a {
        padding-left: calc(5% + 24px);
        border-bottom: 1px solid #373d44;
        border-right: 1px solid #373d44;
    }

        .cd-side-nav > ul > li > a::before {
            /* icon before item name */
            position: absolute;
            content: '';
            left: 5%;
            top: 50%;
            bottom: auto;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
            height: 16px;
            width: 16px;
            background: url(../images/cd-nav-icons.svg) no-repeat 0 0;
        }

    .cd-side-nav > ul > li.ad > a::before {
        background-image: url(../images/AD.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.pr > a::before {
        background-image: url(../images/PR.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.nt > a::before {
        background-image: url(../images/NT.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.ict > a::before {
        background-image: url(../images/ICT.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.taf > a::before {
        background-image: url(../images/TAF.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.slip > a::before {
        background-image: url(../images/epayslip.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.wss > a::before {
        background-image: url(../images/WSS.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.eng > a::before {
        background-image: url(../images/ENG.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.stocklist > a::before {
        background-image: url(../images/StockList.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.minivan > a::before {
        background-image: url(../images/Minivan.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.btsharepoint > a::before {
        background-image: url(../images/BTSharePoint.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.webmail > a::before {
        background-image: url(../images/WebMail.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.cg > a::before {
        background-image: url(../images/CG.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.cd > a::before {
        background-image: url(../images/CD.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.whf > a::before {
        background-image: url(../images/WHF.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.bookingcar > a::before {
        background-image: url(../images/CAR.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.bookingroom > a::before {
        background-image: url(../images/MeetingRoom2.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.conso > a::before {
        background-image: url(../images/Conso.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.btma > a::before {
        background-image: url(../images/BTMA.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.vpn > a::before {
        background-image: url(../images/vpn.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.lms > a::before {
        background-image: url(../images/LMS.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.bthr > a::before {
        background-image: url(../images/BTHR.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }

    .cd-side-nav > ul > li.bgx > a::before {
        background-image: url(../images/bgx.gif);
        background-size: 48px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        top: calc(60% - 48px);
    }


    .cd-side-nav > ul > li.bookmarks > a::before {
        background-position: -32px 0;
    }

    .cd-side-nav > ul > li.images > a::before {
        background-position: 0 0;
    }

    .cd-side-nav > ul > li.users > a::before {
        background-position: -16px 0;
    }

    .cd-side-nav .count {
        /* notification badge */
        position: absolute;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        right: calc(5% + 16px + 0.4em);
        padding: 0.2em 0.4em;
        background-color: #ff7e66;
        border-radius: .25em;
        color: #ffffff;
        font-weight: bold;
        font-size: 1.2rem;
        text-align: center;
    }

    .cd-side-nav .action-btn a {
        display: block;
        margin: 0 5%;
        padding: 1em 0;
        background-color: #1784c7;
        border-radius: .25em;
        border: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        text-align: center;
        color: #ffffff;
        font-weight: bold;
    }

        .cd-side-nav .action-btn a::before {
            display: none;
        }

    .cd-side-nav a, .cd-side-nav a:hover {
        font-size: 0.9rem;
        text-decoration: none !important;
        color: #fff;
    }

.has-children ul li a:hover {
    background-color: #f0f5f8;
    color: #79848f !important;
}

@media only screen and (max-width: 767px) {
    .cd-nav-menu {
        display: none;
    }

    .fadeInRight {
        transition-property: none !important;
        transform: none !important;
        animation: none !important;
    }

    body {
        /*background-color:#fff;*/
        /*background-size: 280%;*/
    }

    .cd-side-nav > ul > li.cg > a::before {
        background-image: url(../images/CG.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.ad > a::before {
        background-image: url(../images/AD.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.wss > a::before {
        background-image: url(../images/WSS.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.slip > a::before {
        background-image: url(../images/epayslip.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.pr > a::before {
        background-image: url(../images/PR.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.nt > a::before {
        background-image: url(../images/NT.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.ict > a::before {
        background-image: url(../images/ICT.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.taf > a::before {
        background-image: url(../images/taf.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.eng > a::before {
        background-image: url(../images/ENG.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.cd > a::before {
        background-image: url(../images/CD.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.whf > a::before {
        background-image: url(../images/WHF.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.minivan > a::before {
        background-image: url(../images/Minivan.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.stocklist > a::before {
        background-image: url(../images/StockList.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.btsharepoint > a::before {
        background-image: url(../images/BTSharePoint.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.webmail > a::before {
        background-image: url(../images/WebMail.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.bookingcar > a::before {
        background-image: url(../images/CAR.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.bookingroom > a::before {
        background-image: url(../images/MeetingRoom2.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.conso > a::before {
        background-image: url(../images/Conso.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.btma > a::before {
        background-image: url(../images/BTMA.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.vpn > a::before {
        background-image: url(../images/vpn.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.lms > a::before {
        background-image: url(../images/lms.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.bthr > a::before {
        background-image: url(../images/BTHR.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .cd-side-nav > ul > li.bgx > a::before {
        background-image: url(../images/bgx.gif);
        background-size: 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        top: calc(50%);
        left: 15px;
    }

    .has-children ul {
        position: relative;
        width: 100%;
        display: none;
        /*background-color: #ffffff;*/
        /*background-color: #1c1f22 !important;*/
    }

        .has-children ul li a {
            position: relative;
            color: #79848f;
            font-size: 0.9rem;
        }

    .cd-side-nav > ul > li > a {
        padding-left: calc(30px + 36px);
        border-bottom: 1px solid #373d44;
        border-right: 1px solid #373d44;
    }

    .has-children ul li {
        padding-left: 30px;
    }

        .has-children ul li i {
            padding: 0 10px;
        }

    .has-children ul {
        padding-left: 0px;
    }
}

@media only screen and (min-width: 768px) {

    .cd-side-nav {
        /*visibility: hidden;
    opacity: 0;*/
        position: relative;
        /*float: left; eak*/
        float: right;
        top: auto;
        /*width: 110px; eak*/
        width: 280px;
        min-height: 100vh;
        padding-top: 55px;
        /* reset style */
        visibility: visible;
        opacity: 1;
        overflow: visible;
        max-height: none;
    }

        .cd-side-nav li {
            width: 33%;
            float: left;
        }

            .cd-side-nav li a {
                min-height: 118px;
            }

        .cd-side-nav.nav-is-visible {
            box-shadow: none;
        }

        .cd-side-nav.is-fixed {
            /*position: fixed;*/
        }

        .cd-side-nav > ul {
            /* reset style */
            padding: 0;
        }

        .cd-side-nav .cd-label {
            /* remove labels on minified version of the sidebar */
            display: none;
        }

        .cd-side-nav a {
            font-size: 0.8rem !important;
            text-align: center;
        }

        .cd-side-nav > ul > li > a {
            /*padding: calc(2.2em + 24px) 0 2.4em; eak*/
            padding: calc(32px + 48px) 0 0;
        }

            .cd-side-nav > ul > li > a::before {
                left: 50%;
                right: auto;
                -webkit-transform: translateX(-50%);
                -moz-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                -o-transform: translateX(-50%);
                transform: translateX(-50%);
                top: 2.4em;
            }

        .cd-side-nav ul > li:first-of-type a:hover {
            /* on hover or if selected - change background color*/
            /*background-color: #9e87ce !important;*/
        }

        .cd-side-nav .active > a {
            /* current page */
            box-shadow: inset 3px 0 0 #1784c7;
            background-color: #33383e;
        }

        .cd-side-nav .action-btn a {
            margin: 1em 10% 0;
        }

        .cd-side-nav .count {
            height: 8px;
            width: 8px;
            border-radius: 50%;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
            padding: 0;
            top: 2em;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
            left: calc(50% + 5px);
            right: auto;
            color: transparent;
        }
}

@media only screen and (min-width: 1170px) {
    /*
  .cd-side-nav {
    width: 200px;
  }
  */
    .cd-side-nav > ul {
        /*padding: 0.6em 0;*/
        padding: 0;
    }

        .cd-side-nav > ul > li:not(.action-btn):hover > a {
            background-color: #33383e;
        }
    /*
  .cd-side-nav > ul > li > a {
    padding: 1em 1em 1em 42px;
    text-align: left;
    border-bottom: none;
  }
  */
    /*
  .cd-side-nav > ul > li > a::before {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 18px;
  }
  */
    .cd-side-nav .cd-label {
        display: block;
        padding: 1em 18px;
    }

    .cd-side-nav .action-btn {
        text-align: left;
    }

        .cd-side-nav .action-btn a {
            margin: 0 18px;
        }

    .no-touch .cd-side-nav .action-btn a:hover {
        background-color: #1a93de;
    }
    /*
  .cd-side-nav .count {
    /* reset style 
    color: #ffffff;
    height: auto;
    width: auto;
    border-radius: .25em;
    padding: .2em .4em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 18px;
    left: auto;
    box-shadow: none;
  }
  */
}

.has-children ul {
    position: relative;
    width: 100%;
    display: none;
    background-color: #ffffff;
}

.has-children > a::after {
    /* arrow icon */
    position: absolute;
    content: '';
    height: 16px;
    width: 16px;
    right: 5%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/cd-arrow.svg);
}

.has-children.selected > ul {
    display: block;
    z-index: 100;
}

.has-children.selected > a::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

@media only screen and (min-width: 768px) {
    .has-children {
        position: relative;
    }

        .has-children ul {
            position: absolute;
            top: 0;
            /*left: 100%; eak*/
            right: 100%;
            width: 275px;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

            .has-children ul li {
                width: 100%;
                float: right;
            }

                .has-children ul li a {
                    min-height: 30px;
                    color: #79848f;
                }

                    .has-children ul li a:hover {
                        background-color: #f0f5f8;
                        color: #79848f !important;
                    }

                .has-children ul li i {
                    padding: 0 10px;
                }

    .cd-side-nav ul li.hover a::before {
        /*-webkit-animation: cd-shock 0.3s;
      -moz-animation: cd-shock 0.3s;
      animation: cd-shock 0.3s;*/
        /*-webkit-animation: flipInX 1s;
    animation: flipInX 1s;*/
    }

    .has-children ul a {
        text-align: left;
        border: none;
        padding: 12px 5px;
    }

    .no-touch .has-children ul a:hover {
        color: #1784c7;
    }

    .has-children > a::after {
        display: none;
    }

    .cd-side-nav .has-children.selected > a {
        /* focus state -> show sub pages */
        background-color: #33383e;
    }

    .cd-top-nav .has-children {
        position: relative;
        background-color: #2c3136;
    }

        .cd-top-nav .has-children > a {
            height: 100%;
            padding: 0 calc(1.8em + 22px) 0 calc(1.8em + 26px) !important;
            line-height: 55px;
        }

            .cd-top-nav .has-children > a::after {
                display: block;
                right: 1.8em;
            }

        .cd-top-nav .has-children ul {
            background-color: #1c1f22;
            width: 200px;
            top: 100%;
            right: 0;
            left: auto;
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
        }

            .cd-top-nav .has-children ul a {
                padding-left: 18px !important;
            }

    .link img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        margin-right: 10px;
        display: block;
    }
}
/*
@media only screen and (min-width: 1170px) {
  .has-children > ul {
    width: 100%;
    z-index: 1;
  }
  .has-children ul a {
    padding-left: 18px;
  }
  .has-children.active > ul {
    /* if the item is active, make the subnavigation visible 

    position: relative;
    display: block;
    /* reset style 
    left: 0;
    box-shadow: none;
  }
  .no-touch .cd-side-nav .has-children:hover > ul, .cd-side-nav .has-children.hover > ul {
    /* show subnavigation on hover 
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
}
*/

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
    animation-duration: 2s;
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.delay {
    animation-duration: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    animation-duration: 2s;
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    /*animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;*/
}


@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDownMenu {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    animation-duration: 1.5s;
}
