/*      side nav call back       */

.intercom.active, .intercomCloseBtn.active {
    opacity: 1;
    z-index: 999;
    transition: .5s;
}
.intercom {
    padding: 12px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    padding: 25px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #267400;
    color: #fff;
    z-index: 10;
    opacity: 0;
    box-shadow: 0 3px 16px 0 rgba(0,0,0,.24);
    transition: .5s;
    cursor: pointer;
}

.navPanel {
    position: fixed;
    bottom: -1000px;
    right: -1000px;
    width: 360px;
    height: 360px;
    background: rgba(0, 0, 0, 0.726);
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    overflow: hidden;
    transition: .5s;
}

.navPanel a{
    text-decoration: none;
}

.navPanel.active {
    bottom: -140px;
    right: -140px;
    transition: .5s;
}

.navPanel .link1 {
    left: 148px;
    top: 18px;
}
.navPanel .link2 {
    left: 65px;
    top: 52px;
}
.navPanel .link3 {
    left: 20px;
    top: 132px;
}
.navPanel .link {
    position: absolute;
    width: 50px;
    height: 50px;
    text-align: center;
}

.navPanel .link figure {
    padding: 0px;
    background: transparent;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: block;
    margin: 0 0 0.2rem;
}
.navPanel .link span {
    margin-top: 3px;
    display: block;
    font-size: 13px;
    color: #fff;
}
.intercomCloseBtn.active {
    background: #646464;
    border: solid 1px #4d4d4d;
}
.intercom.active, .intercomCloseBtn.active {
    opacity: 1;
    z-index: 11;
    transition: .5s;
}
.intercomCloseBtn {
    padding: 10px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #58bf93;
    color: #fff;
    z-index: 10;
    opacity: 0;
    box-shadow: 0 3px 16px 0 rgba(0,0,0,.24);
    transition: .5s;
    cursor: pointer;
}
[class*=" icon-"], [class^=icon-] {
    font-family: icomoon!important;
    /* speak: none; */
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/*.icon-close:before {
    content: "\e901";
}*/

/*      end side nav call back       */