@font-face {
    font-family: IRANSans;
    font-weight: normal;

    src: url(../fonts/IRANSansWeb.eot);
    src: url(../fonts/IRANSansWeb.eot?#iefix) format("embedded-opentype"),
    url(../fonts/IRANSansWeb.woff2) format("woff2"),
    url(../fonts/IRANSansWeb.woff) format("woff"),
    url(../fonts/IRANSansWeb.ttf) format("truetype");
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        display: block;
        transform: translate(0, 25%);
    }
    100% {
        opacity: 1;
        display: block;
        transform: translate(0, 0);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        display: block;
        transform: translate(25%, 0);
    }
    100% {
        opacity: 1;
        display: block;
        transform: translate(0, 0);
    }
}
@keyframes fadeOutDown {
    0% {
        opacity: 1;
        display: block;
        transform: translate(0, 0);
    }
    99% {
        opacity: 0;
        display: block;
        transform: translate(0, 25%);
    }
    100% {
        display: none;
    }
}
body {
    font-size: 14px;
}
.no-padding {
    padding: 0 !important;
}
.flex-center {
    height: 100%;
    width: 100%;
    text-align: center;
    margin: 30px 0px;
}
.no-border-radius {
    border-radius: 0 !important;
}
.no-margin-top {
    margin-top: 0 !important;
}
.bdr_none{
    border:0 !important;
    margin-bottom:0 !important;
}
.mrg-top {
    margin-top: 15px;
}
.a-center {
    text-align: center;
}
.a-right {
    text-align: right;
}
.sk-rotating-plane {
    width: 40px;
    height: 40px;
    background-color: #333;
    margin: 40px auto;
    animation: sk-rotatePlane 1.2s infinite ease-in-out;
}
@keyframes sk-rotatePlane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
.sk-double-bounce {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 40px auto;
}
.sk-double-bounce .sk-child {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-doubleBounce 2.0s infinite ease-in-out;
}
.sk-double-bounce .sk-double-bounce2 {
    animation-delay: -1.0s;
}
@keyframes sk-doubleBounce {
    0%, 100% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
}
.sk-wave {
    margin: 40px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}
.sk-wave .sk-rect {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;
    animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}
.sk-wave .sk-rect1 {
    animation-delay: -1.2s;
}
.sk-wave .sk-rect2 {
    animation-delay: -1.1s;
}
.sk-wave .sk-rect3 {
    animation-delay: -1s;
}
.sk-wave .sk-rect4 {
    animation-delay: -0.9s;
}
.sk-wave .sk-rect5 {
    animation-delay: -0.8s;
}
@keyframes sk-waveStretchDelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
    }
}
.sk-wandering-cubes {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
}
.sk-wandering-cubes .sk-cube {
    background-color: #333;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
}
.sk-wandering-cubes .sk-cube2 {
    animation-delay: -0.9s;
}
@keyframes sk-wanderingCube {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: translateX(30px) rotate(-90deg) scale(0.5);
    }
    50% {
        transform: translateX(30px) translateY(30px) rotate(-179deg);
    }
    50.1% {
        transform: translateX(30px) translateY(30px) rotate(-180deg);
    }
    75% {
        transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
    }
    100% {
        transform: rotate(-360deg);
    }
}
.sk-spinner-pulse {
    width: 40px;
    height: 40px;
    margin: 40px auto;
    background-color: #333;
    border-radius: 100%;
    animation: sk-pulseScaleOut 1.0s infinite ease-in-out;
}
@keyframes sk-pulseScaleOut {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
.sk-chasing-dots {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    animation: sk-chasingDotsRotate 2s infinite linear;
}
.sk-chasing-dots .sk-child {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #333;
    border-radius: 100%;
    animation: sk-chasingDotsBounce 2s infinite ease-in-out;
}
.sk-chasing-dots .sk-dot2 {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}
@keyframes sk-chasingDotsRotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes sk-chasingDotsBounce {
    0%, 100% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
}
.sk-three-bounce {
    margin: 40px auto;
    width: 80px;
    text-align: center;
}
.sk-three-bounce .sk-child {
    width: 20px;
    height: 20px;
    background-color: #333;
    border-radius: 100%;
    display: inline-block;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}
.sk-three-bounce .sk-bounce1 {
    animation-delay: -0.32s;
}
.sk-three-bounce .sk-bounce2 {
    animation-delay: -0.16s;
}
@keyframes sk-three-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
.sk-circle {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
}
.sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.sk-circle .sk-child:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #333;
    border-radius: 100%;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
    transform: rotate(30deg);
}
.sk-circle .sk-circle3 {
    transform: rotate(60deg);
}
.sk-circle .sk-circle4 {
    transform: rotate(90deg);
}
.sk-circle .sk-circle5 {
    transform: rotate(120deg);
}
.sk-circle .sk-circle6 {
    transform: rotate(150deg);
}
.sk-circle .sk-circle7 {
    transform: rotate(180deg);
}
.sk-circle .sk-circle8 {
    transform: rotate(210deg);
}
.sk-circle .sk-circle9 {
    transform: rotate(240deg);
}
.sk-circle .sk-circle10 {
    transform: rotate(270deg);
}
.sk-circle .sk-circle11 {
    transform: rotate(300deg);
}
.sk-circle .sk-circle12 {
    transform: rotate(330deg);
}
.sk-circle .sk-circle2:before {
    animation-delay: -1.1s;
}
.sk-circle .sk-circle3:before {
    animation-delay: -1s;
}
.sk-circle .sk-circle4:before {
    animation-delay: -0.9s;
}
.sk-circle .sk-circle5:before {
    animation-delay: -0.8s;
}
.sk-circle .sk-circle6:before {
    animation-delay: -0.7s;
}
.sk-circle .sk-circle7:before {
    animation-delay: -0.6s;
}
.sk-circle .sk-circle8:before {
    animation-delay: -0.5s;
}
.sk-circle .sk-circle9:before {
    animation-delay: -0.4s;
}
.sk-circle .sk-circle10:before {
    animation-delay: -0.3s;
}
.sk-circle .sk-circle11:before {
    animation-delay: -0.2s;
}
.sk-circle .sk-circle12:before {
    animation-delay: -0.1s;
}
@keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
.sk-cube-grid {
    width: 40px;
    height: 40px;
    margin: 40px auto;
}
.sk-cube-grid .sk-cube {
    width: 33.33%;
    height: 33.33%;
    background-color: #333;
    float: left;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.sk-cube-grid .sk-cube1 {
    animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube2 {
    animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube3 {
    animation-delay: 0.4s;
}
.sk-cube-grid .sk-cube4 {
    animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube5 {
    animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube6 {
    animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube7 {
    animation-delay: 0.0s;
}
.sk-cube-grid .sk-cube8 {
    animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube9 {
    animation-delay: 0.2s;
}
@keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        transform: scale3D(1, 1, 1);
    }
    35% {
        transform: scale3D(0, 0, 1);
    }
}
.sk-fading-circle {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
}
.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #333;
    border-radius: 100%;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
    transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
    transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
    transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
    transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
    transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
    transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
    transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
    transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
    transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
    transform: rotate(300deg);
}
.sk-fading-circle .sk-circle12 {
    transform: rotate(330deg);
}
.sk-fading-circle .sk-circle2:before {
    animation-delay: -1.1s;
}
.sk-fading-circle .sk-circle3:before {
    animation-delay: -1s;
}
.sk-fading-circle .sk-circle4:before {
    animation-delay: -0.9s;
}
.sk-fading-circle .sk-circle5:before {
    animation-delay: -0.8s;
}
.sk-fading-circle .sk-circle6:before {
    animation-delay: -0.7s;
}
.sk-fading-circle .sk-circle7:before {
    animation-delay: -0.6s;
}
.sk-fading-circle .sk-circle8:before {
    animation-delay: -0.5s;
}
.sk-fading-circle .sk-circle9:before {
    animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
    animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
    animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
    animation-delay: -0.1s;
}
@keyframes sk-circleFadeDelay {
    0%, 39%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}
.sk-folding-cube {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
    transform: rotateZ(45deg);
}
.sk-folding-cube .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    transform: scale(1.1);
}
.sk-folding-cube .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
    transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
    transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
    transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
    animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
    animation-delay: 0.6s;
}
.sk-folding-cube .sk-cube4:before {
    animation-delay: 0.9s;
}
@keyframes sk-foldCubeAngle {
    0%, 10% {
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%, 100% {
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}
.flag-icon {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 1.33333em;
    line-height: 1em;
}
.flag-icon:before {
    content: '\00a0';
}
.flag-icon.flag-icon-squared {
    width: 1em;
}

html, body {
    width: 100%;
    font-family: IRANSans, sans-serif;
    color: #444;
    position: relative;
}
body {
    min-height: 100vh;
    background: #e7edee;
    overflow-x: hidden;
}
body .app {
    min-height: 100vh;
}
body .app-container {
    padding: 0px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    padding-left: 180px;
}
body .app-container .content-heading {
    margin-bottom: 30px;
}
body .app-container .content-heading .title {
    font-size: 1.75em;
    font-weight: 200;
}

body .app-container .app-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 30px;
}
body .app-container .app-heading .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 30px;
}
body .app-container .app-heading .app-title {
    -ms-flex: 1;
    flex: 1;
}
body .app-container .app-heading .app-title .title {
    font-size: 2em;
    font-weight: 200;
}
body .app-container .app-heading .app-title .title .highlight {
    color: #39a2e9;
}
body .app-container .app-heading .app-title .description {
    margin-top: 5px;
    color: #8d9293;
}
body .app-container.app-login {
    min-height: 100vh !important;
}

body .app-container.app-full {
    height: 100vh !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
body .app-container.app-full > ui-view {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 30px;
    margin-bottom: 30px;
    -ms-flex: 1;
    flex: 1;
}
body .app-container.app-full > div:first-child, body .app-container.app-full > ui-view > div:first-child, body .app-container.app-full > ui-view > ui-view > div:first-child, body .app-container.app-full > ui-view > ui-view > ui-view > div:first-child {
    margin-top: 0;
}
body .app-container.app-full > * {
    width: 100%;
}
* {
    box-sizing: border-box;
}
*:focus {
    outline: 0;
}
a:hover {
    text-decoration: none;
}
.full-height {
    height: 100%;
}
.row {
    margin-bottom: 0;
}
.row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}
.row.full-height {
    height: 100%;
}
.row.full-height > [class*="col-"] {
    height: 100%;
}
.row.no-gap {
    margin-left: 0;
    margin-right: 0;
}
.row.no-gap > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}
.row.full-width {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
@media (max-width: 767px) {
    .row {
        margin-left: -10.75px;
        margin-right: -10.75px;
    }
    .row > [class*="col-"] {
        padding-left: 10.75px;
        padding-right: 10.75px;
    }
    .mr_bottom60:first-child{
        margin-top:40px
    }
    body .app-container {
        padding-left: 0;
        padding-top: 0px;
    }
    body .app-container .app-heading {
        padding-left: 15px;
        padding-right: 15px;
    }
    body .app-container.app-full {
        padding-top: 70px;
    }
    body .app-container > div:first-child, body .app-container > ui-view > div:first-child, body .app-container > ui-view > ui-view > div:first-child, body .app-container > ui-view > ui-view > ui-view > div:first-child {
        margin-top: 0px;
    }
    body .app-container > div.app-heading-container, body .app-container > ui-view > div.app-heading-container, body .app-container > ui-view > ui-view > div.app-heading-container, body .app-container > ui-view > ui-view > ui-view > div.app-heading-container {
        margin-top: 0;
    }
    body .app-container > div.app-heading-container .app-heading, body .app-container > ui-view > div.app-heading-container .app-heading, body .app-container > ui-view > ui-view > div.app-heading-container .app-heading, body .app-container > ui-view > ui-view > ui-view > div.app-heading-container .app-heading {
        padding: 30px;
    }
    body .app-container > div.app-heading-container ul.app-tab, body .app-container > ui-view > div.app-heading-container ul.app-tab, body .app-container > ui-view > ui-view > div.app-heading-container ul.app-tab, body .app-container > ui-view > ui-view > ui-view > div.app-heading-container ul.app-tab {
        margin-bottom: 15px;
        padding: 0px 15px;
    }
    body .app-container > div.row, body .app-container > ui-view > div.row, body .app-container > ui-view > ui-view > div.row, body .app-container > ui-view > ui-view > ui-view > div.row {
        padding-left: 15px;
        padding-right: 15px;
    }
    body .app-container > div.row > [class*="col-"], body .app-container > ui-view > div.row > [class*="col-"], body .app-container > ui-view > ui-view > div.row > [class*="col-"], body .app-container > ui-view > ui-view > ui-view > div.row > [class*="col-"] {
        margin-bottom: 15px;
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
}
.colorbox {
    width: 100%;
    overflow: hidden;
    background-color: #FFF;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}
.colorbox .color1, .colorbox .color2 {
    width: 50%;
    float: left;
}
.colorbox .color1 .color, .colorbox .color2 .color {
    width: 100%;
    min-height: 60px;
}
.colorbox .heading {
    text-align: center;
    padding: 5px 10px;
}
.colorbox .heading .title {
    font-size: 0.9em;
}
.colorbox .heading .subtitle {
    font-size: 0.7em;
}
@media (max-width: 767px) {
    .colorbox {
        margin-bottom: 10px;
    }
}
.navbar {
    height: 90px;
    z-index: 100008;
    background-color: transparent;
    border-bottom: 0 solid transparent;
    border-top: 0;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0 15px;
    margin-bottom: 30px;
}
.navbar .navbar-header {
    height: 90px;
    padding: 0px;
    width: 180px;
    margin-left: -15px;
    position: relative;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.navbar .navbar-header .navbar-toggle {
    position: relative;
    display: none;
    height: 100%;
    border: 0;
    border-right: 1px solid #dfe6e8;
    padding: 2rem;
    margin: 0;
    border-radius: 0;
    z-index: 1;
}
.navbar .navbar-header .navbar-toggle:hover, .navbar .navbar-header .navbar-toggle:focus {
    cursor: pointer;
    background-color: transparent;
}
.navbar .navbar-header .navbar-brand {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 90px;
    font-size: 1.2em;
    font-weight: 300;
    position: relative;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    color: #444;
}
.navbar .navbar-header .navbar-brand .highlight {
    padding: 2px 5px;
    font-weight: 200;
    color: #FFF;
    border-radius: 2px;
    margin-right: 5px;
}
.navbar .navbar-collapse {
    background-color: #191919;
    border-radius: 2px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow:0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.navbar .navbar-collapse .navbar-nav {
    height: 89px;
    border-bottom: 1px solid transparent;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 0;
}
.navbar .navbar-collapse .navbar-nav > li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
}
.navbar .navbar-collapse .navbar-nav > li a, .navbar .navbar-collapse .navbar-nav > li a:hover, .navbar .navbar-collapse .navbar-nav > li a:focus {
    background-color: transparent;
    font-size: 1.1em;
    font-family: IRANSans, sans-serif;
}
.navbar .navbar-collapse .navbar-nav > li.navbar-title {
    display: -ms-flexbox;
    display: flex;
    color:#ffffff;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 1.3em;
    height: 50%;
    padding: 0 6rem;
    padding-left: 5px;
}
.navbar .navbar-collapse .navbar-nav > li.navbar-title span {
    padding: 0.5rem 0;
}
.navbar .navbar-collapse .navbar-nav > li.navbar-title .highlight {
    font-weight: 400;
}
.navbar .navbar-collapse .navbar-nav > li.navbar-search input {
    border: none;
    height: 40px;
    padding: 0 20px;
    font-weight: 500;
    color:#22363f;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border: 1px solid #dfe6e8;
    border-right: none;
    background-color: #fff;
}
.navbar .navbar-collapse .navbar-nav > li.navbar-search .btn-search {
    width: 40px;
    height: 40px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 1px solid #dfe6e8;
    border-left: none;
    background-color: #ffffff;
    color: #22363f;
    font-size: 1.4em;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown:after {
    position: absolute;
    top: auto;
    left: 50%;
    bottom: 0;
    right: auto;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #ffffff;
    transform: translate(-50%, 0);
    transition: all 0.3s ease;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translate(0, -2px);
}
.navbar .navbar-collapse .navbar-nav > li.dropdown:hover:after {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -2px);
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu {
    display: block;
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    opacity: 0;
    min-width: 300px;
    transition: all 0.3s ease;
    transform: translate(0, 0);
    padding-top: 0;
    padding-bottom: 0;
    border: 1px solid #dfe6e8;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu .profile-info .username {
    margin-top: 0;
    margin-bottom: 0;
    background-color: rgba(141, 146, 147, 0.1);
    color: #444;
    border-radius: 3px;
    padding: 1.2rem;
    font-size: 1.6em;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 auto;
    font-weight: 200;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li {
    border: 0;
    border-radius: 0;
    padding: 0;
    border-bottom: 1px solid rgba(141, 146, 147, 0.1);
    margin-bottom: 0;
    font-weight: 300;
    font-size: 0.9em;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li a {
    display: block;
    text-decoration: none;
    color: #444;
    padding: 1.2rem;
    font-weight: 400;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li a .message {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-right: 40px;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li a .message .content {
    -ms-flex: 1;
    flex: 1;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li a .message .content .title {
    font-weight: 400;
    font-size: 1em;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li a .message .content .description {
    font-weight: 400;
    font-size: 0.85em;
    opacity: 0.4;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li a .message .profile {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 8px;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li span.badge {
    border-radius: 3px;
    font-weight: 400;
    font-weight: 1.4em;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li:hover a {
    background-color: rgba(141, 146, 147, 0.1);
    color: #222;
    cursor: pointer;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li.empty {
    color: #8d9293;
    font-weight: 200;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li.dropdown-header {
    background: transparent;
    padding: 1.2rem;
    color: #444;
    font-size:18px;
    font-weight: 500;
    background-color: rgba(141, 146, 147, 0.1);
    border-bottom: none;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li.dropdown-footer {
    background-color: transparent;
    border-top: 0;
    font-weight: 300;
    font-size: 0.9em;
    text-align: right;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li.dropdown-footer a {
    color: #8d9293;
    padding: 1.2rem;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li:last-child {
    border-bottom: 0;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown .dropdown-menu > ul > li.dropdown-empty {
    padding: 2rem;
    text-align: center;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.notification a.dropdown-toggle {
    text-align: center;
    display: block;
    padding: 0 8px;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.notification a.dropdown-toggle .icon {
    font-size: 1.4em;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.95);
    color: rgba(141, 146, 147, 0.8);
    transition: all 0.2s ease;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.notification a.dropdown-toggle .count {
    position: absolute;
    top: 0;
    left: auto;
    bottom: auto;
    right: 0;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.70em;
    font-weight: 400;
    color: #FFF;
    background-color: rgba(141, 146, 147, 0.6);
    box-shadow: 0 1px 2px rgba(141, 146, 147, 0.1);
    padding: 3px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 1em;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.notification a.dropdown-toggle .title {
    display: none;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.notification a.dropdown-toggle:hover .icon {
    transform: scale(1.1) rotate(7deg);
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.notification.danger a.dropdown-toggle .icon {
    background-color: rgba(255, 255, 255, 0.95);
    color: rgba(231, 76, 60, 0.8);
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.notification.danger a.dropdown-toggle .count {
    background-color: rgba(231, 76, 60, 0.7);
    box-shadow: 0 1px 2px rgba(231, 76, 60, 0.1);
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.notification.warning a.dropdown-toggle .icon {
    background-color: rgba(255, 255, 255, 0.95);
    color: rgba(252, 130, 41, 0.8);
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.notification.warning a.dropdown-toggle .count {
    background-color: rgba(252, 130, 41, 0.7);
    box-shadow: 0 1px 2px rgba(252, 130, 41, 0.1);
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.profile > a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.profile > a .profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.profile > a .title {
    display: none;
}
.navbar .navbar-collapse .navbar-nav > li.dropdown.open > a, .navbar .navbar-collapse .navbar-nav > li.dropdown.open > a:hover, .navbar .navbar-collapse .navbar-nav > li.dropdown.open > a a:focus {
    background-color: transparent;
}
.navbar .navbar-collapse .navbar-nav.navbar-mobile {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    display: none;
    position: relative;
}
.navbar .navbar-collapse .navbar-nav.navbar-mobile > li {
    height: 100%;
}
.navbar .navbar-collapse .navbar-nav.navbar-mobile > li .navbar-toggle, .navbar .navbar-collapse .navbar-nav.navbar-mobile > li .sidebar-toggle {
    height: 100%;
    border: 0;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    border-radius: 0;
    padding: 0 15px;
    display: block;
    color:#fff;
    background-color: transparent;
    font-size: 1.4em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.navbar .navbar-collapse .navbar-nav.navbar-mobile > li .navbar-toggle .profile-img, .navbar .navbar-collapse .navbar-nav.navbar-mobile > li .sidebar-toggle .profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.navbar .navbar-collapse .navbar-nav.navbar-mobile > li .sidebar-toggle {
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    width: auto;
    height: 100%;
    z-index: 100010;
}
.navbar .navbar-collapse .navbar-nav.navbar-mobile > li .navbar-toggle {
    position: absolute;
    top: 0;
    left: auto;
    bottom: auto;
    right: 0;
    width: auto;
    height: 100%;
    z-index: 100010;
}
.navbar .navbar-collapse .navbar-nav.navbar-mobile > li.logo {
    -ms-flex: 1;
    flex: 1;
}
.navbar .navbar-collapse .navbar-nav.navbar-mobile .navbar-brand {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 90px;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    color: #fff;
}
.navbar .navbar-collapse .navbar-nav.navbar-mobile .navbar-brand .highlight {
    padding: 2px 5px;
    font-weight: 200;
    color: #FFF;
    border-radius: 2px;
    margin-right: 5px;
    background-color: #39a2e9;
}
.app-landing .navbar .navbar-collapse {
    background-color: transparent;
    box-shadow: none;
}
@media (max-width: 767px) {
    .navbar {
        position: relative;
        top: 0;
        left: 0;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 100%;
        transform: translateZ(0);
        height: 70px;
        padding: 0px;
    }
    .navbar .navbar-header {
        height: 70px;
        width: auto;
    }
    .navbar .navbar-header .navbar-brand {
        height: 70px;
    }
    .navbar .navbar-header .navbar-toggle {
        display: block;
    }
    .navbar .navbar-collapse {
        border-radius: 0;
    }
    .navbar .navbar-collapse .navbar-nav {
        height: 70px;
        display: none;
    }
    .navbar .navbar-collapse .navbar-nav > li.dropdown:after, .navbar .navbar-collapse .navbar-nav > li.dropdown > .dropdown-menu {
        display: block;
    }
    .navbar .navbar-collapse .navbar-nav > li.dropdown.notification a.dropdown-toggle {
        padding: 10px;
        width: 100%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar .navbar-collapse .navbar-nav > li.dropdown.notification a.dropdown-toggle .icon {
        margin-right: 10px;
        background-color: transparent !important;
    }
    .navbar .navbar-collapse .navbar-nav > li.dropdown.notification a.dropdown-toggle .count {
        position: relative;
        font-size: 0.9em;
        width: 30px;
        height: 30px;
    }
    .navbar .navbar-collapse .navbar-nav > li.dropdown.notification a.dropdown-toggle .title {
        -ms-flex: 1;
        flex: 1;
        text-align: left;
        display: block;
    }
    .navbar .navbar-collapse .navbar-nav > li.dropdown.profile {
        border-bottom: none !important;
    }
    .navbar .navbar-collapse .navbar-nav > li.dropdown.profile > a {
        width: 100%;
    }
    .navbar .navbar-collapse .navbar-nav > li.dropdown.profile > a .profile-img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    .navbar .navbar-collapse .navbar-nav > li.dropdown.profile > a .title {
        display: block;
    }
    .navbar .navbar-collapse .navbar-nav.navbar-mobile {
        display: -ms-flexbox;
        display: flex;
    }
    .app-container.__navbar .navbar .navbar-collapse .navbar-nav {
        height: auto;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .app-container.__navbar .navbar .navbar-collapse .navbar-nav > li {
        width: 100%;
        border-bottom: 1px solid #f0f4f5;
    }
    .app-container.__navbar .navbar .navbar-collapse .navbar-nav > li.navbar-title {
        display: none;
    }
    .app-container.__navbar .navbar .navbar-collapse .navbar-nav > li.navbar-search {
        padding: 4px;
        background-color: #dfe6e8;
    }
    .app-container.__navbar .navbar .navbar-collapse .navbar-nav > li.navbar-search input {
        padding: 8px 15px;
        width: 100%;
        background-color: #FFF;
    }
    .app-container.__navbar .navbar .navbar-collapse .navbar-nav > li.navbar-search .btn-search {
        background-color: #FFF;
    }
    .app-container.__navbar .navbar .navbar-collapse .navbar-mobile {
        height: 70px;
        -ms-flex-direction: row;
        flex-direction: row;
        border-bottom: none;
    }
    .app-container.__navbar .navbar .navbar-collapse .navbar-mobile > li {
        width: auto;
    }
}
@media (max-width: 480px) {
    .navbar .navbar-header .navbar-toggle {
        position: absolute;
    }
}
.navbar .navbar-header .navbar-brand .highlight, .navbar .navbar-mobile .navbar-brand .highlight {
    background-color: #39a2e9;
}
.navbar.__inverse .navbar-header .navbar-brand, .navbar.__inverse .navbar-mobile .navbar-brand {
    color: #FFF;
}
.navbar.__inverse .navbar-header .navbar-brand .highlight, .navbar.__inverse .navbar-mobile .navbar-brand .highlight {
    background-color: #39a2e9;
}
aside.app-sidebar {
    position: absolute;
    top: auto;
    left: 0;
    bottom: auto;
    right: auto;
    width: auto;
    height:auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    z-index: 100108;
    min-height: 100%;
    background-color: #FFF;
    box-shadow:0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}
aside.app-sidebar .sidebar-header {
    height: 90px;
    width: 180px;
    padding: 0 10px;
    position: relative;
    /*box-shadow:0 1px 3px #dfe6e8;*/
}
aside.app-sidebar .sidebar-header .sidebar-brand {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 90px;
    font-size: 1.2em;
    font-weight: 300;
    color: #444;
}
aside.app-sidebar .sidebar-header .sidebar-brand img {
    width: 70px;
    height: 70px;
    text-align: center;
    margin-top: 0px;
}
aside.app-sidebar .sidebar-header .sidebar-brand .highlight {
    padding: 2px 5px;
    font-weight: 200;
    color: #FFF;
    border-radius: 2px;
    margin-right: 5px;
}
aside.app-sidebar .sidebar-header .sidebar-toggle {
    display: none;
    position: absolute;
    top: 0;
    left: auto;
    bottom: auto;
    right: 0;
    width: auto;
    height: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    padding: 0 15px;
    background-color: transparent;
    font-size: 1.4em;
}
aside.app-sidebar .sidebar-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 180px;
    -ms-flex: 1;
    flex: 1;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    list-style: none;
    margin: 0;
    padding:3rem 0 4rem 0;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li {
    width: 100%;
    margin-bottom:1px;
    /*border-top:1px solid rgba(255, 255, 255, 0.08);*/
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li:last-child{
    /*border-bottom:1px solid rgba(255, 255, 255, 0.08);*/
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a {
    padding:8px 10px;
    width:100%;
    display: block;
    text-align: center;
    color: #444;
    float:left;
    text-decoration: none;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a:hover{
    background:#e91e63;
    color:#fff;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.active{
    background:#e91e63;
    color:#fff;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a .icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: block;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    float:left;
    border-radius: 50%;
    color: #FFF;
    margin-right:10px;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a .icon i.fa, aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a .icon i.ion {
    width: 100%;
    height: 100%;
    font-size: 14px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a .title {
    font-weight: 400;
    font-size: 0.95em;
    color: #8d9293;
    float:left;
    padding-top:7px;
    text-transform: none;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a:hover .icon i.fa, aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a:hover .icon i.ion {
    transform: scale(1.25);
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-toggle {
    position: relative;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-toggle:before {
    position: absolute;
    top: 0;
    left: auto;
    bottom: auto;
    right: 30px;
    width: auto;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: FontAwesome;
    content: "\f107";
    color: #dfe6e8;
    font-size: 1.4em;
    transition: all 0.3s ease;
    display: none;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu {
    display: block;
    visibility: hidden;
    position: absolute;
    opacity: 0;
    left: 120%;
    top: 50%;
    min-width: 220px;
    transition: all 0.3s ease;
    border:0;
    transform: translate(0px, -50%);
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul {
    list-style: none;
    padding: 1rem 1.5rem;
    margin: 0;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul:after {
    position: absolute;
    top: 50%;
    left: 0;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    width: 0;
    height: 0;
    transform: translate(-100%, -100%);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #ffffff;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li:first-child{
    border-top:1px solid rgba(0, 0, 0, 0.1);
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li {
    border-bottom:1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1em;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li.section {
    padding: 1rem;
    padding-left: 3.6rem;
    font-weight: 400;
    font-size:0.95em;
    position: relative;
    border-bottom:1px solid #dfe6e8
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li.section i {
    align-items: center;
    background: #22363f none repeat scroll 0 0;
    border-radius: 30px;
    bottom: auto;
    color: #fff;
    display: flex;
    flex-flow: row nowrap;
    font-size: 12px;
    height: 30px;
    justify-content: center;
    left: 0;
    position: absolute;
    right: auto;
    top: 4px;
    width: 30px;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li.line {
    height: 1px;
    background-color: rgba(223, 230, 232, 0.5);
    position: relative;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li a {
    display: block;
    text-decoration: none;
    color: #666666;
    font-weight: 400;
    font-size:1em;
    padding: 1rem 1rem;
    position: relative;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li a:before {
    position: absolute;
    top: 0;
    left: auto;
    bottom: auto;
    right: 8px;
    width: auto;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: FontAwesome;
    content: "\f105";
    color: #666;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translate(50%, 0);
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li a:hover {
    background:#e91e63;
    color: #fff;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li a:hover:before {
    opacity: 1;
    color:#fff;
    transform: translate(0, 0);
}
aside.app-sidebar .sidebar-footer {
    width: 180px;
    padding: 0;
    position: relative;
    box-shadow: 0 -1px 2px #dfe6e8;
}
aside.app-sidebar .sidebar-footer ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center;
}
aside.app-sidebar .sidebar-footer ul.menu > li > a {
    padding: 15px 8px;
    font-size: 1em;
    display: block;
    color: #c8d1d3;
}
aside.app-sidebar .sidebar-footer ul.menu > li > a .flag-icon {
    border-radius: 50%;
    height: 15px;
    width: 15px;
    box-shadow: none;
}
aside.app-sidebar .sidebar-footer ul.menu > li.dropdown {
    position: static !important;
}
aside.app-sidebar .sidebar-footer ul.menu > li.dropdown > a {
    position: relative;
}
aside.app-sidebar .sidebar-footer ul.menu > li.dropdown .dropdown-menu {
    width: 100%;
    left: 0;
    padding: 0;
    top: auto;
    bottom: 100%;
    z-index: 100113;
    border-radius: 2px;
    border: 0;
    box-shadow: none;
}
aside.app-sidebar .sidebar-footer ul.menu > li.dropdown .dropdown-menu > li {
    border: 0;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    font-weight: 300;
    border-bottom: 1px solid rgba(200, 209, 211, 0.2);
    font-size: 0.9em;
    background-color: #FFF;
}
aside.app-sidebar .sidebar-footer ul.menu > li.dropdown .dropdown-menu > li a {
    display: block;
    text-decoration: none;
    color: #666;
    padding: 0.9rem 1.5rem;
}
aside.app-sidebar .sidebar-footer ul.menu > li.dropdown .dropdown-menu > li a:hover {
    background-color: #FFF;
    color: #18aa4a;
}
aside.app-sidebar.active {
    transform: translate(0, 0);
}
@media (min-width: 767.01px) {
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown:hover .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translate(-40px, -37%);
    }
}
@media (max-width: 767px) {
    aside.app-sidebar {
        transform: translate(-100%, 0);
        box-shadow: none;
        width: 100%;
    }
    aside.app-sidebar .sidebar-header, aside.app-sidebar .sidebar-menu, aside.app-sidebar .sidebar-footer {
        width: 100%;
    }
    aside.app-sidebar .sidebar-header {
        height: 70px;
        border-bottom: 1px solid #f0f4f5;
    }
    aside.app-sidebar .sidebar-header .sidebar-brand {
        height: 70px;
    }
    aside.app-sidebar .sidebar-header .sidebar-toggle {
        display: block;
        color:#fff;
    }
    aside.app-sidebar .sidebar-menu {
        position: relative;
        overflow: auto;
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav {
        padding: 0;
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding:5px 10px;
        border-bottom: 1px solid transparent;
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a .title {
        padding-top: 0;
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a .icon {
        margin: 0;
        background-color: transparent !important;
        border-radius: 0;
        margin-right: 5px;
        width: 40px;
        height: 40px;
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-toggle:before {
        display: -ms-flexbox;
        display: flex;
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu {
        display: none;
        visibility: visible;
        opacity: 1;
        width: 100%;
        left: 0;
        top:0;
        position: relative;
        transform: translate(0, 0);
        margin-top: 0;
        border-radius: 0;
        border: 0;
        box-shadow: none;
        padding: 0;
        background-color: rgba(223, 230, 232, 0.2);
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul {
        padding: 0;
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li {
        border-bottom: 1px solid rgba(223, 230, 232, 0.5);
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li a {
        padding: 15px;
        padding-left: 65px;
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li.section {
        padding: 15px;
        padding-left: 70px;
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li.section > i {
        height: 30px;
        left: 30px;
        margin-right: 10px;
        width: 30px;
        top: 12px;
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown .dropdown-menu > ul > li.line {
        display: none;
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown.open .dropdown-toggle:before {
        content: "\f106";
    }
    aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown.open .dropdown-menu {
        display: block;
    }
    aside.app-sidebar.active {
        transform: translate(0, 0);
    }
    .app-container.__sidebar {
        overflow: hidden;
        height: 100vh;
    }
    .app-container.__sidebar .app-container {
        height: 100vh;
        overflow: hidden;
    }
    aside.app-sidebar .sidebar-header .sidebar-brand img {
        height: 55px;
        margin-top: 0;
        text-align: center;
        width: 55px;
    }
}
aside.app-sidebar {
    background-color: #191919;
    box-shadow:3px 0px 5px 0 rgba(0, 0, 0, 0.16), 3px 2px 10px 0 rgba(0, 0, 0, 0.12);
}
aside.app-sidebar .sidebar-header .sidebar-brand .highlight {
    background-color: #39a2e9;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a .icon {
    /*background-color: rgba(255, 255, 255, 1);*/
    color:#fff;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li > a .title {
    color: #fff;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.active > a .icon {
    /*background-color: #ffffff;*/
    color:#fff;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.active > a .title {
    color: #ffffff;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown > .dropdown-menu > ul > li.section {
    color: #22363f;
}
aside.app-sidebar .sidebar-menu ul.sidebar-nav > li.dropdown.open > a:after {
    border-right-color: #FFF;
}
aside.app-sidebar .sidebar-footer {
    border-top-color: rgba(0, 0, 0, 0.1);
    background-color: #FFF;
}
aside.app-sidebar .sidebar-footer ul.menu > li.dropdown .dropdown-menu {
    border-bottom-color: #39a2e9;
}
.app-login {
    background: rgba(0, 0, 0, 0) url("../../assets/images/bg2.jpg") repeat-y scroll 0 0 / 100% 100%;
    bottom: 0;
    height: 100%;
    left: 0;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 !important;
}
.app-login .app-body {
    position: relative;
    display: -ms-flexbox;
    display: flex;
}
.app-login .app-body .app-block {
    transition: all 0.2s ease;
    background-color: #FFF;
    border-radius: 6px;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.1), 0 10px 20px 0 rgba(0, 0, 0, 0.2);
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.app-login .app-body .app-block .app-right-section {
    background-color: #18aa4a;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    height: 100%;
    position: relative;
    padding: 4rem 6rem;
}
.app-login .app-body .app-block .app-right-section .app-brand {
    font-size: 1.5em;
    font-weight: 200;
    color: #FFF;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(15, 121, 51, 0.25);
}
.app-login .app-body .app-block .app-right-section .app-brand .highlight {
    color: #18aa4a;
    background-color: white;
    border-radius: 2px;
    padding: 2px 8px;
    font-weight: 200;
}
.app-login .app-body .app-block .app-right-section .app-info ul.list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.app-login .app-body .app-block .app-right-section .app-info ul.list li {
    margin-bottom: 2rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.app-login .app-body .app-block .app-right-section .app-info ul.list li .icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: block;
    margin: 0 auto;
    background-color: #FFF;
    color: #18aa4a;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.app-login .app-body .app-block .app-right-section .app-info ul.list li .icon i.fa, .app-login .app-body .app-block .app-right-section .app-info ul.list li .icon i.ion {
    width: 100%;
    height: 100%;
    font-size: 2em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.app-login .app-body .app-block .app-right-section .app-info ul.list li .title {
    -ms-flex: 1;
    flex: 1;
    font-weight: 300;
    padding: 0 1rem;
    font-size: 0.9em;
    color: #FFF;
}
.app-login .app-body .app-block .app-form {
    padding: 4rem 3rem;
    position: relative;
    -ms-flex: 1;
    flex: 1;
}
.app-login .app-body .app-block .app-form .form-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 200;
    color: #444;
    margin-bottom: 4rem;
}
.app-login .app-body .app-block .app-form .form-header .highlight {
    font-weight: 400;
    color: #39a2e9;
    margin-right: 2px;
}
.app-login .app-body .app-block .app-form .form-suggestion {
    margin-bottom: 15px;
}
.app-login .app-body .app-block .app-form form {
    min-width: 280px;
}
.app-login .app-body .app-block .app-form form .btn-submit {
    width: 100%;
}
.app-login .app-body .app-block .app-form .form-line {
    width: 100%;
    position: relative;
    text-align: center;
    font-size: 0.9em;
    z-index: 2;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #8d9293;
}
.app-login .app-body .app-block .app-form .form-line .title {
    background-color: #FFF;
    position: relative;
    z-index: 2;
    width: 50px;
    margin: 0 auto;
}
.app-login .app-body .app-block .app-form .form-line:after {
    content: '';
    position: absolute;
    width: 50%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
    border-bottom: 1px solid #dfe6e8;
}
.app-login .app-body .app-block .app-form .form-footer {
    text-align: center;
}
.app-login .app-body .app-block .app-form .form-footer .btn {
    margin: 0 auto;
}
.app-login.__loading .app-block {
    filter: url("/assets/images/blur.svg#blur");
    -webkit-filter: blur(2px);
    filter: blur(2px);
    transform: scale(0.8);
}
.app-login.__loading .loader-container {
    color: #FFF;
    font-size: 2em;
    font-weight: 200;
}
.app-login.__loading .loader-container .sk-folding-cube .sk-cube:before {
    background-color: #FFF;
}
.app-login.__loading:after {
    background-color: rgba(41, 199, 95, 0.75);
}
ul.icons {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    overflow: auto;
}
ul.icons > li {
    float: left;
    width: 100px;
    height: 100px;
    border: 1px solid #e7edee;
    text-align: center;
    padding: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
    font-size: 0.8em;
}
ul.icons > li .fa {
    font-size: 2.5em;
    padding: 15px;
}
ul.icons > li div {
    display: block;
}
@media (max-width: 767px) {
    ul.icons {
        margin-bottom: 15px;
    }
    ul.icons > li {
        width: 60px;
        height: 60px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    ul.icons > li .fa {
        font-size: 1.5em;
        padding: 0;
    }
    ul.icons > li div {
        display: none;
    }
}
.app-inbox .messaging {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}
.app-inbox .messaging > .heading {
    padding: 20px;
    width: 100%;
    background-color: #FFF;
    color: #8d9293;
    border-bottom: 1px solid #dfe6e8;
}
.app-inbox .messaging > .heading .badge {
    margin-left: 10px;
    font-size: 0.7em;
}
.app-inbox .messaging > .heading .badge.badge-success {
    background-color: #39a2e9;
}
.app-inbox .messaging ul.chat {
    -ms-flex: 1;
    flex: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background-color: #FFF;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: auto;
}
.app-inbox .messaging ul.chat > li {
    padding: 20px;
    padding-top: 0;
    padding-right: 20%;
}
.app-inbox .messaging ul.chat > li .message {
    background-color: #e7edee;
    border-radius: 3px;
    padding: 15px;
}
.app-inbox .messaging ul.chat > li .info {
    padding: 5px 0;
    font-size: 0.85em;
    color: #8d9293;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.app-inbox .messaging ul.chat > li .info > * {
    margin-right: 10px;
}
.app-inbox .messaging ul.chat > li.right {
    -ms-flex-item-align: end;
    align-self: flex-end;
    padding-left: 20%;
    padding-right: 20px;
    text-align: right;
}
.app-inbox .messaging ul.chat > li.right .message {
    text-align: left;
}
.app-inbox .messaging ul.chat > li.right .info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.app-inbox .messaging ul.chat > li.right .info > * {
    margin-left: 10px;
    margin-right: 0px;
}
.app-inbox .messaging ul.chat > li.line {
    width: 100%;
    position: relative;
    text-align: center;
    font-size: 0.9em;
    z-index: 2;
    padding-right: 20px;
    padding-top: 20px;
    color: #8d9293;
}
.app-inbox .messaging ul.chat > li.line .title {
    background-color: #FFF;
    position: relative;
    z-index: 2;
    width: 140px;
    margin: 0 auto;
}
.app-inbox .messaging ul.chat > li.line:after {
    content: '';
    position: absolute;
    width: 50%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
    border-bottom: 1px solid #dfe6e8;
}
.app-inbox .chat-group {
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.app-inbox .chat-group .heading {
    width: 100%;
    padding: 20px;
    background-color: #FFF;
    color: #8d9293;
    border-right: 1px solid #dfe6e8;
    border-bottom: 1px solid #dfe6e8;
}
.app-inbox .chat-group ul.group {
    background-color: #FFF;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    box-shadow: 0 2px 2px rgba(68, 68, 68, 0.2);
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    border-right: 1px solid #dfe6e8;
    overflow: auto;
}
.app-inbox .chat-group ul.group > li {
    padding: 20px;
}
.app-inbox .chat-group ul.group > li.section {
    padding: 6px 20px;
    background-color: #e7edee;
    border-bottom: 1px solid #dfe6e8;
    color: #8d9293;
    font-size: 0.9em;
}
.app-inbox .chat-group ul.group > li.message {
    padding: 0;
    border-bottom: 1px solid #dfe6e8;
}
.app-inbox .chat-group ul.group > li.message a {
    display: block;
    text-decoration: none;
    color: #444;
    padding: 20px;
}
.app-inbox .chat-group ul.group > li.message a .message {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.app-inbox .chat-group ul.group > li.message a .message .content {
    -ms-flex: 1;
    flex: 1;
}
.app-inbox .chat-group ul.group > li.message a .message .content .description {
    font-size: 0.8em;
    opacity: 0.4;
}
.app-inbox .chat-group ul.group > li.message a .message .profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
}
.app-inbox .chat-group ul.group > li.message span.badge {
    border-radius: 3px;
    font-weight: 400;
    font-weight: 0.8em;
}
.app-messaging-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 30px;
    margin-bottom: 30px;
    -ms-flex: 1;
    flex: 1;
}
ui-view > .app-messaging-container {
    padding: 0;
    width: 100%;
    margin-bottom: 0;
}
.app-messaging {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    background-color: #FFF;
    border-radius: 3px;
    box-shadow: 0 1px 2px #c8d1d3;
}
.app-messaging.collapse.in {
    display: -ms-flexbox;
    display: flex;
}
.app-messaging .messaging {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    width: auto;
    min-width: auto;
    -ms-flex: 1;
    flex: 1;
    transition: all 0.3s ease;
}
.app-messaging .messaging > .heading {
    padding: 0 20px;
    height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    color: #8d9293;
    border-bottom: 1px solid #dfe6e8;
}
.app-messaging .messaging > .heading .title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.app-messaging .messaging > .heading .title .btn-back {
    font-size: 2em;
    color: #444;
    display: inline-block;
    text-decoration: none;
    width: 30px;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.app-messaging .messaging > .heading .title .badge {
    margin-left: 10px;
    font-size: 0.7em;
}
.app-messaging .messaging > .footer {
    width: 100%;
    padding: 8px;
    background-color: #dfe6e8;
}
.app-messaging .messaging > .footer .message-box {
    background-color: #FFF;
    border-radius: 2px;
    box-shadow: 0 1px 1px #c8d1d3;
    width: 100%;
    height: 80px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-top: 1px solid #dfe6e8;
}
.app-messaging .messaging > .footer .message-box textarea, .app-messaging .messaging > .footer .message-box button {
    margin-bottom: 0;
    border: 0;
    height: 100%;
    border-radius: 0;
}
.app-messaging .messaging > .footer .message-box textarea {
    -ms-flex: 1;
    flex: 1;
}
.app-messaging .messaging > .footer .message-box button {
    border-left: 1px solid #dfe6e8;
    color: #39a2e9;
}
.app-messaging .messaging > .footer .message-box button .fa {
    margin-right: 1rem;
}
.app-messaging .messaging ul.chat {
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background-color: #FFF;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: auto;
    position: relative;
}
.app-messaging .messaging ul.chat > li {
    width: 100%;
    padding: 0 20px;
    padding-right: 20%;
    margin-bottom: 10px;
}
.app-messaging .messaging ul.chat > li .message {
    background-color: #e7edee;
    border-radius: 3px;
    padding: 15px;
}
.app-messaging .messaging ul.chat > li .info {
    padding: 5px 0;
    font-size: 0.85em;
    color: #8d9293;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.app-messaging .messaging ul.chat > li .info > * {
    margin-right: 10px;
}
.app-messaging .messaging ul.chat > li.right {
    -ms-flex-item-align: end;
    align-self: flex-end;
    padding-left: 20%;
    padding-right: 20px;
    text-align: right;
}
.app-messaging .messaging ul.chat > li.right .message {
    text-align: left;
}
.app-messaging .messaging ul.chat > li.right .info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.app-messaging .messaging ul.chat > li.right .info > * {
    margin-left: 10px;
    margin-right: 0px;
}
.app-messaging .messaging ul.chat > li.line {
    width: 100%;
    position: relative;
    text-align: center;
    font-size: 0.9em;
    z-index: 2;
    padding-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #8d9293;
}
.app-messaging .messaging ul.chat > li.line .title {
    background-color: #FFF;
    position: relative;
    z-index: 2;
    width: 140px;
    margin: 0 auto;
}
.app-messaging .messaging ul.chat > li.line:after {
    content: '';
    position: absolute;
    width: 50%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
    border-bottom: 1px solid #dfe6e8;
}
.app-messaging .chat-group {
    height: 100% !important;
    width: 300px;
    min-width: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    transition: all 0.3s ease;
}
.app-messaging .chat-group .heading {
    width: 100%;
    padding: 0 20px;
    height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: #8d9293;
    border-right: 1px solid #dfe6e8;
    border-bottom: 1px solid #dfe6e8;
}
.app-messaging .chat-group ul.group {
    background-color: #FFF;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    border-right: 1px solid #dfe6e8;
    overflow: auto;
    position: relative;
}
.app-messaging .chat-group ul.group > li {
    padding: 20px;
}
.app-messaging .chat-group ul.group > li.section {
    padding: 6px 20px;
    background-color: #e7edee;
    border-bottom: 1px solid #dfe6e8;
    color: #8d9293;
    font-size: 0.9em;
}
.app-messaging .chat-group ul.group > li.message {
    padding: 0;
    border-bottom: 1px solid #dfe6e8;
}
.app-messaging .chat-group ul.group > li.message a {
    display: block;
    text-decoration: none;
    color: #444;
    padding: 20px;
}
.app-messaging .chat-group ul.group > li.message a .message {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.app-messaging .chat-group ul.group > li.message a .message .content {
    -ms-flex: 1;
    flex: 1;
}
.app-messaging .chat-group ul.group > li.message a .message .content .description {
    font-size: 0.8em;
    opacity: 0.4;
}
.app-messaging .chat-group ul.group > li.message a .message .profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
}
.app-messaging .chat-group ul.group > li.message span.badge {
    border-radius: 3px;
    font-weight: 400;
    font-weight: 0.8em;
}
@media (max-width: 991px) {
    .app-messaging {
        border-radius: 0;
        overflow: hidden;
    }
    .app-messaging .chat-group, .app-messaging .messaging {
        min-width: 100%;
        width: 100%;
        -ms-flex: 1;
        flex: 1;
    }
    .app-messaging .chat-group {
        transform: translate(0, 0);
    }
    .app-messaging .messaging {
        transform: translate(100%, 0);
    }
    .app-messaging.collapse .chat-group {
        transform: translate(0, 0);
    }
    .app-messaging.collapse .messaging {
        transform: translate(100%, 0);
    }
    .app-messaging.collapse.in {
        display: -ms-flexbox;
        display: flex;
    }
    .app-messaging.collapse.in .chat-group {
        transform: translate(-100%, 0);
    }
    .app-messaging.collapse.in .messaging {
        transform: translate(-100%, 0);
    }
}
@media (max-width: 767px) {
    .app-messaging-container {
        padding: 0;
        margin-bottom: 0;
    }
}
.search-result {
    background-color: #FFF;
    border-radius: 3px;
}
.search-result > .footer {
    padding: 20px 30px;
}
.search-result > ul.result {
    list-style: none;
    padding: 0;
    margin: 0;
}
.search-result > ul.result > li {
    border-radius: 0px;
    border-bottom: 1px solid #e7edee;
    padding: 20px 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.search-result > ul.result > li .img {
    margin-right: 20px;
    margin-bottom: 0;
}
.search-result > ul.result > li .img img {
    max-width: 200px;
    height: auto;
}
.search-result > ul.result > li .info a {
    color: #666;
}
.search-result > ul.result > li .info .title {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #666;
}
.search-result > ul.result > li .info .title .highlight {
    color: #39a2e9;
}
.search-result > ul.result > li .info .description {
    color: #8d9293;
    font-size: 0.9em;
}
@media (max-width: 767px) {
    .search-result > .footer {
        padding: 15px;
    }
    .search-result > ul.result > li {
        padding: 15px;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .search-result > ul.result > li .img {
        margin-bottom: 15px;
        margin-right: 0;
    }
    .search-result > ul.result > li .img img {
        max-width: 100%;
    }
}
.badge {
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: 400;
    padding: 6px;
    background-color: #8d9293;
}
.badge.badge-icon {
    padding: 0;
}
.badge.badge-icon i {
    padding: 6px;
}
.badge.badge-icon span {
    padding: 6px;
}
.badge.badge-primary {
    color: #39a2e9;
    background-color: rgba(9, 80, 119, 0.2);
}
.badge.badge-primary.badge-icon i {
    background-color: rgba(9, 80, 119, 0.1);
}
.badge.badge-danger {
    color: #E74C3C;
    background-color: rgba(231, 76, 60, 0.2);
}
.badge.badge-danger.badge-icon i {
    background-color: rgba(231, 76, 60, 0.1);
}
.badge.badge-warning {
    color: #fc8229;
    background-color: rgba(252, 130, 41, 0.2);
}
.badge.badge-warning.badge-icon i {
    background-color: rgba(252, 130, 41, 0.1);
}
.badge.badge-info {
    color: #20a3b9;
    background-color: rgba(32, 163, 185, 0.2);
}
.badge.badge-info.badge-icon i {
    background-color: rgba(32, 163, 185, 0.1);
}
.badge.badge-success {
    color: #39a2e9;
    background-color: rgba(41, 199, 95, 0.2);
}
.badge.badge-success.badge-icon i {
    background-color: rgba(41, 199, 95, 0.1);
}
.card {
    width: 100%;
    background-color: #FFF;
    border-radius: 3px;
    box-shadow:0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.card .card-header {
    padding: 30px 20px;
    font-size: 1.1em;
    font-weight: 400;
    border-bottom: 1px solid #dfe6e8;
    border-left: 0px solid transparent;
    color: #666;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.card .card-header .card-title {
    -ms-flex: 1;
    flex: 1;
}
.card .card-header .card-action {
    list-style: none;
    margin: 0;
    padding: 0;
}
.card .card-header .card-action > li > a {
    color: #dfe6e8;
}
.card .card-header .card-action > li > .dropdown-menu {
    right: 0;
    left: auto;
    border-radius: 2px;
}
.card .card-body {
    padding: 30px 20px;
}
.card.card-mini .card-header {
    padding: 20px 30px;
}
.card.card-mini .card-body {
    padding: 20px 30px;
}
.card.card-tab .card-header {
    padding: 0;
    background-color: #f0f4f5;
    border-bottom: 0;
    overflow-x: scroll;
    overflow-y: visible;
}
.card.card-tab .card-header > ul, .card.card-tab ul.nav-tabs {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    font-weight: 400;
    border-bottom: 1px solid #dfe6e8;
}
.card.card-tab .card-header > ul > li, .card.card-tab ul.nav-tabs > li {
    display: block;
    margin-bottom: -2px;
    z-index: 10;
    width: 140px;
    min-width: 140px;
}
.card.card-tab .card-header > ul > li a, .card.card-tab ul.nav-tabs > li a {
    padding: 20px 30px;
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
    color: #8d9293;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.card.card-tab .card-header > ul > li.active, .card.card-tab ul.nav-tabs > li.active {
    border-left: 1px solid #dfe6e8;
    border-right: 1px solid #dfe6e8;
    background-color: #FFF;
}
.card.card-tab .card-header > ul > li.active a, .card.card-tab ul.nav-tabs > li.active a {
    color: #39a2e9;
    border-bottom: none !important;
}
.card.card-tab .card-header > ul > li:first-child.active, .card.card-tab ul.nav-tabs > li:first-child.active {
    border-left: 0;
}
.card.card-tab .tab-content {
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
}
.card.card-tab .tab-content .tab-pane {
    position: absolute;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    height: auto;
    display: none;
    padding: 30px;
    transition: all 0.3s ease;
    opacity: 0;
}
.card.card-tab .tab-content .tab-pane.active {
    transform: translate(0, 0);
    position: relative;
    opacity: 1;
    display: block;
}
.card.card-tab > .ng-isolate-scope > .nav-tabs {
    background-color: #f0f4f5;
}
.card.card-tab > .ng-isolate-scope > .nav-tabs > li.active {
    border-bottom: 2px solid #FFF;
    border-left: 1px solid #dfe6e8;
    border-right: 1px solid #dfe6e8;
    background-color: #FFF;
}
.card.card-tab > .ng-isolate-scope > .nav-tabs > li.active a {
    color: #39a2e9;
}
.card.card-tab > .ng-isolate-scope .tab-content .tab-pane {
    opacity: 0;
}
.card.card-tab > .ng-isolate-scope .tab-content .tab-pane.active {
    opacity: 1;
}
.card.card-tab.card-mini .card-header > li a, .card.card-tab.card-mini ul.nav-tabs > li a {
    padding-top: 20px;
    padding-bottom: 20px;
}
.card.card-banner {
    width: 100%;
    position: static;
    overflow: auto;
    display: block;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.card.card-banner:hover {
    cursor: pointer;
    text-decoration: none;
}
.card.card-banner .card-header {
    background-color: #FFF;
}
.card.card-banner .card-body {
    padding: 0px;
}
.card.card-banner .card-body .icon {
    position: absolute;
    top: 20%;
    transform: translate(0, -50%);
    font-size: 3em;
    color: #444;
    z-index: 0;
    padding: 10px;
    height: 90px;
    width: 90px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius:90px;
    margin-left: 10px;
}
.card.card-banner .card-body .content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    text-align:right;
    position: relative;
    width: 100%;
    padding: 2rem 2rem 2rem 13rem;
    z-index: 100;
}
.card.card-banner .card-body .content .value {
    font-size: 3.5em;
    line-height: 4rem;
    font-weight: 600;
    padding-top: 2rem;
    color: #444;
}
.card.card-banner .card-body .content .value .sign {
    font-size: 0.4em;
    font-weight: 300;
    margin-right: 5px;
    opacity: 0.85;
}
.card.card-banner .card-body .content .title {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-transform: none;
}
.card.card-banner .card-body::after {
    content: '';
    position: relative;
    display: block;
    clear: both;
}
.card.card-chart .card-header {
    border-bottom: 0;
}
.card.card-chart .card-header .card-title .title {
    background-color: #FFF;
    padding: 6px 12px;
    border-radius: 2px;
    font-weight: 400;
    width: auto;
    display: inline;
    text-transform: uppercase;
}
.mr_bot60{
    margin-bottom:20px !important;
}
.mr_bottom60{
    margin-bottom:60px;
}
/****/
.card.card-green {
    background: #39a2e9;
}
.card.card-green .card-body .icon {
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
}
.card.card-green .card-body .content .value {
    color: #FFF;
}
.card.card-green-light {
    background: linear-gradient(60deg,#ffa726,#fb8c00);
}
.card.card-green-light .card-body .icon {
    color: #fb8c00;
    background:#ffffff;
}
.card.card-green-light .card-body .content .value {
    color: #ffffff;
}
.card.card-green-light:hover {
    background: #fff;
}
.card.card-green-light:hover .card-body .icon {
    color: #ffffff;
    background:#fb8c00;
}
.card.card-green-light:hover .card-body .content .title, .card.card-green-light:hover .card-body .content .value {
    color: #fb8c00;
}
.card.card-green.card-chart .card-header {
    background: #39a2e9;
    color: #39a2e9;
}
/****/

/****/
.card.card-blue {
    background: #39c3da;
}
.card.card-blue .card-body .icon {
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
}
.card.card-blue .card-body .content .value {
    color: #FFF;
}
.card.card-blue-light {
    background: linear-gradient(60deg,#66bb6a,#43a047);
}
.card.card-blue-light .card-body .icon {
    color: #43a047;
    background: #ffffff;
}
.card.card-blue-light .card-body .content .value {
    color: #ffffff;
}
.card.card-blue-light:hover {
    background: #ffffff;
}
.card.card-blue-light:hover .card-body .icon {
    color: #ffffff;
    background: #43a047;
}
.card.card-blue-light:hover .card-body .content .title, .card.card-blue-light:hover .card-body .content .value {
    color: #43a047;
}
.card.card-blue.card-chart .card-header {
    background: #43a047;
    color: #43a047;
}
/****/

/****/
.card.card-yellow {
    background: #FFBC11;
}
.card.card-yellow .card-body .icon {
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
}
.card.card-yellow .card-body .content .value {
    color: #FFF;
}
.card.card-yellow-light {
    background: linear-gradient(60deg,#ef5350,#e53935);
}
.card.card-yellow-light .card-body .icon {
    color: #e53935;
    background: #ffffff;
}
.card.card-yellow-light .card-body .content .value {
    color: #ffffff;
}
.card.card-yellow-light:hover {
    background: #ffffff;
}
.card.card-yellow-light:hover .card-body .icon {
    color: #ffffff;
    background:#e53935;
}
.card.card-yellow-light:hover .card-body .content .title, .card.card-yellow-light:hover .card-body .content .value {
    color: #e53935;
}
.card.card-yellow.card-chart .card-header {
    background: #e53935;
    color: #e53935;
}
/****/

/****/
.card.orange-light {
    background: #FFBC11;
}
.card.orange-light .card-body .icon {
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
}
.card.orange-light .card-body .content .value {
    color: #FFF;
}
.card.card-orange-light {
    background: linear-gradient(60deg,#26c6da,#00acc1);
}
.card.card-orange-light .card-body .icon {
    color: #00acc1;
    background: #ffffff;
}
.card.card-orange-light .card-body .content .value {
    color: #ffffff;
}
.card.card-orange-light:hover {
    background: #ffffff;
}
.card.card-orange-light:hover .card-body .icon {
    color: #ffffff;
    background:#00acc1;
}
.card.card-orange-light:hover .card-body .content .title, .card.card-orange-light:hover .card-body .content .value {
    color: #00acc1;
}
.card.orange-light.card-chart .card-header {
    background: #00acc1;
    color: #00acc1;
}
/****/

/****/
.card.pink-light {
    background: #FFBC11;
}
.card.pink-light .card-body .icon {
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
}
.card.pink-light .card-body .content .value {
    color: #FFF;
}
.card.card-pink-light {
    background: linear-gradient(60deg,#925cc1,#9139dd);
}
.card.card-pink-light .card-body .icon {
    color: #9139dd;
    background: #ffffff;
}
.card.card-pink-light .card-body .content .value {
    color: #ffffff;
}
.card.card-pink-light:hover {
    background: #ffffff;
}
.card.card-pink-light:hover .card-body .icon {
    color: #ffffff;
    background:#9139dd;
}
.card.card-pink-light:hover .card-body .content .title, .card.card-pink-light:hover .card-body .content .value {
    color: #9139dd;
}
.card.pink-light.card-chart .card-header {
    background: #9139dd;
    color: #9139dd;
}
/****/

/****/
.card.aliceblue-light {
    background: #FFBC11;
}
.card.aliceblue-light .card-body .icon {
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
}
.card.aliceblue-light .card-body .content .value {
    color: #FFF;
}
.card.card-aliceblue-light {
    background: linear-gradient(60deg,#3f51b5,#1b38d7);
}
.card.card-aliceblue-light .card-body .icon {
    color: #1b38d7;
    background: #ffffff;
}
.card.card-aliceblue-light .card-body .content .value {
    color: #ffffff;
}
.card.card-aliceblue-light:hover {
    background: #ffffff;
}
.card.card-aliceblue-light:hover .card-body .icon {
    color: #ffffff;
    background:#1b38d7;
}
.card.card-aliceblue-light:hover .card-body .content .title, .card.card-aliceblue-light:hover .card-body .content .value {
    color: #1b38d7;
}
.card.aliceblue-light.card-chart .card-header {
    background: #1b38d7;
    color: #1b38d7;
}
/****/


/****/
.card.alicerose-light {
    background: #FFBC11;
}
.card.alicerose-light .card-body .icon {
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
}
.card.alicerose-light .card-body .content .value {
    color: #FFF;
}
.card.card-alicerose-light {
    background: linear-gradient(60deg, #ec407a, #d81b60);
}
.card.card-alicerose-light .card-body .icon {
    color: #d81b60;
    background: #ffffff;
}
.card.card-alicerose-light .card-body .content .value {
    color: #ffffff;
}
.card.card-alicerose-light:hover {
    background: #ffffff;
}
.card.card-alicerose-light:hover .card-body .icon {
    color: #ffffff;
    background:#d81b60;
}
.card.card-alicerose-light:hover .card-body .content .title, .card.card-alicerose-light:hover .card-body .content .value {
    color: #d81b60;
}
.card.alicerose-light.card-chart .card-header {
    background: #d81b60;
    color: #d81b60;
}
/****/

/****/
.card.skyeblue-light {
    background: #FFBC11;
}
.card.skyeblue-light .card-body .icon {
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
}
.card.skyeblue-light .card-body .content .value {
    color: #FFF;
}
.card.card-skyeblue-light {
    background: linear-gradient(60deg, #3ea1ef, #3ea1ef);
}
.card.card-skyeblue-light .card-body .icon {
    color: #3ea1ef;
    background: #ffffff;
}
.card.card-skyeblue-light .card-body .content .value {
    color: #ffffff;
}
.card.card-skyeblue-light:hover {
    background: #ffffff;
}
.card.card-skyeblue-light:hover .card-body .icon {
    color: #ffffff;
    background:#3ea1ef;
}
.card.card-skyeblue-light:hover .card-body .content .title, .card.card-skyeblue-light:hover .card-body .content .value {
    color: #3ea1ef;
}
.card.skyeblue-light.card-chart .card-header {
    background: #3ea1ef;
    color: #3ea1ef;
}
/****/

@media (min-width:768px) and (max-width:979px){
    .card.card-banner .card-body .content{
        padding:2rem 2rem 2rem 8rem;
    }
    .card.card-banner .card-body .icon{
        font-size:2em;
        width:70px;
        height:70px;
        top:10%;
    }
}
@media (max-width: 767px) {
    .card .card-header {
        padding: 15px;
    }
    .card .card-body {
        padding: 15px;
    }
    .card.card-mini .card-header {
        padding: 15px;
    }
    .card.card-mini .card-body {
        padding: 15px;
    }
    .card.card-tab .card-header {
        padding: 0;
    }
    .card.card-tab .card-body {
        padding: 0;
    }
    .card.card-tab .tab-content .tab-pane {
        padding: 15px;
    }
    .card.card-tab.card-mini .card-header > li a, .card.card-tab.card-mini ul.nav-tabs > li a {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .card.card-banner .card-body .icon {
        font-size: 3em;
        min-width: 80px;
    }
    .card.card-banner .card-body .content .value {
        font-size: 3em;
        padding-top: 1rem;
    }
    .card.card-banner .card-body .content .title {
        font-size: 0.9em;
    }
    .mr_bottom60{
        margin-bottom:50px !important;
    }
}
.select_category .checkbox {
    position: relative;
    display: inline-block;
    float: none;
    background:#e91e63;
    margin: 10px 6px;
    padding: 10px;
    border-radius: 4px;
}
.select_category .checkbox label {
    min-height: 20px;
    margin-left: 8px;
    padding-left:20px;
    margin-top: 8px;
    font-weight: normal;
    cursor: pointer;
    color: #fff;
}
.select_category .checkbox input[type='checkbox'], .checkbox input[type='radio'], .radio input[type='checkbox'], .radio input[type='radio'] {
    position: absolute;
    left: 14px;
    margin-left: 0;
    opacity: 0;
    top: 9px;
}
.select_category .checkbox input:checked + label::after{
    content: '\f00c';
    color: #e91e63;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}
.select_category .checkbox label:before{
    content: '';
    border: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.select_category .checkbox label:before, .select_category .checkbox label:after{
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translate(0, -50%);
    border-radius: 2px;
}
.select_category .checkbox label:after{
    content: '';
    font-family: FontAwesome;
    text-align: center;
    border-radius: 2px;
    color: #18aa4a;
    font-size: 0.95em;
    border: 1px solid transparent;
}
.btn {
    padding: 10px 30px;
    border-radius: 0;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(223, 230, 232, 0.3);
    margin-bottom: 5px;
    transition: all .3s ease;
}
.btn:hover {
    transform: translate(0, -2px);
    box-shadow: 0 4px 6px rgba(223, 230, 232, 0.15);
}
.btn.btn-xs {
    padding: 5px 10px;
    border-bottom-width: 2px;
}
.btn.btn-sm {
    padding: 10px 20px;
    border-bottom-width: 2px;
}
.btn.btn-lg {
    font-size: 1.5em;
}
.btn.btn-default {
    border-color: #e7edee;
    background-color: #FFF;
}
.btn.btn-link {
    box-shadow: none;
    background-color: transparent;
    border-bottom-width: 0px;
}
.btn.btn-primary {
    border-color: #e91e63;
    background-color:#e91e63;
    box-shadow: 0 2px 3px rgba(9, 80, 119, 0.3);
}
.btn.btn-primary:hover {
    box-shadow: 0 4px 6px rgba(9, 80, 119, 0.15);
}
.btn.btn-success {
    border-color: #39a2e9;
    border-bottom-color: #18aa4a;
    background-color: #39a2e9;
    box-shadow: 0 2px 3px rgba(41, 199, 95, 0.3);
}
.btn.btn-success:hover {
    box-shadow: 0 4px 6px rgba(41, 199, 95, 0.15);
}
.btn.btn-warning {
    border-color: #fc8229;
    border-bottom-color: #eb6b0e;
    background-color: #fc8229;
    box-shadow: 0 2px 3px rgba(252, 130, 41, 0.3);
}
.btn.btn-warning:hover {
    box-shadow: 0 4px 6px rgba(252, 130, 41, 0.15);
}
.btn.btn-danger {
    border-color: #E74C3C;
    border-bottom-color: #d73727;
    background-color: #E74C3C;
    box-shadow: 0 2px 3px rgba(231, 76, 60, 0.3);
}
.btn.btn-danger:hover {
    box-shadow: 0 4px 6px rgba(231, 76, 60, 0.15);
}
.btn.btn-info {
    border-color: #39c3da;
    border-bottom-color: #20a3b9;
    background-color: #39c3da;
    box-shadow: 0 2px 3px rgba(57, 195, 218, 0.3);
}
.btn.btn-info:hover {
    box-shadow: 0 4px 6px rgba(57, 195, 218, 0.15);
}
.btn.btn-social {
    color: #FFF;
}
.btn.btn-social .info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.btn.btn-social .icon {
    font-size: 2em;
    margin-right: 15px;
}
.btn.btn-social.__facebook {
    border-color: #3D62B3;
    border-bottom-color: #335795;
    background-color: #3D62B3;
}
.btn.btn-social.__twitter {
    border-color: #03ABEA;
    border-bottom-color: #029ad3;
    background-color: #03ABEA;
}
input.form-control, textarea.form-control {
    border-radius: 2px;
    padding: 14px 15px;
    height: auto;
    resize:vertical;
    font-size: 1em;
    line-height: auto;
    border: 1px solid #999;
    background-color: transparent;
    box-shadow: none;
    margin-bottom: 15px;
}
textarea.form-control {
    padding: 15px;
}
input ::-webkit-input-placeholder {
    line-height: normal;
}
.input-group {
    border: 1px solid #c8d1d3;
    border-radius: 2px;
    margin-bottom: 15px;
    width: 100%;
}
.input-group .input-group-addon {
    font-size: 1em;
    width: auto;
    border: 0;
    background-color: transparent;
    width: 40px;
    text-align: center;
}
.input-group input.form-control, .input-group textarea.form-control {
    border: 0;
}
.input-group .input-group-addon + .form-control {
    border-left: 1px solid #dfe6e8;
}
.form-horizontal .control-label {
    font-weight: 400;
    font-size: 1em;
    text-align: left;
}
.form-horizontal .control-label-help {
    color: #8d9293;
    font-size: 0.9em;
    margin-top: 5px;
}
.form-horizontal .form-group .help-block {
    font-weight: 300;
    font-size: 0.9em;
}
.form-group {
    margin-bottom: 0;
}
.has-success .form-control {
    border-color: #18aa4a;
    box-shadow: none;
}
.has-warning .form-control {
    border-color: #e9aa3a;
    box-shadow: none;
}
.has-error .form-control {
    border-color: #E74C3C;
    box-shadow: none;
}
.select2-dropdown {
    border: 1px solid #DDD;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}
.select2-dropdown .select2-results__option[aria-selected=true] {
    background-color: #F9F9F9;
}
.select2-dropdown .select2-results__option__highlighted[aria-selected] {
    background-color: #e91e63;
    color: #FFF;
}
.checkbox, .radio {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}
.checkbox input[type='checkbox'], .checkbox input[type='radio'], .radio input[type='checkbox'], .radio input[type='radio'] {
    position: absolute;
    left: 0;
    margin-left: 0;
    opacity: 0;
}
.checkbox label, .radio label {
    padding-left: 30px;
}
.checkbox label:before, .checkbox label:after, .radio label:before, .radio label:after {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translate(0, -50%);
    border-radius: 2px;
}
.checkbox label:before, .radio label:before {
    content: '';
    border: 1px solid #c8d1d3;
    border-bottom: 2px solid #c8d1d3;
}
.checkbox label:after, .radio label:after {
    content: '';
    font-family: FontAwesome;
    text-align: center;
    border-radius: 2px;
    color: #18aa4a;
    font-size: 0.95em;
    border: 1px solid transparent;
}
.checkbox input:checked + label::after, .radio input:checked + label::after {
    content: '\f00c';
    color: #FFF;
    background-color: #39a2e9;
    border: 1px solid #39a2e9;
    border-bottom: 2px solid #18aa4a;
}
.checkbox.checkbox-inline, .checkbox.radio-inline, .radio.checkbox-inline, .radio.radio-inline {
    padding-left: 0;
}
.checkbox + .checkbox-inline, .radio + .checkbox-inline {
    margin-top: 10px;
}
.radio label:before, .radio label:after {
    border-radius: 50%;
    border-bottom-width: 1px;
}
.radio label:after {
    width: 12px;
    height: 12px;
    left: 10px;
    transform: translate(-50%, -50%);
}
.radio input:checked + label::after {
    content: '';
    background-color: #39a2e9;
    border-bottom-width: 0;
}
.radio + .radio-inline {
    margin-top: 10px;
}
.form-horizontal .checkbox, .form-horizontal .radio {
    min-height: auto;
    padding-top: 0;
}
.select2 {
    width: 100%;
    margin-bottom: 15px;
}
.select2 .select2-selection--single {
    border: 1px solid #999;
    border-radius: 2px;
    height: auto;
}
.select2 .select2-selection--single .select2-selection__rendered {
    color: #666;
    padding: 10px 15px;
}
.select2 .select2-selection--single .select2-selection__arrow {
    height: auto;
    width: auto;
    right: 15px;
    top: 50%;
    transform: translate(-50%, 0);
}
.select2-container .select2-search--dropdown {
    background-color: #e7edee;
    border-bottom: 1px solid #c8d1d3;
}
.select2-container .select2-search--dropdown .select2-search__field {
    border: 1px solid #dfe6e8;
}
.select2-container .select2-dropdown .select2-results__option--highlighted {
    background-color: #e91e63;
}
.select2-container .select2-dropdown .select2-results__option {
    padding: 10px 15px;
}
.ui-select-container {
    margin-bottom: 15px;
}
.ui-select-container .ui-select-match .btn {
    border: 1px solid #c8d1d3;
    border-radius: 2px;
    height: auto;
    padding: 10px 15px;
    padding-right: 30px;
    margin-bottom: 0;
}
.ui-select-container .ui-select-match .btn .ui-select-match-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.ui-select-container .ui-select-match .btn:hover {
    transform: translate(0, 0);
}
.ui-select-container input.form-control {
    margin-bottom: 0;
}
.ui-select-container .ui-select-dropdown {
    padding: 0;
    border-radius: 1px;
}
.input-group .select2 {
    margin-bottom: 0;
    width: 100% !important;
}
.input-group .select2 .select2-selection--single {
    border: none;
    border-right: 1px solid #c8d1d3;
}
.input-group .ui-select-container {
    margin-bottom: 0;
}
.input-group .ui-select-container .ui-select-match .btn {
    border-radius: 0;
    border: none;
    border-right: 1px solid #c8d1d3;
}
.alert {
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    font-weight: 400;
}
.alert .alert-link {
    text-decoration: underline;
    font-weight: 400;
}
.alert-dismissable .close, .alert-dismissible .close {
    float: right;
    right: 0px;
}
/*.alert-success {
	color: #e91e63;
	border-color:#3ee232;
	background-color:rgba(233, 30, 99, 0.3);
}*/
.alert-success .alert-link {
    color: #e91e63;
}
.alert-info {
    color: #12606d;
    border-color: #93e5f3;
    background-color: #c3f0f7;
}
.alert-info .alert-link {
    color: #12606d;
}
.alert-warning {
    color: #851b10;
    border-color: #fbd490;
    background-color: #ffe5b6;
}
.alert-warning .alert-link {
    color: #851b10;
}
.alert-danger {
    color: #d73727;
    border-color: #f3b1ab;
    background-color: #fdc3bd;
}
.alert-danger .alert-link {
    color: #d73727;
}
.progress {
    border-radius: 2px;
}
.progress-bar-success {
    background-color: #39a2e9;
}
.progress-bar-info {
    background-color: #39c3da;
}
.progress-bar-warning {
    background-color: #FFBC11;
}
.progress-bar-danger {
    background-color: #E74C3C;
}
.pagination {
    font-size: 14px;
    margin: 0;
}
.pagination > li > a, .pagination > li > span {
    color: #444;
    border-radius: 2px;
    border-color: #dfe6e8;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    margin-left: 2px;
}
.pagination > li > a:hover, .pagination > li > a:focus, .pagination > li > span:hover, .pagination > li > span:focus {
    color: #444;
    border-radius: 2px;
    border-color: #dfe6e8;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    margin-left: 2px;
}
.pagination > li.active > a, .pagination > li.active > span {
    border: 0;
    border-bottom: 2px solid #e91e63;
    background-color: #e91e63;
}
.pagination > li.active > a:hover, .pagination > li.active > a:focus, .pagination > li.active > span:hover, .pagination > li.active > span:focus {
    border: 0;
    border-bottom: 2px solid #e91e63;
    background-color: #c6104e;
}
table.table > tbody > tr td, table.table > tbody > tr th, table.table > thead > tr td {
    font-size: 14px;
    padding: 8px 20px;
    vertical-align: middle
}
.table-striped .category_img img {
    /*border:1px dashed #c7c7c7;
	border-radius:10px;*/
    padding: 0px;
    width: 80px;
    height: 80px;
}
table.table.card-table {
    margin-bottom: 0;
}
table.table.card-table > thead > tr > th {
    margin-left: 1px;
    font-size: 0.9em;
    background-color: #f0f4f5;
    border-bottom-color: #dfe6e8;
    color: #999;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom-width: 1px;
}
table.table.card-table > tbody > tr > td {
    border-top-color: #f0f4f5;
    color: #666;
}
.card-mini table.table.card-table > tbody > tr td, .card-mini table.table.card-table > thead > tr td {
    padding: 15px 30px;
}
.card-mini table.table.card-table > tbody > tr th, .card-mini table.table.card-table > thead > tr th {
    padding: 15px 30px;
}
.table-responsive {
    border: 0;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    table.table > tbody > tr td, table.table > tbody > tr th, table.table > thead > tr td, table.table > thead > tr th {
        padding: 15px 15px;
    }
    .card-mini table.table.card-table > tbody > tr td, .card-mini table.table.card-table > thead > tr td {
        padding: 15px 15px;
    }
    .card-mini table.table.card-table > tbody > tr th, .card-mini table.table.card-table > thead > tr th {
        padding: 15px 15px;
    }
}
.nav-tabs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-radius: 2px;
    margin-bottom: 30px;
}
.nav-tabs > li {
    border: 0;
    margin-bottom: -2px;
}
.nav-tabs > li a, .nav-tabs > li a:focus, .nav-tabs > li a:hover {
    font-size:15px;
    padding: 15px 30px;
    background-color: transparent;
    border: 0;
    color: #8d9293;
}
.nav-tabs > li.active a, .nav-tabs > li.active a:focus, .nav-tabs > li.active a:hover {
    border: 0;
    font-weight:600;
    background-color: #f7f7f7;
    border-radius: 1px;
    border-bottom: 4px solid #e91e63;
    color: #e91e63;
}
@media (max-width: 767px) {
    .nav-tabs {
        overflow-x: auto;
        overflow-y: hidden;
    }
    .nav-tabs > li a, .nav-tabs > li a:focus, .nav-tabs > li a:hover {
        padding: 15px;
    }
}
.step .nav-tabs {
    border-bottom: 0px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
    border-radius: 1px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
}
.step .nav-tabs > li {
    border-right: 0;
    z-index: 2;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
}
.step .nav-tabs > li[class^="col-"] {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
}
.step .nav-tabs > li > a, .step .nav-tabs > li uib-tab-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border: 0;
    padding: 2rem;
    padding-left: 0;
    z-index: 2;
    color: #18aa4a;
}
.step .nav-tabs > li > a .icon, .step .nav-tabs > li uib-tab-heading .icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2.5em;
    margin-right: 0.5em;
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: #39a2e9;
    color: #FFF;
}
.step .nav-tabs > li > a .heading, .step .nav-tabs > li uib-tab-heading .heading {
    -ms-flex: 1;
    flex: 1;
    text-align: left;
    overflow: hidden;
}
.step .nav-tabs > li > a .heading .title, .step .nav-tabs > li uib-tab-heading .heading .title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 1rem;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.step .nav-tabs > li > a .heading .description, .step .nav-tabs > li uib-tab-heading .heading .description {
    font-size: 0.8em;
    margin-bottom: 0.5rem;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.step .nav-tabs > li > a:hover, .step .nav-tabs > li uib-tab-heading:hover {
    border: 0;
    background-color: transparent;
}
.step .nav-tabs > li.active > a, .step .nav-tabs > li.active > a:focus, .step .nav-tabs > li.active > a:hover, .step .nav-tabs > li.active uib-tab-heading {
    background-color: transparent;
    border: 0;
    color: #18aa4a;
}
.step .nav-tabs > li.active > a:hover {
    cursor: pointer;
}
.step .nav-tabs > li.active ~ li > a, .step .nav-tabs > li.active ~ li > a:focus, .step .nav-tabs > li.active ~ li > a:hover, .step .nav-tabs > li.active ~ li uib-tab-heading {
    color: #8d9293;
}
.step .nav-tabs > li.active ~ li > a .icon, .step .nav-tabs > li.active ~ li > a:focus .icon, .step .nav-tabs > li.active ~ li > a:hover .icon, .step .nav-tabs > li.active ~ li uib-tab-heading .icon {
    background-color: #c8d1d3;
    color: #FFF;
}
.step .nav-tabs > li.active ~ li > a, .step .nav-tabs > li.active ~ li > a:focus, .step .nav-tabs > li.active ~ li > a:hover, .step .nav-tabs > li.active ~ li uib-tab-heading {
    color: #8d9293;
}
.step .nav-tabs > li.active ~ li:after {
    content: '';
    z-index: 1;
    position: absolute;
    display: block;
    height: 4px;
    border-radius: 0px;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    background-color: #dfe6e8;
}
.step .nav-tabs > li:last-child {
    border-top-right-radius: 1px;
    border-bottom-right-radius: 1px;
}
.step .nav-tabs > li:last-child:before, .step .nav-tabs > li:last-child:after {
    display: none;
}
.step .nav-tabs:after {
    content: '';
    z-index: 1;
    position: absolute;
    display: block;
    height: 4px;
    border-radius: 2px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    background-color: #39a2e9;
}
.step .tab-content > div {
    padding: 0;
}
@media (max-width: 767px) {
    .step .nav-tabs > li > a, .step .nav-tabs > li uib-tab-heading {
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
    }
    .step .nav-tabs > li > a .icon, .step .nav-tabs > li uib-tab-heading .icon {
        margin-right: 0;
    }
    .step .nav-tabs > li > a .heading, .step .nav-tabs > li uib-tab-heading .heading {
        display: none;
    }
}
.banner_ads_block{
    background:#f7f7f7;
    display:inline-block;
    margin-top:20px;
    margin-bottom:30px;
    min-height:290px;
    width:100%;
}
.banner_ad_item{
    background:#dcdcdc;
    text-align:center;
    padding:15px 10px;
    width:100%;
    position:relative;
    margin-bottom:20px;
}
.banner_ad_item label{
    font-size:16px !important;
    font-weight:500 !important;
    padding-top:0 !important;
}
.banner_ads_block .toggle_btn {
    margin-bottom: 0;
    margin-left: 5px;
    margin-top: -17px;
    display: block;
    float: right;
    position: absolute;
    right: 30px;
}
.mr_bottom20{
    margin-bottom:10px !important;
}
.interstital_ads_block{
    background:#f7f7f7;
    display:inline-block;
    margin-top:20px;
    margin-bottom:30px;
    min-height:290px;
    width:100%;
}
.interstital_ad_item{
    background:#dcdcdc;
    text-align:center;
    padding:15px 10px;
    width:100%;
    position:relative;
    margin-bottom:20px;
}
.interstital_ad_item label{
    font-size:16px !important;
    font-weight:500 !important;
    padding-top:0 !important;
}
.interstital_ad_item .toggle_btn {
    margin-bottom: 0;
    margin-left: 5px;
    margin-top: -17px;
    display: block;
    float: right;
    position: absolute;
    right: 30px;
}
.pricing-table {
    border-left: 1px solid #e7edee;
}
.pricing-table > .pricing-heading {
    border-bottom: 2px solid #39a2e9;
    padding: 20px;
    text-align: center;
}
.pricing-table > .pricing-heading > .title {
    background-color: rgba(41, 199, 95, 0.9);
    color: #FFF;
    width: auto;
    margin: 0 auto;
    border-radius: 3px;
    padding: 2px 5px;
    display: inline-block;
    font-size: 0.9em;
    font-weight: 400;
}
.pricing-table > .pricing-heading > .price > .title {
    font-size: 4em;
    text-transform: uppercase;
    font-weight: 200;
}
.pricing-table > .pricing-heading > .price > .title .sign {
    font-size: 0.3em;
    color: #8d9293;
}
.pricing-table > .pricing-heading > .price > .subtitle {
    margin-top: -10px;
    font-size: 0.8em;
    font-weight: 400;
}
.pricing-table > .pricing-body {
    padding: 20px;
    color: #666;
}
.pricing-table > .pricing-body ul.description {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-table > .pricing-body ul.description > li {
    padding: 15px 0px;
    text-align: center;
    margin: 0;
    border-bottom: 1px solid #e7edee;
}
.pricing-table > .pricing-body ul.description > li .icon {
    float: left;
    min-width: 25px;
    text-align: center;
    margin-right: 8px;
}
.pricing-table > .pricing-body ul.description > li:last-child {
    border-bottom: 0;
}
.pricing-table > .pricing-footer {
    border-top: 2px solid #e7edee;
    text-align: center;
    padding: 15px;
}
.pricing-table > .pricing-footer .btn-default {
    text-transform: uppercase;
    font-weight: 400;
    color: #666;
}
.pricing-table > .pricing-footer .btn-success {
    color: #FFF;
}
.pricing-table.highlight {
    background-color: #39a2e9;
}
.pricing-table.highlight > .pricing-heading {
    border-bottom: 2px solid #18aa4a;
    color: #FFF;
}
.pricing-table.highlight > .pricing-heading > .title {
    background-color: rgba(255, 255, 255, 0.9);
    color: #18aa4a;
}
.pricing-table.highlight > .pricing-heading > .price {
    color: #FFF;
}
.pricing-table.highlight > .pricing-heading > .price .sign {
    color: #FFF;
}
.pricing-table.highlight > .pricing-footer {
    border-top: 2px solid #18aa4a;
}
.pricing-table.highlight > .pricing-footer .btn-default {
    border-color: #18aa4a;
    color: #18aa4a;
}
.pricing-table.highlight > .pricing-body {
    color: #FFF;
}
.pricing-table.highlight > .pricing-body ul.description > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.pricing-table.highlight > .pricing-body ul.description > li:last-child {
    border-bottom: 0;
}
.panel {
    margin-bottom: 30px;
    border-radius: 3px;
    border-bottom-width: 1px;
    background-color: #FFF;
    border-color: #dfe6e8;
}
.panel .panel-heading {
    padding: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #e7edee;
}
.panel .panel-body {
    padding: 20px;
}
.panel.panel-primary {
    border-color: #42b4f2;
    background-color: #FFF;
}
.panel.panel-primary .panel-heading {
    background-color: #86cff7;
    border-bottom-color: #42b4f2;
    color: #043D5D;
}
.panel.panel-success {
    border-color: #9df0b9;
    background-color: #FFF;
}
.panel.panel-success .panel-heading {
    background-color: #bafed1;
    border-bottom-color: #9df0b9;
    color: #18aa4a;
}
.panel.panel-info {
    border-color: #93e5f3;
    background-color: #FFF;
}
.panel.panel-info .panel-heading {
    background-color: #c3f0f7;
    border-bottom-color: #93e5f3;
    color: #20a3b9;
}
.panel.panel-warning {
    border-color: #fbd490;
    background-color: #FFF;
}
.panel.panel-warning .panel-heading {
    background-color: #ffe5b6;
    border-bottom-color: #fbd490;
    color: #e9aa3a;
}
.panel.panel-danger {
    border-color: #f3b1ab;
    background-color: #FFF;
}
.panel.panel-danger .panel-heading {
    background-color: #fdc3bd;
    border-bottom-color: #f3b1ab;
    color: #d73727;
}
.dataTables_wrapper {
    border-radius: 2px;
    overflow: hidden;
    position: static !important;
}
.dataTables_wrapper .top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
    padding-right: 45px;
}
.dataTables_wrapper .top .dataTables_filter {
    width: 100%;
    -ms-flex: 1;
    flex: 1;
    margin-right: 10px;
}
.dataTables_wrapper .top .dataTables_filter label {
    width: 100%;
    display: block;
    font-weight: normal;
    margin-bottom: 0;
}
.dataTables_wrapper .top .dataTables_filter .form-control {
    width: 100%;
    min-width: 200px;
    margin-left: 0;
    color: #8d9293;
    margin-bottom: 0;
    padding: 10px 15px;
    height: 40px;
    border-radius: 20px;
    background-color: transparent;
}
.dataTables_wrapper .top .dataTables_length label {
    width: 100px;
    display: block;
    font-weight: normal;
    margin-bottom: 0;
}
.dataTables_wrapper .top .dataTables_length select {
    width: 100%;
    height: 40px;
}
.dataTables_wrapper .top .dataTables_length .select2 {
    width: 100px !important;
}
.dataTables_wrapper .top .dataTables_length .select2 span.select2-selection {
    border: 1px solid #c8d1d3;
    border-radius: 0;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    height: 43px;
    background-color: transparent;
}
.dataTables_wrapper .top .dataTables_length .select2 .select2-selection__rendered {
    color: #888;
    line-height: 43px;
    padding-left: 15px;
}
.dataTables_wrapper .top .dataTables_length .select2 .select2-selection__arrow {
    height: 46px;
    right: 5px;
}
.dataTables_wrapper .top .dataTables_length .select2 .select2-selection__single .select2-selection__arrow b {
    margin-top: 0;
    transform: translate(0, -50%);
}
.dataTables_wrapper .top::after, .dataTables_wrapper .bottom::after {
    content: '';
    position: relative;
    clear: both;
    display: block;
}
.dataTables_wrapper .bottom {
    border-top: 2px solid #dfe6e8;
    padding: 20px;
    font-size: 14px;
}
.dataTables_wrapper .bottom .dataTables_info {
    float: left;
    color: #8d9293;
}
.dataTables_wrapper .bottom .dataTables_paginate {
    float: right;
}
.dataTables_wrapper .bottom .dataTables_paginate .pagination {
    display: block;
}
.dataTables_wrapper table.dataTable {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.dataTables_wrapper table.dataTable > thead > tr > th {
    background-color: #FFF;
}
.loader-container {
    display: none;
}
.__loading {
    position: relative;
    overflow: hidden;
}
.__loading .loader-container {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1003;
    color: #8d9293;
}
.__loading .loader-container .icon {
    margin-bottom: 4px;
}
.__loading .loader-container .sk-wave {
    margin-top: 0;
    margin-bottom: 1rem;
}
.__loading .loader-container .sk-wave .sk-rect {
    background-color: #8d9293;
}
.__loading:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    border-radius: 1px;
}
div.section .section-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 1.2em;
    font-weight: 200;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: #8d9293;
    border-bottom: 1px solid #dfe6e8;
}
div.section .section-title .icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(141, 146, 147, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: rgba(141, 146, 147, 0.75);
    margin-right: 10px;
}
div.section .section-body {
    color: #666;
}
div.section .section-body.__indent {
    padding-left: 40px;
}
.page-heading {
    padding: 15px;
    padding-left: 26px;
    margin-bottom: 26px;
}
.page-heading .title {
    font-size: 1.3em;
}
@media (max-width: 767px) {
    div.section {
        margin-bottom: 15px;
    }
    div.section .section-title {
        margin-bottom: 15px;
    }
    div.section .section-body.__indent {
        padding-left: 0px;
    }
}
.ct-series-a .ct-bar, .ct-series-a .ct-line, .ct-series-a .ct-point {
    stroke: #39a2e9;
}
.ct-series-a .ct-area {
    fill: #39a2e9;
}
.ct-series-a .ct-slice-pie {
    fill: #39a2e9;
    stroke: #FFF;
    stroke-width: 3;
}
.ct-series-a .ct-slice-donut {
    stroke: #39a2e9;
}
.ct-series-b .ct-bar, .ct-series-b .ct-line, .ct-series-b .ct-point {
    stroke: #39c3da;
}
.ct-series-b .ct-area {
    fill: #39c3da;
}
.ct-series-b .ct-slice-pie {
    fill: #39c3da;
    stroke: #FFF;
    stroke-width: 3;
}
.ct-series-b .ct-slice-donut {
    stroke: #39c3da;
}
.ct-series-c .ct-bar, .ct-series-c .ct-line, .ct-series-c .ct-point {
    stroke: #666;
}
.ct-series-c .ct-area {
    fill: #666;
}
.ct-series-c .ct-slice-pie {
    fill: #666666;
    stroke: #FFF;
    stroke-width: 3;
}
.ct-series-c .ct-slice-donut {
    stroke: #666;
}
.ct-series-d .ct-bar, .ct-series-d .ct-line, .ct-series-d .ct-point {
    stroke: #8d9293;
}
.ct-series-d .ct-area {
    fill: #8d9293;
}
.ct-series-d .ct-slice-pie {
    fill: #8d9293;
    stroke: #FFF;
    stroke-width: 3;
}
.ct-series-d .ct-slice-donut {
    stroke: #8d9293;
}
.ct-series-e .ct-bar, .ct-series-e .ct-line, .ct-series-e .ct-point {
    stroke: #c8d1d3;
}
.ct-series-e .ct-area {
    fill: #c8d1d3;
}
.ct-series-e .ct-slice-pie {
    fill: #c8d1d3;
    stroke: #FFF;
    stroke-width: 3;
}
.ct-series-e .ct-slice-donut {
    stroke: #c8d1d3;
}
.ct-label {
    font-size: 0.85em;
}
.ct-chart-pie .ct-label {
    fill: #FFF;
    font-weight: 200;
    font-size: 1em;
}
.ct-chart-donut .ct-label {
    fill: #8d9293;
    font-weight: 200;
    font-size: 1em;
}
.ct-grid {
    stroke: rgba(0, 0, 0, 0.1);
    stroke-width: 0.5px;
    stroke-dasharray: 0;
}
.card-banner .ct-series-a .ct-bar, .card-banner .ct-series-a .ct-line, .card-banner .ct-series-a .ct-point {
    stroke: #FFF;
}
.card-banner .ct-series-a .ct-area {
    fill: #FFF;
}
.card-banner .ct-series-a .ct-slice-pie {
    fill: white;
    stroke: #FFF;
    stroke-width: 3;
}
.card-banner .ct-series-a .ct-slice-donut {
    stroke: #FFF;
}
.card-banner .ct-series-b .ct-bar, .card-banner .ct-series-b .ct-line, .card-banner .ct-series-b .ct-point {
    stroke: #FFF;
}
.card-banner .ct-series-b .ct-area {
    fill: #FFF;
}
.card-banner .ct-series-b .ct-slice-pie {
    fill: white;
    stroke: #FFF;
    stroke-width: 3;
}
.card-banner .ct-series-b .ct-slice-donut {
    stroke: #FFF;
}
.card-banner .ct-series-c .ct-bar, .card-banner .ct-series-c .ct-line, .card-banner .ct-series-c .ct-point {
    stroke: #FFF;
}
.card-banner .ct-series-c .ct-area {
    fill: #FFF;
}
.card-banner .ct-series-c .ct-slice-pie {
    fill: white;
    stroke: #FFF;
    stroke-width: 3;
}
.card-banner .ct-series-c .ct-slice-donut {
    stroke: #FFF;
}
.card-banner .ct-grid {
    stroke: rgba(255, 255, 255, 0.2);
}
.card-banner .ct-label {
    fill: #FFF !important;
    color: #FFF !important;
}
.chart-label {
    list-style: none;
    padding: 0;
    margin: 0;
}
.chart-label > li {
    margin-bottom: 5px;
    padding-left: 30px;
    height: 20px;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.chart-label > li:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.chart-label .ct-series-a:after {
    background-color: #39a2e9;
}
.chart-label .ct-series-b:after {
    background-color: #39c3da;
}
.chart-label .ct-series-c:after {
    background-color: #666;
}
.chart-label .ct-series-d:after {
    background-color: #8d9293;
}
.chart-label .ct-series-e:after {
    background-color: #c8d1d3;
}
.ct-chart-sale .ct-label {
    -ms-flex-pack: center;
    justify-content: center;
    transform: translate(-50%, 0);
    margin-top: 5px;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.6);
    fill: rgba(255, 255, 255, 0.6);
}
.ct-chart-sale .ct-series > text {
    color: rgba(255, 255, 255, 0.6);
}
.ct-chart-sale .ct-series > text:first-of-type {
    display: none;
}
.timeline {
    position: relative;
}
.timeline dl > dt.item {
    display: block;
    position: relative;
    width: 100%;
}
.timeline dl > dt.item .marker {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 50%;
    margin-left: -15px;
    background-color: #39a2e9;
    border-radius: 15px;
    margin-top: 15px;
    z-index: 1007;
    border: 4px solid #FFF;
    box-shadow: 0 1px 1px rgba(68, 68, 68, 0.05);
}
.timeline dl > dt.item .event {
    width: 50%;
    padding-left: 0px;
    padding-right: 40px;
    margin-bottom: 30px;
}
.timeline dl > dt.item .event .event-body {
    background-color: #FFF;
    border-radius: 2px;
    padding: 30px;
    font-size: 1em;
    font-weight: 200;
    box-shadow: 0 1px 2px rgba(68, 68, 68, 0.1);
}
.timeline dl > dt.item .event::before {
    content: '';
    display: block;
    position: absolute;
    margin-top: 16px;
    margin-left: -40px;
    left: 50%;
    top: 0;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #F5F5F5;
}
.timeline dl > dt.item .event::after {
    content: '';
    display: block;
    position: absolute;
    margin-top: 18px;
    margin-left: -40px;
    left: 50%;
    top: 0;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #FFF;
}
.timeline dl > dt.item.pos-right .event {
    float: right;
    width: 50%;
    padding-left: 40px;
    padding-right: 0px;
    margin-bottom: 30px;
}
.timeline dl > dt.item.pos-right .event .event-body {
    background-color: #FFF;
    border-radius: 2px;
    padding: 30px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.timeline dl > dt.item.pos-right .event::before {
    content: '';
    display: block;
    position: absolute;
    margin-top: 18px;
    margin-left: auto;
    margin-right: -40px;
    left: auto;
    right: 50%;
    top: 0;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 0px;
    border-right: 14px solid #F5F5F5;
}
.timeline dl > dt.item.pos-right .event::after {
    content: '';
    display: block;
    position: absolute;
    margin-top: 18px;
    margin-left: auto;
    margin-right: -40px;
    left: auto;
    right: 50%;
    top: 0;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 0px;
    border-right: 12px solid #FFF;
}
.timeline dl > dt.item::after {
    content: '';
    position: relative;
    display: block;
    clear: both;
}
.timeline dl > dt.heading > .title {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1009;
    width: 180px;
    background-color: #DDD;
    color: #555;
    padding: 4px 12px;
    text-align: center;
    margin-bottom: 30px;
}
.timeline dl::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -2px;
    background-color: #DDD;
    z-index: 1006;
    border-radius: 2px;
}
.timeline.pos-right dl > dt.item .marker {
    left: 0;
    margin-left: 0;
}
.timeline.pos-right dl > dt.item .event {
    float: right;
    width: 100%;
    padding-left: 50px;
    padding-right: 0px;
}
.timeline.pos-right dl > dt.item .event::before {
    content: '';
    display: block;
    position: absolute;
    margin-top: 18px;
    margin-left: auto;
    margin-right: -50px;
    left: auto;
    right: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 0px;
    border-right: 14px solid #F5F5F5;
}
.timeline.pos-right dl > dt.item .event::after {
    content: '';
    display: block;
    position: absolute;
    margin-top: 18px;
    margin-left: auto;
    margin-right: -50px;
    left: auto;
    right: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 0px;
    border-right: 12px solid #FFF;
}
.timeline.pos-right dl > dt.heading > .title {
    margin-left: 0px;
}
.timeline.pos-right dl::after {
    left: 15px;
}
.modal {
    z-index: 200000 !important;
}
.modal .modal-dialog {
    border-radius: 3px;
}
.modal .modal-dialog .modal-content {
    background-color: #FFF;
    border: 3px;
    font-size: 16px;
    box-shadow: 0 1px -1px #666;
}
.modal .modal-dialog .modal-content .modal-header {
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    background-color: #FFF;
    padding: 30px;
}
.modal .modal-dialog .modal-content .modal-body {
    padding: 30px;
}
.modal .modal-dialog .modal-content .modal-footer {
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    background-color: #e7edee;
}
.modal .modal-dialog .modal-content .modal-footer .btn {
    margin-bottom: 0;
}
.modal-backdrop {
    z-index: 199999 !important;
}
.simplio-example.__modal {
    display: block;
}
.simplio-example.__modal .modal {
    position: relative;
    display: block;
    left: auto;
    right: auto;
    top: auto;
    z-index: 1 !important;
}
.label {
    border-radius: 2px;
    font-weight: 400;
    font-size: 0.9em;
}
.label.label {
    background-color: #8d9293;
}
.label.label-default {
    background-color: #8d9293;
}
.label.label-primary {
    background-color: #39a2e9;
}
.label.label-success {
    background-color: #39a2e9;
}
.label.label-info {
    background-color: #39c3da;
}
.label.label-warning {
    background-color: #FFBC11;
}
.label.label-danger {
    background-color: #E74C3C;
}
pre {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: 0;
}
pre code.hljs {
    padding: 30px;
}
.list-group {
    position: relative;
}
.list-group > .list-group-item {
    padding: 12px 16px;
    margin-bottom: 2px;
    border-radius: 1px;
    position: relative;
}
.list-group > .list-group-item.list-group-item-primary {
    border: 1px solid #42b4f2;
    background-color: rgba(134, 207, 247, 0.5);
    color: #043D5D;
}
.list-group > .list-group-item.list-group-item-success {
    border: 1px solid #9df0b9;
    background-color: rgba(186, 254, 209, 0.5);
    color: #18aa4a;
}
.list-group > .list-group-item.list-group-item-info {
    border: 1px solid #93e5f3;
    background-color: rgba(195, 240, 247, 0.5);
    color: #20a3b9;
}
.list-group > .list-group-item.list-group-item-warning {
    border: 1px solid #fbd490;
    background-color: rgba(255, 229, 182, 0.5);
    color: #e9aa3a;
}
.list-group > .list-group-item.list-group-item-danger {
    border: 1px solid #f3b1ab;
    background-color: rgba(253, 195, 189, 0.5);
    color: #d73727;
}
.list-group.__timeline > .list-group-item {
    border-radius: 0;
    border: 0;
    padding-left: 40px;
    color: #18aa4a;
}
.list-group.__timeline > .list-group-item:after {
    content: '';
    z-index: 1;
    position: absolute;
    display: block;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 8px;
    top: 50%;
    transform: translate(0, -50%);
    background-color: #39a2e9;
}
.list-group.__timeline:after {
    content: '';
    z-index: 1;
    position: absolute;
    display: block;
    width: 4px;
    left: 16px;
    top: 0;
    height: 100%;
    border-radius: 2px;
    transform: translate(-50%, 0);
    background-color: rgba(41, 199, 95, 0.2);
}
ul.social {
    padding: 0;
    list-style: none;
    margin: 0;
}
ul.social > li {
    padding: 0;
}
ul.social > li > a {
    display: block;
    color: #DDD;
    line-height: 30px;
    vertical-align: middle;
}
ul.social > li > a .icon {
    width: 30px;
    height: 30px;
    line-height: 34px;
    margin-right: 6px;
    font-size: 22px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}
ul.social > li > a .title {
    font-size: 14px;
    vertical-align: middle;
}
ul.tags {
    list-style: none;
    overflow: auto;
    width: 100%;
    margin: 0;
    padding: 0;
}
ul.tags > li {
    float: left;
}
ul.tags > li > a {
    color: #666;
    display: block;
    border-radius: 2px;
    border: 1px solid #dfe6e8;
    padding: 4px 8px;
    margin: 5px;
    font-size: 12px;
}
ul.tags > li > a:hover {
    color: #FFF;
    border: 1px solid #39a2e9;
    background-color: #39a2e9;
    cursor: pointer;
}
ul.tags::after {
    position: relative;
    clear: both;
    display: block;
    content: '';
}
footer.app-footer {
    bottom: 0;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    float:left;
}
footer.app-footer .footer-copyright {
    margin-bottom: 20px;
    color: #8d9293;
    font-size: 0.9em;
}
@media (max-width: 767px) {
    footer.app-footer {
        padding-left: 15px;
        padding-right: 15px;
    }
    footer.app-footer .footer-copyright {
        margin-bottom: 15px;
    }
}
.autocomplete-suggestions {
    box-shadow: 0 1px 1px #dfe6e8;
    background-color: #FFF;
    padding: 0;
    z-index: 100010 !important;
    transform: translate(20px, 0);
}
.autocomplete-suggestions .autocomplete-suggestion {
    padding: 15px 30px;
    border-bottom: 1px solid #e7edee;
}
.autocomplete-suggestions .autocomplete-suggestion strong {
    color: #39a2e9;
}
.autocomplete-suggestions .autocomplete-suggestion:hover {
    background-color: #39a2e9;
    color: #FFF;
    cursor: pointer;
}
.autocomplete-suggestions .autocomplete-suggestion:hover strong {
    color: #FFF;
}
.btn-floating {
    position: fixed;
    top: auto;
    left: auto;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: auto;
    transform: translateZ(0);
    z-index: 101108;
}
.btn-floating .btn-bg {
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    right: auto;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #e91e63;
    box-shadow: 0 1px 3px #e91e63;
    z-index: 101108;
    transition: all 0.3s ease;
}
.btn-floating .btn-toggle {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
    box-shadow: none;
    z-index: 101110;
}
.btn-floating .btn-toggle i {
    font-size: 2em;
    color: #FFF;
}
.btn-floating .btn-toggle .help-text {
    display: none;
}
.btn-floating .toggle-content {
    position: absolute;
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    z-index: 101110;
    display: none;
}
.btn-floating .toggle-content ul.actions {
    list-style: none;
    padding: 0;
    margin: 0;
}
.btn-floating .toggle-content ul.actions > li {
    padding: 0;
}
.btn-floating .toggle-content ul.actions > li a {
    display: block;
    color: #FFF;
    text-decoration: none;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    font-size: 0.9em;
}
.btn-floating .toggle-content ul.actions > li a:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
}
.btn-floating.active .btn-bg {
    border-radius: 3px;
}
.btn-floating.active .btn-toggle {
    display: none;
}
.btn-floating.active .toggle-content {
    position: relative;
    display: block;
}
.thumbnail {
    padding: 4px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.thumbnail img {
    border-radius: 2px;
}
.thumbnail .caption {
    text-align: center;
}
.thumbnail .caption .title {
    margin-top: 10px;
    margin-bottom: 5px;
}
.thumbnail .caption .description {
    font-size: 14px;
}
.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.media .media-left {
    margin-right: 7.5px;
}
.media .media-left img {
    border-radius: 3px;
    max-width: 60px;
    height: auto;
}
.media.social-post {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.media.social-post .media-left {
    margin-right: 7.5px;
}
.media.social-post .media-left img {
    border-radius: 50%;
}
.media.social-post .media-body .media-heading {
    margin-bottom: 10px;
}
.media.social-post .media-body .media-heading .title {
    margin-bottom: 3px;
    margin-top: 0;
}
.media.social-post .media-body .media-heading .timeing {
    opacity: 0.4;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 0.9em;
}
.media.social-post .media-body .media-content {
    margin-bottom: 10px;
}
.media.social-post .media-body .media-content .attach {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.media.social-post .media-body .media-content .attach .thumbnail {
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 1px;
}
.media.social-post .media-body .media-action .btn {
    padding: 4px 0;
    margin-right: 10px;
    color: #8d9293;
    font-size: 0.9em;
}
.media.social-post .media-body .media-comment input {
    padding: 7.5px 15px;
}
/*===========Custom Css Start=============*/
.mrg_bottom20{
    margin-bottom:20px;
}
.mr_top0{
    margin-top:0 !important
}
.mrg_bottom{
    margin-bottom:30px;
}
.pagination_item_block {
    padding:25px 0 20px 0px;
}
.pagination_item_block nav {
    text-align: right
}
.btn-floating .btn-toggle {
    padding: 17px;
}
.btn-floating .btn-toggle:hover {
    padding: 19px;
}
.table-striped thead > tr th {
    padding: 14px 20px;
}
.cat_action_list {
    width: 25%;
}
.table-striped > tbody td .btn {
    padding: 10px 15px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 0;
}
.fileupload_block {
    border:1px solid #999;
    padding: 10px;
    margin-bottom: 15px;
    float: left;
    width: 100%;
    border-radius: 2px;
}
.fileupload_block #fileupload {
    float: left;
    margin-top: 7%;
}
.fileupload_img {
    margin-top: 0px;
    display: inline-block;
    float: left;
}
.fileupload_img img {
    width: 90px;
    height: 93px;
    display: inline-block;
}
.login-form .app-brand {
    color: #e91e63;
    font-weight: 500;
    font-size: 22px;
}
.login-form .form-header {
    margin-bottom:10px !important;
}
.login_title_lineitem {
    display: block;
    float: left;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
}
.login_title_lineitem .line_1 {
    background-color: #e91e63;
    display: inline-block;
    height: 2px;
    vertical-align: middle;
    width: 45px;
}
.login_title_lineitem {
    text-align: center;
}
.login-form .flipInX-1 i {
    color: #e91e63;
    font-size: 17px;
}
.login-form .flipInX-1 {
    display: inline-block;
    vertical-align: middle;
}
.login_title_lineitem .line_2 {
    background-color: #e91e63;
    display: inline-block;
    height: 2px;
    vertical-align: middle;
    width: 45px;
}
.page_title_block {
    width: 100%;
    float: left;
    display: block;
    border-bottom: 1px solid #dfe6e8;
}
.page_title {
    font-family: "Open Sans", sans-serif;
    font-size: 1.2em;
    font-weight: 500;
    color: #666666;
    padding: 34px 20px 34px 5px;
}
.section .select2 {
    margin-bottom: 15px;
    width: 100% !important;
}
.search_list {
    align-items: flex-start;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    padding: 25px 5px 25px 10px;
    flex: 1 1 0;
    width: auto;
    float: right;
    text-align: right;
    position: relative;
}
.search_block {
    position: relative;
    margin-right: 20px;
}
.search_list button {
    margin-bottom: 0;
}
.search_list button a {
    color: #ffffff;
}
.search_block .btn-search {
    background-color: transparent;
    border: medium none;
    color: #dfe6e8;
    font-size: 18px;
    height: 40px;
    margin-left: 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 1px;
    width: 40px;
}
.search_block .form-control {
    background-color: transparent;
    border-radius: 20px;
    color: #8d9293;
    height: 42px;
    font-weight: 500;
    margin-bottom: 0;
    margin-left: 0;
    min-width: 200px;
    padding: 10px 15px;
    width: 100%;
}
.add_btn_primary {
    float: left;
}
.add_btn_primary a {
    background-color: #e91e63;
    box-shadow: 0 2px 3px rgba(9, 80, 119, 0.3);
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border-radius: 3px;
    border-style: 1px solid;
    margin-bottom: 5px;
    transition: all 0.3s ease 0s;
    padding: 10px 30px;
    color: #ffffff;
}
.app-form .btn.btn-success {
    background-color: #e91e63;
    border-color: #ca1150;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    width: auto !important;
    padding: 10px 40px;
    margin-top: 10px;
}
.app-form .btn.btn-success:hover {
    background-color:#ca1150;
    border-color: #e91e63;
    box-shadow:0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 1311px) {
    .cat_action_list {
        width: auto;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .table-striped > tbody td .btn {
        margin-bottom: 10px;
        margin-left: 5px;
        margin-right: 5px;
        padding: 10px 15px;
        text-align: center;
        display: block;
    }
    .form-horizontal .control-label {
        margin-bottom: 10px;
    }
    .table-striped > tbody td .btn:last-child{
        margin-bottom: 0px;
    }
}
@media (max-width: 767px) {
    .mrg_bottom{
        margin-bottom:70px;
    }
    .search_list {
        align-items: flex-start;
        display: flex;
        flex: 1 1 0;
        flex-flow: row nowrap;
        float: right;
        justify-content: flex-start;
        padding: 10px 5px 10px 10px;
        position: relative;
        text-align: right;
        width: 100%;
    }
    .form-horizontal .control-label {
        margin-bottom: 10px;
    }
    footer.app-footer .footer-copyright {
        margin-bottom: 27px;
    }
}
@media (max-width: 639px) {
    .table-striped > tbody td .btn {
        margin-bottom: 10px;
        margin-left: 5px;
        margin-right: 5px;
        padding: 10px 15px;
        text-align: center;
        display: block;
    }
    .table-striped > tbody td .btn:last-child{
        margin-bottom: 0px;
    }
    table.table > tbody > tr td, table.table > tbody > tr th, table.table > thead > tr td, table.table > thead > tr th {
        padding: 15px;
        text-align: left;
        vertical-align: middle;
    }
    .btn-floating {
        bottom: 10px;
        right: 10px;
    }
}
@media (max-width: 479px) {
    .fileupload_img {
        margin-top: 20px;
    }
    .search_list {
        align-items: flex-start;
        display: inline-block;
        flex: 1 1 0;
        flex-flow: row nowrap;
        float: left;
        justify-content: flex-start;
        padding: 10px 5px 10px 5px;
        position: relative;
        text-align: right;
        width: 100%;
    }
    .search_block {
        margin-bottom: 20px;
        margin-right: 0;
        position: relative;
    }
    .add_btn_primary {
        float: none;
        text-align: center;
    }
    .table {
        display: block;
        float: left;
        margin-bottom: 20px;
        max-width: 100%;
        overflow: scroll;
        width: 100%;
    }
}


/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
    position: relative;
    cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
    position: absolute;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition:
            opacity 0.2s ease-in-out,
            visibility 0.2s ease-in-out,
            -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:
            opacity 0.2s ease-in-out,
            visibility 0.2s ease-in-out,
            -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:
            opacity 0.2s ease-in-out,
            visibility 0.2s ease-in-out,
            transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform:    translate3d(0, 0, 0);
    transform:         translate3d(0, 0, 0);
    pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
    z-index: 1001;
    border: 6px solid transparent;
    background: transparent;
    content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
    z-index: 1000;
    padding: 8px;
    width: 160px;
    background-color: #000;
    background-color: hsla(0, 0%, 20%, 0.9);
    color: #fff;
    content: attr(data-tooltip);
    font-size: 14px;
    line-height: 1.2;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
    bottom: 100%;
    left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: #000;
    border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
    margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
    -webkit-transform: translateY(-12px);
    -moz-transform:    translateY(-12px);
    transform:         translateY(-12px);
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
    right: 100%;
    bottom: 50%;
    left: auto;
}

.tooltip-left:before {
    margin-left: 0;
    margin-right: -12px;
    margin-bottom: 0;
    border-top-color: transparent;
    border-left-color: #000;
    border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
    -webkit-transform: translateX(-12px);
    -moz-transform:    translateX(-12px);
    transform:         translateX(-12px);
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
    top: 100%;
    bottom: auto;
    left: 50%;
}

.tooltip-bottom:before {
    margin-top: -12px;
    margin-bottom: 0;
    border-top-color: transparent;
    border-bottom-color: #000;
    border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
    -webkit-transform: translateY(12px);
    -moz-transform:    translateY(12px);
    transform:         translateY(12px);
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
    bottom: 50%;
    left: 100%;
}

.tooltip-right:before {
    margin-bottom: 0;
    margin-left: -12px;
    border-top-color: transparent;
    border-right-color: #000;
    border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
    -webkit-transform: translateX(12px);
    -moz-transform:    translateX(12px);
    transform:         translateX(12px);
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
    top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
    margin-left: 0;
    margin-bottom: -16px;
}

/*===========Custom Css End=============*/

.block_wallpaper{
    position:relative;
    margin-bottom:30px;
    box-shadow:0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.block_wallpaper::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background: -webkit-linear-gradient(top,rgba(255,0,0,0),rgba(32,32,32,0.95));
    background: -o-linear-gradient(bottom,rgba(255,0,0,0),rgba(32,32,32,0.95));
    background: -moz-linear-gradient(bottom,rgba(255,0,0,0),rgba(32,32,32,0.95));
    background: linear-gradient(to bottom,rgba(255,0,0,0),rgba(32,32,32,0.95));
    background: linear-gradient(to bottom,rgba(255,0,0,0),rgba(32,32,32,0.95));
    width: 100%;
    height: 50%;
    z-index: 1;
}
.add_wall_category img{
    width: 100%;
    height:200px !important;
}
.link_block{
    margin-top:20px;
    border:1px solid #999;
    padding:15px;
}
.or_link_item h2{
    font-size:28px;
    text-align:center;
    margin:5px 0 25px 0;
}
.block_wallpaper span img{
    width:100%;
    height:250px;
}
.block_wallpaper div img{
    width:100%;
    height:220px !important;
}
.block_wallpaper img{
    width:100%;
}
.wall_category_block{
    position:absolute;
    top:0;
    left:0;
    right:0;
    padding:0 15px;
    background:rgba(0, 0, 0, 0.4);
    color:#fff;
}
.wall_category_block h2{
    font-size:18px;
    color:#fff;
    font-weight:500;
    display:inline-block;
    margin:0;
    padding:15px 0;
}
.wall_category_block a{
    float: right;
    right: 0;
    background:#ffffff;
    color: #e91e63;
    font-size: 14px;
    width: 32px;
    height:32px;
    line-height:32px;
    margin-top:10px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    border-radius: 30px;
}
.wall_category_block a:hover{
    background:#e91e63;
    color:#ffffff
}
.wall_image_title{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:0 10px;
    color:#ffffff;
    z-index:999
}
.wall_image_title h2{
    font-size:18px;
    color:#fff;
    font-weight:500;
}
.wall_image_title h2 a{
    font-size:18px;
    color:#fff;
}
.wall_image_title h2 a span{
    font-size:14px;
    font-weight:400;
}
.wall_image_title h2 a:hover{
    color:#f9f9f9
}
.wall_image_title p{
    font-size:20px;
    color:#e8e8e8;
    font-weight:400
}
.wall_image_title ul{
    list-style-type:none;
    padding-left:0;
    padding-right:0;
    margin-top:20px;
}
.wall_image_title ul li{
    display: inline-block;
    padding: 0;
    margin: 0 4px;
}
.wall_image_title ul li:first-child{
    margin-left:0;
}
.wall_image_title ul li a{
    background: #fff;
    color: #e91e63;
    font-size: 14px;
    width: 32px;
    height:32px;
    line-height:32px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    border-radius: 30px;
}
.wall_image_title ul li a:hover{
    background:#e91e63;
    color:#ffffff;
}
a.cat_enable{
    background: #fff;
    color: #29c75f !important;
    font-size: 14px;
    width: 32px;
    height:32px;
    line-height:32px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    border-radius: 30px;
}
a.cat_enable:hover{
    background:#29c75f !important;
    color:#ffffff !important;
}
.tooltip {
    background-color: rgba(0,0,0,0.3);
    color: #fff;
    width:50px;
    border: 2px solid #f90;
}
.tooltip-inner {
    background-color: #FE980F;
    border-radius: 4px;
    color: #FFFFFF;
    max-width: 200px;
    padding: 3px 8px;
    text-align: center;
    text-decoration: none;
}
.tooltip.top .tooltip-arrow {
    border-top-color: #FE980F;
    border-width: 5px 5px 0;
    bottom: 0;
    left: 50%;
    margin-left: -5px;
}
/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
    z-index: 1001;
    border: 6px solid transparent;
    background: transparent;
    content: "";
}

/* Base styles for the tooltip's content area */
.personal_data_content .tooltip:after,
[data-tooltip]:after {
    z-index: 1000;
    padding: 4px;
    width:100px;
    background-color: #000;
    background-color: #e91e63;
    color: #ffffff;
    content: attr(data-tooltip);
    font-size: 12px;
    line-height:22px;
    font-weight: 400;
    top: -30px;
    left:45px;
    right: 0;
    border-radius:4px;
}
.tooltip, .lt_right_part:after,
[data-tooltip].lt_right_part:after{
    right:0;
    left:-215px
}
.tooltip:before,
[data-tooltip]:before {
    border-top: 9px solid #e91e63;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    content: "";
    display: inline-block;
    height: 0;
    left: 13px;
    position: absolute;
    top: 0px;
    width: 0;
}
.lbl {
    position: relative;
    display: block;
    height: 16px;
    width: 44px;
    background: #898989;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lbl:after {
    position: absolute;
    left: -2px;
    top: -5px;
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.05);
    content: '';
    transition: all 0.3s ease;
}
.lbl:active:after { transform: scale(1.15, 0.85); }
.cbx:checked ~ label { background: #e687a7; }
.cbx:checked ~ label:after {
    left: 20px;
    background: #e91e63;
}
.cbx:disabled ~ label {
    background: #d5d5d5;
    pointer-events: none;
}
.cbx:disabled ~ label:after { background: #bcbdbc; }
.container {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.toggle_btn {
    margin-bottom: 0;
    margin-left: 10px;
    margin-top: -12px;
    display: block;
    float: left;
    position: relative;
    top: 12px;
}
.toggle_btn a img{
    width:auto !important;
    height:auto !important;
}
.toggle_btn a{
    background:transparent !important;
}
.hidden { display: none; }
h1 {
    margin-bottom: 30px;
    color: #fff;
}
.timeline.timeline-simple {
    margin-bottom: 20px;
    padding: 0 0 0 0px;
    list-style-type: none;
    display: block;
    float: left;
    width: 100%;
}
.timeline.timeline-simple:before {
    left: 5%;
    background-color: none;
    width: 0px;
}
.timeline > li:before, .timeline > li:after {
    content: " ";
    display: table;
}
.timeline > li > .timeline-badge.danger {
    background-color: #f44336;
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(244, 67, 54, 0.4);
}
.timeline.timeline-simple > li > .timeline-badge {
    left: 5%;
}
.timeline > li > .timeline-badge {
    line-height: 48px;
}
.timeline > li > .timeline-badge {
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    line-height: 46px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -24px;
    z-index: 100;
    border-radius: 50%;
}
.timeline > li > .timeline-badge img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    border:1px solid #EEEEEE;
    background-color: #FFFFFF;
}
.timeline.timeline-simple > li > .timeline-panel {
    width: 86%;
}
.timeline > li > .timeline-panel {
    width: 45%;
    float: left;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    border-radius: 6px;
    color: rgba(0,0,0, 0.87);
    background: #fff;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}
.timeline > li > .timeline-panel:before {
    position: absolute;
    top: 26px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #e4e4e4;
    border-right: 0 solid #e4e4e4;
    border-bottom: 15px solid transparent;
    content: " ";
}
.timeline-heading {
    margin-bottom: 15px;
}
.label.label-danger {
    background-color: #f44336;
}
.label {
    border-radius: 12px;
    padding: 5px 12px;
    text-transform: uppercase;
    font-size: 10px;
}
.timeline-body > p, .timeline-body > ul {
    margin-bottom: 0;
}
.label.label-rose {
    background-color: #e91e63;
}
.timeline-heading i{
    font-size:20px;
    margin:0 4px;
}
.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}
.card {
    display: inline-block;
    position: relative;
    width: 100%;
    margin: 25px 0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    border-radius: 6px;
    color: rgba(0,0,0, 0.87);
    background: #fff;
}
.card .card-content {
    padding: 15px 20px;
    position: relative;
}
.card .card-header.card-header-icon + .card-content .card-title {
    padding-bottom: 15px;
}

.card .card-title {
    margin-top: 0;
    margin-bottom: 3px;
}
.card img {
    width: 100%;
    height: auto;
}
i.dtl_tag{
    background:red;
    color:#fff;
    padding:5px 7px;
    border-radius:30px
}
.thumbnail {
    border: 0 none;
    border-radius: 4px;
    padding: 0;
}
.check-label {
    height: 25px;
    display: inline-table;
    line-height: 25px;
    margin-left: 10px;
}
#ch_count{
    width: 10%;
}
#visa_cost3{
    width: 85%;
}
#doc_count{
    width: 10%;
}
#doc_cost{
    width: 85%;
}
#eoi_count{
    width: 10%;
}
#eoi_cost{
    width: 85%;
}
#reg_count{
    width: 10%;
}
#reg_cost{
    width: 85%;
}
#sp_count{
    width: 10%;
}
#sp_cost{
    width: 85%;
}
#part_count{
    width: 10%;
}
#part_cost{
    width: 85%;
}
#vt_count{
    width: 10%;
}
#vt_cost{
    width: 85%;
}
select{
    border-radius: 2px;
    padding: 14px 15px;
    height: auto;
    resize:vertical;
    font-size: 1em;
    line-height: auto;
    border: 1px solid #999;
    background-color: transparent;
    box-shadow: none;
    margin-bottom: 15px;

}
.txt-pink{
    color: #ca1150;
}
.txt-red{
    color: #851b10;
}
.img {
    width: 50%;
}
@media only screen and (max-width: 768px) {
    .img{
        width: 100%;
    }
}