.align-justify {
    text-align: justify
}

.no-resize {
    resize: none
}

.font-bold {
    font-weight: bold
}

.font-italic {
    font-style: italic
}

.font-underline {
    text-decoration: underline
}

.font-line-through {
    text-decoration: line-through
}

.font-overline {
    text-decoration: overline
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    from {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.waves-notransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important
}

.waves-button,
.waves-circle {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%)
}

.waves-button,
.waves-button:hover,
.waves-button:visited,
.waves-button-input {
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 0;
    outline: 0;
    color: inherit;
    background-color: transparent;
    font-size: 1em;
    line-height: 1em;
    text-align: center;
    text-decoration: none;
    z-index: 1
}

.waves-button {
    padding: .85em 1.1em;
    border-radius: .2em
}

.waves-button-input {
    margin: 0;
    padding: .85em 1.1em
}

.waves-input-wrapper {
    border-radius: .2em;
    vertical-align: bottom
}

.waves-input-wrapper.waves-button {
    padding: 0
}

.waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1
}

.waves-circle {
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%
}

.waves-float {
    -webkit-mask-image: none;
    -webkit-box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12);
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms
}

.waves-float:active {
    -webkit-box-shadow: 0 8px 20px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 20px 1px rgba(0, 0, 0, 0.3)
}

.waves-block {
    display: block
}

.slideDown {
    animation-name: slideDown;
    -webkit-animation-name: slideDown;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%)
    }

    50% {
        transform: translateY(8%)
    }

    65% {
        transform: translateY(-4%)
    }

    80% {
        transform: translateY(4%)
    }

    95% {
        transform: translateY(-2%)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%)
    }

    50% {
        -webkit-transform: translateY(8%)
    }

    65% {
        -webkit-transform: translateY(-4%)
    }

    80% {
        -webkit-transform: translateY(4%)
    }

    95% {
        -webkit-transform: translateY(-2%)
    }

    100% {
        -webkit-transform: translateY(0)
    }
}

.slideUp {
    animation-name: slideUp;
    -webkit-animation-name: slideUp;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important
}

@keyframes slideUp {
    0% {
        transform: translateY(100%)
    }

    50% {
        transform: translateY(-8%)
    }

    65% {
        transform: translateY(4%)
    }

    80% {
        transform: translateY(-4%)
    }

    95% {
        transform: translateY(2%)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%)
    }

    50% {
        -webkit-transform: translateY(-8%)
    }

    65% {
        -webkit-transform: translateY(4%)
    }

    80% {
        -webkit-transform: translateY(-4%)
    }

    95% {
        -webkit-transform: translateY(2%)
    }

    100% {
        -webkit-transform: translateY(0)
    }
}

.slideLeft {
    animation-name: slideLeft;
    -webkit-animation-name: slideLeft;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important
}

@keyframes slideLeft {
    0% {
        transform: translateX(150%)
    }

    50% {
        transform: translateX(-8%)
    }

    65% {
        transform: translateX(4%)
    }

    80% {
        transform: translateX(-4%)
    }

    95% {
        transform: translateX(2%)
    }

    100% {
        transform: translateX(0)
    }
}

@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(150%)
    }

    50% {
        -webkit-transform: translateX(-8%)
    }

    65% {
        -webkit-transform: translateX(4%)
    }

    80% {
        -webkit-transform: translateX(-4%)
    }

    95% {
        -webkit-transform: translateX(2%)
    }

    100% {
        -webkit-transform: translateX(0)
    }
}

.slideRight {
    animation-name: slideRight;
    -webkit-animation-name: slideRight;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important
}

@keyframes slideRight {
    0% {
        transform: translateX(-150%)
    }

    50% {
        transform: translateX(8%)
    }

    65% {
        transform: translateX(-4%)
    }

    80% {
        transform: translateX(4%)
    }

    95% {
        transform: translateX(-2%)
    }

    100% {
        transform: translateX(0)
    }
}

@-webkit-keyframes slideRight {
    0% {
        -webkit-transform: translateX(-150%)
    }

    50% {
        -webkit-transform: translateX(8%)
    }

    65% {
        -webkit-transform: translateX(-4%)
    }

    80% {
        -webkit-transform: translateX(4%)
    }

    95% {
        -webkit-transform: translateX(-2%)
    }

    100% {
        -webkit-transform: translateX(0)
    }
}

.slideExpandUp {
    animation-name: slideExpandUp;
    -webkit-animation-name: slideExpandUp;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease -out;
    visibility: visible !important
}

@keyframes slideExpandUp {
    0% {
        transform: translateY(100%) scaleX(0.5)
    }

    30% {
        transform: translateY(-8%) scaleX(0.5)
    }

    40% {
        transform: translateY(2%) scaleX(0.5)
    }

    50% {
        transform: translateY(0) scaleX(1.1)
    }

    60% {
        transform: translateY(0) scaleX(0.9)
    }

    70% {
        transform: translateY(0) scaleX(1.05)
    }

    80% {
        transform: translateY(0) scaleX(0.95)
    }

    90% {
        transform: translateY(0) scaleX(1.02)
    }

    100% {
        transform: translateY(0) scaleX(1)
    }
}

@-webkit-keyframes slideExpandUp {
    0% {
        -webkit-transform: translateY(100%) scaleX(0.5)
    }

    30% {
        -webkit-transform: translateY(-8%) scaleX(0.5)
    }

    40% {
        -webkit-transform: translateY(2%) scaleX(0.5)
    }

    50% {
        -webkit-transform: translateY(0) scaleX(1.1)
    }

    60% {
        -webkit-transform: translateY(0) scaleX(0.9)
    }

    70% {
        -webkit-transform: translateY(0) scaleX(1.05)
    }

    80% {
        -webkit-transform: translateY(0) scaleX(0.95)
    }

    90% {
        -webkit-transform: translateY(0) scaleX(1.02)
    }

    100% {
        -webkit-transform: translateY(0) scaleX(1)
    }
}

.expandUp {
    animation-name: expandUp;
    -webkit-animation-name: expandUp;
    animation-duration: .7s;
    -webkit-animation-duration: .7s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important
}

@keyframes expandUp {
    0% {
        transform: translateY(100%) scale(0.6) scaleY(0.5)
    }

    60% {
        transform: translateY(-7%) scaleY(1.12)
    }

    75% {
        transform: translateY(3%)
    }

    100% {
        transform: translateY(0) scale(1) scaleY(1)
    }
}

@-webkit-keyframes expandUp {
    0% {
        -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5)
    }

    60% {
        -webkit-transform: translateY(-7%) scaleY(1.12)
    }

    75% {
        -webkit-transform: translateY(3%)
    }

    100% {
        -webkit-transform: translateY(0) scale(1) scaleY(1)
    }
}

.fadeIn {
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important
}

@keyframes fadeIn {
    0% {
        transform: scale(0);
        opacity: .0
    }

    60% {
        transform: scale(1.1)
    }

    80% {
        transform: scale(0.9);
        opacity: 1
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        -webkit-transform: scale(0);
        opacity: .0
    }

    60% {
        -webkit-transform: scale(1.1)
    }

    80% {
        -webkit-transform: scale(0.9);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 1
    }
}

.expandOpen {
    animation-name: expandOpen;
    -webkit-animation-name: expandOpen;
    animation-duration: 1.2s;
    -webkit-animation-duration: 1.2s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important
}

@keyframes expandOpen {
    0% {
        transform: scale(1.8)
    }

    50% {
        transform: scale(0.95)
    }

    80% {
        transform: scale(1.05)
    }

    90% {
        transform: scale(0.98)
    }

    100% {
        transform: scale(1)
    }
}

@-webkit-keyframes expandOpen {
    0% {
        -webkit-transform: scale(1.8)
    }

    50% {
        -webkit-transform: scale(0.95)
    }

    80% {
        -webkit-transform: scale(1.05)
    }

    90% {
        -webkit-transform: scale(0.98)
    }

    100% {
        -webkit-transform: scale(1)
    }
}

.bigEntrance {
    animation-name: bigEntrance;
    -webkit-animation-name: bigEntrance;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important
}

@keyframes bigEntrance {
    0% {
        transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
        opacity: .2
    }

    30% {
        transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
        opacity: 1
    }

    45% {
        transform: scale(0.98) rotate(1deg) translateX(0) translateY(0);
        opacity: 1
    }

    60% {
        transform: scale(1.01) rotate(-1deg) translateX(0) translateY(0);
        opacity: 1
    }

    75% {
        transform: scale(0.99) rotate(1deg) translateX(0) translateY(0);
        opacity: 1
    }

    90% {
        transform: scale(1.01) rotate(0) translateX(0) translateY(0);
        opacity: 1
    }

    100% {
        transform: scale(1) rotate(0) translateX(0) translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes bigEntrance {
    0% {
        -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
        opacity: .2
    }

    30% {
        -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
        opacity: 1
    }

    45% {
        -webkit-transform: scale(0.98) rotate(1deg) translateX(0) translateY(0);
        opacity: 1
    }

    60% {
        -webkit-transform: scale(1.01) rotate(-1deg) translateX(0) translateY(0);
        opacity: 1
    }

    75% {
        -webkit-transform: scale(0.99) rotate(1deg) translateX(0) translateY(0);
        opacity: 1
    }

    90% {
        -webkit-transform: scale(1.01) rotate(0) translateX(0) translateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1) rotate(0) translateX(0) translateY(0);
        opacity: 1
    }
}

.hatch {
    animation-name: hatch;
    -webkit-animation-name: hatch;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    visibility: visible !important
}

@keyframes hatch {
    0% {
        transform: rotate(0) scaleY(0.6)
    }

    20% {
        transform: rotate(-2deg) scaleY(1.05)
    }

    35% {
        transform: rotate(2deg) scaleY(1)
    }

    50% {
        transform: rotate(-2deg)
    }

    65% {
        transform: rotate(1deg)
    }

    80% {
        transform: rotate(-1deg)
    }

    100% {
        transform: rotate(0)
    }
}

@-webkit-keyframes hatch {
    0% {
        -webkit-transform: rotate(0) scaleY(0.6)
    }

    20% {
        -webkit-transform: rotate(-2deg) scaleY(1.05)
    }

    35% {
        -webkit-transform: rotate(2deg) scaleY(1)
    }

    50% {
        -webkit-transform: rotate(-2deg)
    }

    65% {
        -webkit-transform: rotate(1deg)
    }

    80% {
        -webkit-transform: rotate(-1deg)
    }

    100% {
        -webkit-transform: rotate(0)
    }
}

.bounce {
    animation-name: bounce;
    -webkit-animation-name: bounce;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%
}

@keyframes bounce {
    0% {
        transform: translateY(0) scaleY(0.6)
    }

    60% {
        transform: translateY(-100%) scaleY(1.1)
    }

    70% {
        transform: translateY(0) scaleY(0.95) scaleX(1.05)
    }

    80% {
        transform: translateY(0) scaleY(1.05) scaleX(1)
    }

    90% {
        transform: translateY(0) scaleY(0.95) scaleX(1)
    }

    100% {
        transform: translateY(0) scaleY(1) scaleX(1)
    }
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0) scaleY(0.6)
    }

    60% {
        -webkit-transform: translateY(-100%) scaleY(1.1)
    }

    70% {
        -webkit-transform: translateY(0) scaleY(0.95) scaleX(1.05)
    }

    80% {
        -webkit-transform: translateY(0) scaleY(1.05) scaleX(1)
    }

    90% {
        -webkit-transform: translateY(0) scaleY(0.95) scaleX(1)
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1)
    }
}

.pulse {
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: .7
    }

    50% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(0.9);
        opacity: .7
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        opacity: .7
    }

    50% {
        -webkit-transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(0.95);
        opacity: .7
    }
}

.floating {
    animation-name: floating;
    -webkit-animation-name: floating;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}

@keyframes floating {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8%)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(8%)
    }

    100% {
        -webkit-transform: translateY(0)
    }
}

.tossing {
    animation-name: tossing;
    -webkit-animation-name: tossing;
    animation-duration: 2.5s;
    -webkit-animation-duration: 2.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}

@keyframes tossing {
    0% {
        transform: rotate(-4deg)
    }

    50% {
        transform: rotate(4deg)
    }

    100% {
        transform: rotate(-4deg)
    }
}

@-webkit-keyframes tossing {
    0% {
        -webkit-transform: rotate(-4deg)
    }

    50% {
        -webkit-transform: rotate(4deg)
    }

    100% {
        -webkit-transform: rotate(-4deg)
    }
}

.pullUp {
    animation-name: pullUp;
    -webkit-animation-name: pullUp;
    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%
}

@keyframes pullUp {
    0% {
        transform: scaleY(0.1)
    }

    40% {
        transform: scaleY(1.02)
    }

    60% {
        transform: scaleY(0.98)
    }

    80% {
        transform: scaleY(1.01)
    }

    100% {
        transform: scaleY(0.98)
    }

    80% {
        transform: scaleY(1.01)
    }

    100% {
        transform: scaleY(1)
    }
}

@-webkit-keyframes pullUp {
    0% {
        -webkit-transform: scaleY(0.1)
    }

    40% {
        -webkit-transform: scaleY(1.02)
    }

    60% {
        -webkit-transform: scaleY(0.98)
    }

    80% {
        -webkit-transform: scaleY(1.01)
    }

    100% {
        -webkit-transform: scaleY(0.98)
    }

    80% {
        -webkit-transform: scaleY(1.01)
    }

    100% {
        -webkit-transform: scaleY(1)
    }
}

.pullDown {
    animation-name: pullDown;
    -webkit-animation-name: pullDown;
    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -webkit-transform-origin: 50% 0
}

@keyframes pullDown {
    0% {
        transform: scaleY(0.1)
    }

    40% {
        transform: scaleY(1.02)
    }

    60% {
        transform: scaleY(0.98)
    }

    80% {
        transform: scaleY(1.01)
    }

    100% {
        transform: scaleY(0.98)
    }

    80% {
        transform: scaleY(1.01)
    }

    100% {
        transform: scaleY(1)
    }
}

@-webkit-keyframes pullDown {
    0% {
        -webkit-transform: scaleY(0.1)
    }

    40% {
        -webkit-transform: scaleY(1.02)
    }

    60% {
        -webkit-transform: scaleY(0.98)
    }

    80% {
        -webkit-transform: scaleY(1.01)
    }

    100% {
        -webkit-transform: scaleY(0.98)
    }

    80% {
        -webkit-transform: scaleY(1.01)
    }

    100% {
        -webkit-transform: scaleY(1)
    }
}

.stretchLeft {
    animation-name: stretchLeft;
    -webkit-animation-name: stretchLeft;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    -webkit-transform-origin: 100% 0
}

@keyframes stretchLeft {
    0% {
        transform: scaleX(0.3)
    }

    40% {
        transform: scaleX(1.02)
    }

    60% {
        transform: scaleX(0.98)
    }

    80% {
        transform: scaleX(1.01)
    }

    100% {
        transform: scaleX(0.98)
    }

    80% {
        transform: scaleX(1.01)
    }

    100% {
        transform: scaleX(1)
    }
}

@-webkit-keyframes stretchLeft {
    0% {
        -webkit-transform: scaleX(0.3)
    }

    40% {
        -webkit-transform: scaleX(1.02)
    }

    60% {
        -webkit-transform: scaleX(0.98)
    }

    80% {
        -webkit-transform: scaleX(1.01)
    }

    100% {
        -webkit-transform: scaleX(0.98)
    }

    80% {
        -webkit-transform: scaleX(1.01)
    }

    100% {
        -webkit-transform: scaleX(1)
    }
}

.stretchRight {
    animation-name: stretchRight;
    -webkit-animation-name: stretchRight;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0
}

@keyframes stretchRight {
    0% {
        transform: scaleX(0.3)
    }

    40% {
        transform: scaleX(1.02)
    }

    60% {
        transform: scaleX(0.98)
    }

    80% {
        transform: scaleX(1.01)
    }

    100% {
        transform: scaleX(0.98)
    }

    80% {
        transform: scaleX(1.01)
    }

    100% {
        transform: scaleX(1)
    }
}

@-webkit-keyframes stretchRight {
    0% {
        -webkit-transform: scaleX(0.3)
    }

    40% {
        -webkit-transform: scaleX(1.02)
    }

    60% {
        -webkit-transform: scaleX(0.98)
    }

    80% {
        -webkit-transform: scaleX(1.01)
    }

    100% {
        -webkit-transform: scaleX(0.98)
    }

    80% {
        -webkit-transform: scaleX(1.01)
    }

    100% {
        -webkit-transform: scaleX(1)
    }
}

.demo-button-sizes .btn {
    margin-bottom: 5px
}

.icon-button-demo button {
    margin-right: 5px;
    margin-bottom: 12px
}

.icon-and-text-button-demo button {
    margin-right: 5px;
    margin-bottom: 12px;
    width: 16.66666666666667%
}

.button-demo ul {
    padding-left: 0
}

.button-demo ul li {
    list-style: none;
    padding-left: 0;
    display: inline-block;
    margin-right: 7px
}

.button-demo ul li .btn {
    display: block;
    min-width: 175px
}

.button-demo .btn {
    margin-right: 8px;
    margin-bottom: 13px;
    min-width: 120px
}

.demo-button-groups .btn-group {
    margin-right: 10px;
    margin-bottom: 10px
}

.demo-button-toolbar .btn-toolbar {
    float: left;
    margin-right: 25px;
    margin-bottom: 10px
}

.demo-button-toolbar .btn-toolbar .btn-group {
    margin-left: 5px
}

.demo-button-nesting > .btn-group {
    margin-right: 15px
}

.demo-single-button-dropdowns > .btn-group {
    margin-right: 10px
}

.demo-splite-button-dropdowns > .btn-group {
    margin-right: 10px
}

.demo-dropup .dropup {
    margin-right: 10px
}

.demo-checkbox label,
.demo-radio-button label {
    min-width: 150px
}

.demo-knob-chart div {
    margin-right: 15px
}

.demo-switch .switch {
    display: inline-block;
    min-width: 170px
}

.demo-switch .demo-switch-title {
    min-width: 95px;
    display: inline-block
}

.demo-color-box {
    padding: 15px 0;
    text-align: center;
    margin-bottom: 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px
}

.demo-color-box .color-name {
    font-size: 16px;
    margin-bottom: 5px
}

.demo-color-box .color-code,
.demo-color-box .color-class-name {
    font-size: 13px
}

.demo-image-copyright {
    text-align: right;
    font-style: italic;
    font-size: 12px;
    color: #777;
    margin: 5px 0 10px 0
}

.demo-image-copyright a {
    font-weight: bold;
    color: #555 !important
}

.demo-tagsinput-area {
    margin-bottom: 0 !important
}

.demo-tagsinput-area.form-group .form-line:after {
    border-bottom: 0
}

.demo-icon-container .demo-google-material-icon {
    margin-bottom: 5px;
    text-align: left
}

.demo-icon-container .demo-google-material-icon .icon-name {
    position: relative;
    top: -8px;
    left: 7px
}

.demo-icon-container .demo-google-material-icon .material-icons {
    width: 24px
}

.demo-preloader .preloader {
    margin-right: 10px
}

.irs-demo {
    margin-bottom: 40px
}

.irs-demo .irs {
    margin-top: 15px
}

.right-sidebar .nav-tabs + .tab-content {
    padding: 0
}

.right-sidebar p {
    margin: 20px 15px 15px 15px;
    font-weight: bold;
    text-align: center
}

.right-sidebar #settings .setting-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px
}

.right-sidebar #settings .setting-list li {
    padding: 15px;
    position: relative;
    border-top: 1px solid #eee
}

.right-sidebar #settings .setting-list li .switch {
    position: absolute;
    top: 15px;
    left: 5px
}

.right-sidebar .progress {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    height: 7px;
    margin: 10px 0 0 0
}

.right-sidebar .choose-theme li {
    position: relative;
    cursor: pointer;
    display: inline-block
}

.demo-choose-skin,
.demo-choose-logoheader {
    list-style: none;
    padding-left: 0;
    overflow-y: hidden
}

.demo-choose-skin li,
.demo-choose-logoheader li {
    padding: 10px 7px 4px 0;
    position: relative;
    cursor: pointer;
    float: right
}

.demo-choose-skin li.actived:after,
.demo-choose-logoheader li.actived:after {
    font-family: 'Material Icons';
    position: absolute;
    top: 10px;
    right: 10px;
    content: '\E876';
    font-size: 18px;
    color: #ece6e6
}

.demo-choose-skin li div,
.demo-choose-logoheader li div {
    width: 24px;
    height: 24px;
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px
}

.demo-choose-skin li span,
.demo-choose-logoheader li span {
    position: relative;
    bottom: 7px;
    left: 5px
}

.demo-choose-skin .white-theme,
.demo-choose-logoheader .white-theme {
    background-color: #fff
}

.demo-choose-skin .black-theme,
.demo-choose-logoheader .black-theme {
    background-color: #3a3f51
}

.demo-choose-skin .purple-theme,
.demo-choose-logoheader .purple-theme {
    background-color: #909de4
}

.demo-choose-skin .blue-theme,
.demo-choose-logoheader .blue-theme {
    background-color: #03a9f3
}

.demo-choose-skin .cyan-theme,
.demo-choose-logoheader .cyan-theme {
    background-color: #01d8da
}

.demo-choose-skin .green-theme,
.demo-choose-logoheader .green-theme {
    background-color: #57d68f
}

.demo-choose-skin .orange-theme,
.demo-choose-logoheader .orange-theme {
    background-color: #ffb463
}

.demo-choose-skin .red,
.demo-choose-logoheader .red {
    background-color: #f44336
}

.demo-choose-skin .pink,
.demo-choose-logoheader .pink {
    background-color: #e91e63
}

.demo-choose-skin .purple,
.demo-choose-logoheader .purple {
    background-color: #9c27b0
}

.demo-choose-skin .deep-purple,
.demo-choose-logoheader .deep-purple {
    background-color: #673ab7
}

.demo-choose-skin .indigo,
.demo-choose-logoheader .indigo {
    background-color: #3f51b5
}

.demo-choose-skin .blue,
.demo-choose-logoheader .blue {
    background-color: #2196f3
}

.demo-choose-skin .light-blue,
.demo-choose-logoheader .light-blue {
    background-color: #03a9f4
}

.demo-choose-skin .cyan,
.demo-choose-logoheader .cyan {
    background-color: #00bcd4
}

.demo-choose-skin .teal,
.demo-choose-logoheader .teal {
    background-color: #009688
}

.demo-choose-skin .green,
.demo-choose-logoheader .green {
    background-color: #4caf50
}

.demo-choose-skin .light-green,
.demo-choose-logoheader .light-green {
    background-color: #8bc34a
}

.demo-choose-skin .lime,
.demo-choose-logoheader .lime {
    background-color: #cddc39
}

.demo-choose-skin .yellow,
.demo-choose-logoheader .yellow {
    background-color: #ffe821
}

.demo-choose-skin .amber,
.demo-choose-logoheader .amber {
    background-color: #ffc107
}

.demo-choose-skin .orange,
.demo-choose-logoheader .orange {
    background-color: #ff9800
}

.demo-choose-skin .deep-orange,
.demo-choose-logoheader .deep-orange {
    background-color: #ff5722
}

.demo-choose-skin .brown,
.demo-choose-logoheader .brown {
    background-color: #795548
}

.demo-choose-skin .grey,
.demo-choose-logoheader .grey {
    background-color: #9e9e9e
}

.demo-choose-skin .blue-grey,
.demo-choose-logoheader .blue-grey {
    background-color: #607d8b
}

.demo-choose-skin .black,
.demo-choose-logoheader .black {
    background-color: #000
}

.demo-choose-skin .white,
.demo-choose-logoheader .white {
    background-color: #fff
}

.demo-choose-skin .dark-gray,
.demo-choose-logoheader .dark-gray {
    background-color: #888
}

.white-theme-border {
    border: 1px solid #888
}

.rightSetting {
    padding: 20px 25px 0 25px
}

.rightSetting p {
    font-weight: bold;
    margin: 0;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    text-align: right
}

.btn-sidebar-light,
.btn-theme-light {
    background: 0 0 !important;
    color: #888 !important;
    border: 1px solid #888 !important;
    margin: 10px
}

body,
html {
    background-color: #f1f2f7;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
    font-size: 13px
	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin: 0
}

h1 {
    font-size: 2.5rem
}

h2 {
    font-size: 2rem
}

h3 {
    font-size: 1.75rem
}

h4 {
    font-size: 1.50rem
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}



img {
    max-width: 100%
}

.row {
    margin-bottom: 0 !important
}

.no-animate {
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important
}

section.content {
    overflow: hidden;
    margin: 70px 260px 0 15px;
    -moz-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s
}

section.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px
}

.horizontal-layout section.content {
    margin: 170px 15px 0 15px;
    float: left;
    width: calc(100% - 30px)
}

.pull-left {
    float: right !important
}

.pull-right {
    float: left !important
}

.jqvmap-zoomin,
.jqvmap-zoomout {
    width: 15px;
    height: 15px
}

table .checkbox [type="checkbox"] + label {
    margin: 0;
    height: 20px;
    padding-left: 20px;
    vertical-align: middle
}

.loading-img-spin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -60px 0 20px -20px;
    -webkit-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite
}

.shadow-style {
    -webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15)
}

.review-img {
    padding-left: 20px;
    padding-top: 5px
}

.review-img img {
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2)
}

.horizontal-layout .sidebar,
.horizontal-layout .nav-left-menu {
    display: none
}

.bootstrap-notify-container {
    max-width: 320px;
    text-align: center
}

.map iframe {
    width: 100%
}

.jqvmap-label {
    position: absolute;
    display: none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #eee;
    color: black;
    font-size: 14px;
    padding: 10px;
    pointer-events: none
}


.logo-black .navbar-toggle,
.logo-black .bars:before,
.logo-black .bars:after {
    color: #fff !important
}

.light .nav > li > a {
    color: #f8f8f8
}

.border-apply {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important
}

@media screen and (max-width: 1169px) {
    .horizontal-layout .sidebar {
        display: block
    }

    .horizontal-layout .top-sidebar {
        display: none
    }

    .horizontal-layout section.content {
        margin-top: 100px
    }
}

.font-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    transition: all .2s
}

.font-icon .icon-preview {
    font-size: 1.8rem;
    margin-right: 10px;
    line-height: 1;
    color: #333439
}

@media screen and (min-width: 1400px) {
    .boxed-layout .container {
        width: 1370px;
        max-width: 100%
    }
}

@media (max-width: 1169px) {


    section.content {
        margin: 83px 15px 0 0
    }

    .search-box {
        margin-left: 25px
    }
}

@media (max-width: 799px) {
    .navbar .search-box {
        margin-left: 20px
    }

    .navbar .nav > li > a {
        padding: 10px 10px
    }
}

@media (min-width: 768px) {
    .navbar-header {
        float: right
    }

    .navbar-toggle {
        display: none
    }

    .navbar-nav {
        float: right;
        margin: 0
    }

    .navbar-nav > li {
        float: left
    }

    .navbar-nav > li > a {
        padding-top: 15px;
        padding-bottom: 15px
    }

    .container > .navbar-header {
        margin-right: 0;
        margin-left: 0
    }



    .container-fluid > .navbar-header {
        margin-right: 0;
        margin-left: 0
    }


    .navbar > .container .navbar-brand {
        margin-left: -15px
    }

    .navbar > .container-fluid .navbar-brand {
        margin-right: -15px
    }
}

.container > .navbar-header {
    margin-right: -15px;
    margin-left: -15px
}


.container-fluid > .navbar-header {
    margin-right: -15px;
    margin-left: -15px
}

@media (max-width: 767px) {
    .navbar {
        height: auto
    }

    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-right: 30px;
        width: 88%;
        margin-left: 0
    }

    .navbar .navbar-toggle {
        float: right
    }

    .navbar .nav-left-menu {
        display: none
    }

    .navbar .navbar-right .fullscreen {
        display: none
    }

    .navbar .navbar-header {
        display: inline-block;
        margin-bottom: -25px;
        width: calc(100% + 30px)
    }

    .navbar .nav > li {
        display: inline-block
    }

    .navbar .nav > li > a {
        padding: 13px 15px 8px 15px
    }

    .navbar .nav > li > a.js-right-sidebar {
        padding: 9px 8px 8px 15px
    }

    .navbar .nav .user_profile .dropdown-toggle {
        padding: 7px 0 9px 10px
    }

    .navbar .navbar-nav {
        margin-bottom: 1px;
        margin-left: -7px
    }

    .navbar .navbar-nav .open .dropdown-menu {
        background-color: #fff;
        position: absolute
    }

    .navbar .dropdown-menu {
        margin-right: -50px
    }

    .navbar .js-right-sidebar {
        margin-top: 15px
    }

    .dt-buttons {
        float: none !important;
        text-align: center;
        margin-bottom: 15px
    }


    .rtl .navbar .navbar-toggle {
        float: left;
        margin-left: 15px;
        margin-right: 0
    }

    .rtl .navbar .navbar-header {
    }

    section.content,
    body.ls-closed section.content {
        margin-right: 0;
        margin-left: 0
    }
}

@media (max-width: 600px) {

    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        width: 86%
    }

    .navbar > .container .navbar-toggle,
    .navbar > .container-fluid .navbar-toggle {
        margin-top: -4px
    }

    .ls-closed .bars:after,
    .ls-closed .bars:before {
        top: 3px
    }
}

@media (max-width: 500px) {
    .navbar-nav.nav .dropdown-menu {
        width: 245px;
        left: -80px
    }

    .navbar-nav.nav .dropdown-menu::before {
        left: 95px
    }

    .navbar-nav.nav .dropdown-menu::after {
        left: 96px
    }

    .navbar-nav.nav .user_profile .dropdown-menu::before {
        left: 19px
    }

    .navbar-nav.nav .user_profile .dropdown-menu::after {
        left: 20px
    }

    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-right: 28px;
        width: 84%
    }

    .breadcrumb-chart {
        margin: 0 0 0 20px
    }

    .search-box {
        display: none
    }
}

@media (max-width: 420px) {

    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        width: 79%
    }
}

@media (max-width: 350px) {
    .navbar .nav > li > a {
        padding: 13px 10px 8px 10px
    }

    .navbar .nav > li > a.js-right-sidebar {
        padding: 9px 10px 8px 10px
    }

    .navbar .nav .user_profile .dropdown-toggle {
        padding: 7px 10px 9px 0
    }

    .navbar > .container-fluid .navbar-brand {
        margin-left: 25px
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: 20px
    }
}

@media (min-width: 992px) and (max-width: 1169px) {

    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: 20px
    }
}

.bootstrap-select .bs-searchbox .form-control,
.bootstrap-select .bs-actionsbox .form-control,
.bootstrap-select .bs-donebutton .form-control {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    border: 0;
    margin-left: 30px
}

.bootstrap-select {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid #ada9a9 !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.bootstrap-select .dropdown-toggle:focus {
    outline: none !important
}

.bootstrap-select .dropdown-toggle:active {
    outline: none !important
}

.bootstrap-select .bs-placeholder {
    margin-left: -25px
}

.bootstrap-select .bs-searchbox {
    padding: 0 0 5px 0;
    border-bottom: 1px solid #e9e9e9;
    position: relative
}

.bootstrap-select .bs-searchbox:after {
    content: "";
    font-family: Material Icons;
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 25px
}

.bootstrap-select .bs-actionsbox {
    padding: 0 0 5px 0;
    border-bottom: 1px solid #e9e9e9
}

.bootstrap-select .bs-donebutton {
    padding: 0 0 5px 0;
    border-bottom: 1px solid #e9e9e9
}

.bootstrap-select .dropdown-menu .notify {
    background-color: #f44336 !important;
    color: #fff !important;
    border: none !important
}

.bootstrap-select .dropdown-menu li.selected a {
    background-color: #eee !important;
    color: #555 !important
}

.bootstrap-select .dropdown-menu .active a {
    background-color: transparent;
    color: #333 !important
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    margin-top: 9px
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    right: -50px
}

.bootstrap-select.btn-group .filter-option {
    margin-left: -25px !important;
    text-transform: none
}

.bootstrap-select ul.dropdown-menu {
    margin-top: 0 !important
}

.bootstrap-select .dropdown-toggle {
    display: none
}

.dropdown-toggle:after {
    display: none
}

.select-wrapper .dropdown-trigger {
    border-bottom: none !important
}

.select-wrapper input.select-dropdown {
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #9e9e9e !important;
    outline: 0;
    height: 2rem;
    line-height: 3rem;
    width: 100%;
    font-size: 13px;
    margin: 0 0 8px 0;
    padding: 0;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1
}

.breadcrumb {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    background-color: transparent;
    font-size: 15px;
    color: #555
}

.breadcrumb:before {
    content: "";
    margin: 0
}

.breadcrumb li {
    display: inline-block
}

.breadcrumb li a {
    color: #444;
    text-decoration: none
}

.breadcrumb li a .fa-home {
    font-size: 17px;
    position: relative;
    top: 0;
    float: right;
    padding-right: 5px;
    color: #777
}

.breadcrumb li .material-icons {
    font-size: 18px;
    position: relative;
    top: 4px;
    float: none
}

.breadcrumb li.active {
    color: #777
}

.breadcrumb > li + li:before {
    content: ">" !important;
    color: #777;
    padding-left: 5px
}

[type="checkbox"] + label {
    padding-right: 26px;
    height: 25px;
    line-height: 21px;
    font-size: 13px;
    font-weight: normal;
    vertical-align: middle
}

[type="checkbox"]:checked + label:before {
    top: -4px;
    right: -2px;
    width: 11px;
    height: 19px
}

[type="checkbox"]:checked.chk-col-red + label:before {
    border-right: 2px solid #f44336;
    border-bottom: 2px solid #f44336
}

[type="checkbox"]:checked.chk-col-pink + label:before {
    border-right: 2px solid #e91e63;
    border-bottom: 2px solid #e91e63
}

[type="checkbox"]:checked.chk-col-purple + label:before {
    border-right: 2px solid #9c27b0;
    border-bottom: 2px solid #9c27b0
}

[type="checkbox"]:checked.chk-col-deep-purple + label:before {
    border-right: 2px solid #673ab7;
    border-bottom: 2px solid #673ab7
}

[type="checkbox"]:checked.chk-col-indigo + label:before {
    border-right: 2px solid #3f51b5;
    border-bottom: 2px solid #3f51b5
}

[type="checkbox"]:checked.chk-col-blue + label:before {
    border-right: 2px solid #2196f3;
    border-bottom: 2px solid #2196f3
}

[type="checkbox"]:checked.chk-col-light-blue + label:before {
    border-right: 2px solid #03a9f4;
    border-bottom: 2px solid #03a9f4
}

[type="checkbox"]:checked.chk-col-cyan + label:before {
    border-right: 2px solid #00bcd4;
    border-bottom: 2px solid #00bcd4
}

[type="checkbox"]:checked.chk-col-teal + label:before {
    border-right: 2px solid #009688;
    border-bottom: 2px solid #009688
}

[type="checkbox"]:checked.chk-col-green + label:before {
    border-right: 2px solid #4caf50;
    border-bottom: 2px solid #4caf50
}

[type="checkbox"]:checked.chk-col-light-green + label:before {
    border-right: 2px solid #8bc34a;
    border-bottom: 2px solid #8bc34a
}

[type="checkbox"]:checked.chk-col-lime + label:before {
    border-right: 2px solid #cddc39;
    border-bottom: 2px solid #cddc39
}

[type="checkbox"]:checked.chk-col-yellow + label:before {
    border-right: 2px solid #ffe821;
    border-bottom: 2px solid #ffe821
}

[type="checkbox"]:checked.chk-col-amber + label:before {
    border-right: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107
}

[type="checkbox"]:checked.chk-col-orange + label:before {
    border-right: 2px solid #ff9800;
    border-bottom: 2px solid #ff9800
}

[type="checkbox"]:checked.chk-col-deep-orange + label:before {
    border-right: 2px solid #ff5722;
    border-bottom: 2px solid #ff5722
}

[type="checkbox"]:checked.chk-col-brown + label:before {
    border-right: 2px solid #795548;
    border-bottom: 2px solid #795548
}

[type="checkbox"]:checked.chk-col-grey + label:before {
    border-right: 2px solid #9e9e9e;
    border-bottom: 2px solid #9e9e9e
}

[type="checkbox"]:checked.chk-col-blue-grey + label:before {
    border-right: 2px solid #607d8b;
    border-bottom: 2px solid #607d8b
}

[type="checkbox"]:checked.chk-col-black + label:before {
    border-right: 2px solid #000;
    border-bottom: 2px solid #000
}

[type="checkbox"]:checked.chk-col-white + label:before {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff
}

[type="checkbox"]:checked.chk-col-dark-gray + label:before {
    border-right: 2px solid #888;
    border-bottom: 2px solid #888
}

:checked.chk-col-red + span:after {
    color: #f44336
}

:checked.chk-col-pink + span:after {
    color: #e91e63
}

:checked.chk-col-purple + span:after {
    color: #9c27b0
}

:checked.chk-col-deep-purple + span:after {
    color: #673ab7
}

:checked.chk-col-indigo + span:after {
    color: #3f51b5
}

:checked.chk-col-blue + span:after {
    color: #2196f3
}

:checked.chk-col-light-blue + span:after {
    color: #03a9f4
}

:checked.chk-col-cyan + span:after {
    color: #00bcd4
}

:checked.chk-col-teal + span:after {
    color: #009688
}

:checked.chk-col-green + span:after {
    color: #4caf50
}

:checked.chk-col-light-green + span:after {
    color: #8bc34a
}

:checked.chk-col-lime + span:after {
    color: #cddc39
}

:checked.chk-col-yellow + span:after {
    color: #ffe821
}

:checked.chk-col-amber + span:after {
    color: #ffc107
}

:checked.chk-col-orange + span:after {
    color: #ff9800
}

:checked.chk-col-deep-orange + span:after {
    color: #ff5722
}

:checked.chk-col-brown + span:after {
    color: #795548
}

:checked.chk-col-grey + span:after {
    color: #9e9e9e
}

:checked.chk-col-blue-grey + span:after {
    color: #607d8b
}

:checked.chk-col-black + span:after {
    color: #000
}

:checked.chk-col-white + span:after {
    color: #fff
}

:checked.chk-col-dark-gray + span:after {
    color: #888
}

[type="checkbox"].filled-in:checked + label:after {
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #26a69a;
    background-color: #26a69a;
    z-index: 0
}

[type="checkbox"].filled-in:checked + label:before {
    border-left: 2px solid #fff !important;
    border-bottom: 2px solid #fff !important
}

[type="checkbox"].filled-in:checked.chk-col-red + label:after {
    border: 2px solid #f44336;
    background-color: #f44336
}

[type="checkbox"].filled-in:checked.chk-col-pink + label:after {
    border: 2px solid #e91e63;
    background-color: #e91e63
}

[type="checkbox"].filled-in:checked.chk-col-purple + label:after {
    border: 2px solid #9c27b0;
    background-color: #9c27b0
}

[type="checkbox"].filled-in:checked.chk-col-deep-purple + label:after {
    border: 2px solid #673ab7;
    background-color: #673ab7
}

[type="checkbox"].filled-in:checked.chk-col-indigo + label:after {
    border: 2px solid #3f51b5;
    background-color: #3f51b5
}

[type="checkbox"].filled-in:checked.chk-col-blue + label:after {
    border: 2px solid #2196f3;
    background-color: #2196f3
}

[type="checkbox"].filled-in:checked.chk-col-light-blue + label:after {
    border: 2px solid #03a9f4;
    background-color: #03a9f4
}

[type="checkbox"].filled-in:checked.chk-col-cyan + label:after {
    border: 2px solid #00bcd4;
    background-color: #00bcd4
}

[type="checkbox"].filled-in:checked.chk-col-teal + label:after {
    border: 2px solid #009688;
    background-color: #009688
}

[type="checkbox"].filled-in:checked.chk-col-green + label:after {
    border: 2px solid #4caf50;
    background-color: #4caf50
}

[type="checkbox"].filled-in:checked.chk-col-light-green + label:after {
    border: 2px solid #8bc34a;
    background-color: #8bc34a
}

[type="checkbox"].filled-in:checked.chk-col-lime + label:after {
    border: 2px solid #cddc39;
    background-color: #cddc39
}

[type="checkbox"].filled-in:checked.chk-col-yellow + label:after {
    border: 2px solid #ffe821;
    background-color: #ffe821
}

[type="checkbox"].filled-in:checked.chk-col-amber + label:after {
    border: 2px solid #ffc107;
    background-color: #ffc107
}

[type="checkbox"].filled-in:checked.chk-col-orange + label:after {
    border: 2px solid #ff9800;
    background-color: #ff9800
}

[type="checkbox"].filled-in:checked.chk-col-deep-orange + label:after {
    border: 2px solid #ff5722;
    background-color: #ff5722
}

[type="checkbox"].filled-in:checked.chk-col-brown + label:after {
    border: 2px solid #795548;
    background-color: #795548
}

[type="checkbox"].filled-in:checked.chk-col-grey + label:after {
    border: 2px solid #9e9e9e;
    background-color: #9e9e9e
}

[type="checkbox"].filled-in:checked.chk-col-blue-grey + label:after {
    border: 2px solid #607d8b;
    background-color: #607d8b
}

[type="checkbox"].filled-in:checked.chk-col-black + label:after {
    border: 2px solid #000;
    background-color: #000
}

[type="checkbox"].filled-in:checked.chk-col-white + label:after {
    border: 2px solid #fff;
    background-color: #fff
}

[type="checkbox"].filled-in:checked.chk-col-dark-gray + label:after {
    border: 2px solid #888;
    background-color: #888
}

[type="radio"]:not(:checked) + label {
    padding-right: 26px;
    height: 25px;
    line-height: 25px;
    font-size: 13px;
    font-weight: normal
}

[type="radio"]:checked + label {
    padding-right: 26px;
    height: 25px;
    line-height: 25px;
    font-size: 13px;
    font-weight: normal
}

[type="radio"] + label {
    vertical-align: middle
}

[type="radio"].radio-col-red:checked + label:after {
    background-color: #f44336;
    border-color: #f44336
}

[type="radio"].radio-col-pink:checked + label:after {
    background-color: #e91e63;
    border-color: #e91e63
}

[type="radio"].radio-col-purple:checked + label:after {
    background-color: #9c27b0;
    border-color: #9c27b0
}

[type="radio"].radio-col-deep-purple:checked + label:after {
    background-color: #673ab7;
    border-color: #673ab7
}

[type="radio"].radio-col-indigo:checked + label:after {
    background-color: #3f51b5;
    border-color: #3f51b5
}

[type="radio"].radio-col-blue:checked + label:after {
    background-color: #2196f3;
    border-color: #2196f3
}

[type="radio"].radio-col-light-blue:checked + label:after {
    background-color: #03a9f4;
    border-color: #03a9f4
}

[type="radio"].radio-col-cyan:checked + label:after {
    background-color: #00bcd4;
    border-color: #00bcd4
}

[type="radio"].radio-col-teal:checked + label:after {
    background-color: #009688;
    border-color: #009688
}

[type="radio"].radio-col-green:checked + label:after {
    background-color: #4caf50;
    border-color: #4caf50
}

[type="radio"].radio-col-light-green:checked + label:after {
    background-color: #8bc34a;
    border-color: #8bc34a
}

[type="radio"].radio-col-lime:checked + label:after {
    background-color: #cddc39;
    border-color: #cddc39
}

[type="radio"].radio-col-yellow:checked + label:after {
    background-color: #ffe821;
    border-color: #ffe821
}

[type="radio"].radio-col-amber:checked + label:after {
    background-color: #ffc107;
    border-color: #ffc107
}

[type="radio"].radio-col-orange:checked + label:after {
    background-color: #ff9800;
    border-color: #ff9800
}

[type="radio"].radio-col-deep-orange:checked + label:after {
    background-color: #ff5722;
    border-color: #ff5722
}

[type="radio"].radio-col-brown:checked + label:after {
    background-color: #795548;
    border-color: #795548
}

[type="radio"].radio-col-grey:checked + label:after {
    background-color: #9e9e9e;
    border-color: #9e9e9e
}

[type="radio"].radio-col-blue-grey:checked + label:after {
    background-color: #607d8b;
    border-color: #607d8b
}

[type="radio"].radio-col-black:checked + label:after {
    background-color: #000;
    border-color: #000
}

[type="radio"].radio-col-white:checked + label:after {
    background-color: #fff;
    border-color: #fff
}

[type="radio"].radio-col-dark-gray:checked + label:after {
    background-color: #888;
    border-color: #888
}

[type="radio"].with-gap.radio-col-red:checked + label:before {
    border: 2px solid #f44336
}

[type="radio"].with-gap.radio-col-red:checked + label:after {
    background-color: #f44336;
    border: 2px solid #f44336
}

[type="radio"].with-gap.radio-col-pink:checked + label:before {
    border: 2px solid #e91e63
}

[type="radio"].with-gap.radio-col-pink:checked + label:after {
    background-color: #e91e63;
    border: 2px solid #e91e63
}

[type="radio"].with-gap.radio-col-purple:checked + label:before {
    border: 2px solid #9c27b0
}

[type="radio"].with-gap.radio-col-purple:checked + label:after {
    background-color: #9c27b0;
    border: 2px solid #9c27b0
}

[type="radio"].with-gap.radio-col-deep-purple:checked + label:before {
    border: 2px solid #673ab7
}

[type="radio"].with-gap.radio-col-deep-purple:checked + label:after {
    background-color: #673ab7;
    border: 2px solid #673ab7
}

[type="radio"].with-gap.radio-col-indigo:checked + label:before {
    border: 2px solid #3f51b5
}

[type="radio"].with-gap.radio-col-indigo:checked + label:after {
    background-color: #3f51b5;
    border: 2px solid #3f51b5
}

[type="radio"].with-gap.radio-col-blue:checked + label:before {
    border: 2px solid #2196f3
}

[type="radio"].with-gap.radio-col-blue:checked + label:after {
    background-color: #2196f3;
    border: 2px solid #2196f3
}

[type="radio"].with-gap.radio-col-light-blue:checked + label:before {
    border: 2px solid #03a9f4
}

[type="radio"].with-gap.radio-col-light-blue:checked + label:after {
    background-color: #03a9f4;
    border: 2px solid #03a9f4
}

[type="radio"].with-gap.radio-col-cyan:checked + label:before {
    border: 2px solid #00bcd4
}

[type="radio"].with-gap.radio-col-cyan:checked + label:after {
    background-color: #00bcd4;
    border: 2px solid #00bcd4
}

[type="radio"].with-gap.radio-col-teal:checked + label:before {
    border: 2px solid #009688
}

[type="radio"].with-gap.radio-col-teal:checked + label:after {
    background-color: #009688;
    border: 2px solid #009688
}

[type="radio"].with-gap.radio-col-green:checked + label:before {
    border: 2px solid #4caf50
}

[type="radio"].with-gap.radio-col-green:checked + label:after {
    background-color: #4caf50;
    border: 2px solid #4caf50
}

[type="radio"].with-gap.radio-col-light-green:checked + label:before {
    border: 2px solid #8bc34a
}

[type="radio"].with-gap.radio-col-light-green:checked + label:after {
    background-color: #8bc34a;
    border: 2px solid #8bc34a
}

[type="radio"].with-gap.radio-col-lime:checked + label:before {
    border: 2px solid #cddc39
}

[type="radio"].with-gap.radio-col-lime:checked + label:after {
    background-color: #cddc39;
    border: 2px solid #cddc39
}

[type="radio"].with-gap.radio-col-yellow:checked + label:before {
    border: 2px solid #ffe821
}

[type="radio"].with-gap.radio-col-yellow:checked + label:after {
    background-color: #ffe821;
    border: 2px solid #ffe821
}

[type="radio"].with-gap.radio-col-amber:checked + label:before {
    border: 2px solid #ffc107
}

[type="radio"].with-gap.radio-col-amber:checked + label:after {
    background-color: #ffc107;
    border: 2px solid #ffc107
}

[type="radio"].with-gap.radio-col-orange:checked + label:before {
    border: 2px solid #ff9800
}

[type="radio"].with-gap.radio-col-orange:checked + label:after {
    background-color: #ff9800;
    border: 2px solid #ff9800
}

[type="radio"].with-gap.radio-col-deep-orange:checked + label:before {
    border: 2px solid #ff5722
}

[type="radio"].with-gap.radio-col-deep-orange:checked + label:after {
    background-color: #ff5722;
    border: 2px solid #ff5722
}

[type="radio"].with-gap.radio-col-brown:checked + label:before {
    border: 2px solid #795548
}

[type="radio"].with-gap.radio-col-brown:checked + label:after {
    background-color: #795548;
    border: 2px solid #795548
}

[type="radio"].with-gap.radio-col-grey:checked + label:before {
    border: 2px solid #9e9e9e
}

[type="radio"].with-gap.radio-col-grey:checked + label:after {
    background-color: #9e9e9e;
    border: 2px solid #9e9e9e
}

[type="radio"].with-gap.radio-col-blue-grey:checked + label:before {
    border: 2px solid #607d8b
}

[type="radio"].with-gap.radio-col-blue-grey:checked + label:after {
    background-color: #607d8b;
    border: 2px solid #607d8b
}

[type="radio"].with-gap.radio-col-black:checked + label:before {
    border: 2px solid #000
}

[type="radio"].with-gap.radio-col-black:checked + label:after {
    background-color: #000;
    border: 2px solid #000
}

[type="radio"].with-gap.radio-col-white:checked + label:before {
    border: 2px solid #fff
}

[type="radio"].with-gap.radio-col-white:checked + label:after {
    background-color: #fff;
    border: 2px solid #fff
}

[type="radio"].with-gap.radio-col-dark-gray:checked + label:before {
    border: 2px solid #888
}

[type="radio"].with-gap.radio-col-dark-gray:checked + label:after {
    background-color: #888;
    border: 2px solid #888
}

.colorpicker {
    z-index: 1
}

.colorpicker:before,
.colorpicker:after {
    display: none !important
}

.dtp div.dtp-date,
.dtp div.dtp-time {
    background: #2196f3
}

.dtp > .dtp-content > .dtp-date-view > header.dtp-header {
    background: #2196f3;
    height: 20px !important;
    line-height: 20px !important
}

.dtp .p10 > a {
    color: #fff
}

.dtp div.dtp-actual-year {
    font-size: 1.5em;
    color: #fff
}

.dtp table.dtp-picker-days tr td a.selected {
    background: #2196f3;
    color: #fff
}

.dtp .dtp-buttons {
    text-align: center
}

.dtp .dtp-buttons .dtp-btn-ok {
    margin-right: 10px
}

.dtp .dtp-buttons .dtp-btn-clear {
    margin-left: 10px !important
}

.dtp-actual-day {
    height: 20px !important;
    line-height: 20px !important
}

.dropdown-menu {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    margin-top: -35px !important;
    margin-right: -15px;
    -webkit-box-shadow: 0 5px 15px 2px rgba(64, 70, 74, 0.2) !important;
    box-shadow: 0 5px 15px 2px rgba(64, 70, 74, 0.2) !important;
    border-radius: 0;
    border: 0;
    padding: 0
}

.dropdown-menu .divider {
    margin: 5px 0
}

.dropdown-menu .header {
    font-size: 13px;
    font-weight: bold;
    width: 100%;
    border-bottom: 1px solid #eee;
    text-align: center;
    padding: 4px 0 6px 0
}

.dropdown-menu ul.menu {
    padding-right: 0
}

.dropdown-menu ul.menu.tasks h4 {
    color: #333;
    font-size: 13px;
    margin: 0 0 8px 0
}

.dropdown-menu ul.menu.tasks h4 small {
    float: left;
    margin-top: 6px
}

.dropdown-menu ul.menu.tasks .progress {
    height: 7px;
    margin-bottom: 7px
}

.dropdown-menu ul.menu .icon-circle {
    width: 36px;
    height: 36px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    display: inline-block;
    float: right
}

.dropdown-menu ul.menu .icon-circle i {
    font-size: 18px;
    line-height: 36px !important
}

.dropdown-menu ul.menu .msg-user {
    width: 44px;
    height: 44px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    float: right
}

.dropdown-menu ul.menu .msg-user img {
    float: right
}

.dropdown-menu ul.menu li {
    border-bottom: 1px solid #eee
}

.dropdown-menu ul.menu li:last-child {
    border-bottom: 0
}

.dropdown-menu ul.menu li a {
    padding: 11px 11px;
    text-decoration: none;
    -moz-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    float: right;
    width: 100%
}

.dropdown-menu ul.menu li a:hover {
    background-color: #e9e9e9
}

.dropdown-menu ul.menu .menu-info {
    display: inline-block;
    position: relative;
    top: 3px;
    right: 10px;
    float: right;
    text-align: right;
    width: calc(100% - 45px)
}

.dropdown-menu ul.menu .menu-info h4,
.dropdown-menu ul.menu .menu-info .menu-title {
    margin: 0;
    font-size: 13px;
    color: #333;
    float: right;
    width: 100%;
    line-height: 1;
    font-weight: bold
}

.dropdown-menu ul.menu .menu-info p,
.dropdown-menu ul.menu .menu-info .menu-desc {
    margin: 0;
    font-size: 11px;
    color: #aaa;
    float: right;
    width: 100%;
    line-height: 20px
}

.dropdown-menu ul.menu .menu-info p .material-icons,
.dropdown-menu ul.menu .menu-info .menu-desc .material-icons {
    font-size: 13px;
    color: #aaa;
    position: relative;
    top: 3px;
    float: right;
    margin-left: 3px;
    height: 20px
}

.dropdown-menu .footer a {
    text-align: center;
    border-top: 1px solid #eee;
    padding: 10px 0 5px 0;
    font-size: 13px;
    margin-bottom: -5px;
    color: #ff5e00;
    font-weight: 500
}

.dropdown-menu .footer a:hover {
    background-color: transparent
}

.dropdown-menu > li > a {
    padding: 7px 18px;
    color: #666;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
    font-size: 14px;
    line-height: 25px;
    display: block
}

.dropdown-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.075)
}

.dropdown-menu > li > a i.material-icons {
    float: right;
    margin-left: 7px;
    margin-top: 2px;
    font-size: 20px
}

.dropdown-animated {
    -webkit-animation-duration: .3s !important;
    -moz-animation-duration: .3s !important;
    -o-animation-duration: .3s !important;
    animation-duration: .3s !important
}

.dropdown-menu.pull-right.show {
    position: absolute !important;
    right: auto !important;
    left: 0 !important;
    top: 50px !important;
    transform: none !important
}

.dropzone {
    border: 2px solid transparent !important;
    background-color: #eee !important
}

.dropzone .dz-message .drag-icon-cph .material-icons {
    font-size: 80px;
    color: #777
}

.dz-drag-hover {
    border: 2px dashed #888 !important
}

.feedBody {
    border-right: 1px solid #d6d6d6;
    margin-right: 30px;
    padding-top: 10px
}

.col-auto {
    padding-right: 15px;
    padding-left: 15px
}

.feedLblStyle {
    font-weight: bold;
    padding: 0 7px 0 7px;
    border-radius: 10px
}

.lblFileStyle {
    color: red;
    border: 1px solid red
}

.lblTaskStyle {
    color: #2ed8b6;
    border: 1px solid #2ed8b6
}

.lblCommentStyle {
    color: #4099ff;
    border: 1px solid #4099ff
}

.lblReplyStyle {
    color: #f15317;
    border: 1px solid #f15317
}

.feedBody li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 25px
}

.feedBody li .feed-user-img {
    position: absolute;
    right: -20px;
    top: -10px
}

.feedBody li .feed-user-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%
}

.feedBody li.active-feed .feed-user-img:after {
    border-color: #2ed8b6
}

.feedBody li .feed-user-img:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    border: 3px solid transparent;
    border-radius: 50%
}

.feedBody li h6 {
    line-height: 1.5;
    cursor: pointer
}

.text-muted {
    color: #919aa3 !important;
    margin-bottom: 10px
}

.img-100 {
    width: 100px
}

.feedBody li h6 {
    line-height: 1.5;
    cursor: pointer
}

.feedBody li.active-feed .feed-user-img:after {
    border-color: #2ed8b6
}

.sl-item {
    border-right: 1px solid #13b1e0;
    padding-bottom: 1px;
    padding-right: 15px;
    position: relative
}

.sl-item:last-child::after {
    border-radius: 100%;
    bottom: 0;
    content: "";
    height: 6px;
    right: -3px;
    position: absolute;
    width: 6px
}

.sl-item .sl-content i {
    font-size: 12px
}

.sl-item .sl-content small {
    position: relative;
    top: -4px
}

.sl-item .sl-content p {
    padding-bottom: 4px;
    position: relative
}

.sl-item::before {
    background-color: #13b1e0;
    border-radius: 100%;
    content: "";
    height: 12px;
    right: -6.5px;
    position: absolute;
    top: 0;
    width: 12px
}

.sl-primary {
    border-right-color: #2196f3
}

.sl-primary:last-child::after {
    background-color: #2196f3
}

.sl-primary::before {
    background-color: #2196f3
}

.sl-danger {
    border-right-color: #f44336
}

.sl-danger:last-child::after {
    background-color: #f44336
}

.sl-danger::before {
    background-color: #f44336
}

.sl-success {
    border-right-color: #4caf50
}

.sl-success:last-child::after {
    background-color: #4caf50
}

.sl-success::before {
    background-color: #4caf50
}

.sl-warning {
    border-right-color: #ff5722
}

.sl-warning:last-child::after {
    background-color: #ff5722
}

.sl-warning::before {
    background-color: #ff5722
}

.info-box {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 80px;
    display: flex;
    cursor: default;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px
}

.info-box .icon {
    display: inline-block;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.12);
    width: 80px
}

.info-box .icon i {
    color: #fff;
    font-size: 50px;
    line-height: 80px
}

.info-box .icon .chart.chart-bar {
    height: 100%;
    line-height: 100px
}

.info-box .icon .chart.chart-bar canvas {
    vertical-align: baseline !important
}

.info-box .icon .chart.chart-pie {
    height: 100%;
    line-height: 123px
}

.info-box .icon .chart.chart-pie canvas {
    vertical-align: baseline !important
}

.info-box .icon .chart.chart-line {
    height: 100%;
    line-height: 115px
}

.info-box .icon .chart.chart-line canvas {
    vertical-align: baseline !important
}

.info-box .content {
    display: inline-block;
    padding: 7px 10px
}

.info-box .content .text {
    font-size: 13px;
    margin-top: 11px;
    color: #555
}

.info-box .content .number {
    font-weight: normal;
    font-size: 26px;
    margin-top: -4px;
    color: #555
}

.info-box.hover-zoom-effect .icon {
    overflow: hidden
}

.info-box.hover-zoom-effect .icon i {
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.info-box.hover-zoom-effect:hover .icon i {
    opacity: .4;
    -moz-transform: rotate(-32deg) scale(1.4);
    -ms-transform: rotate(-32deg) scale(1.4);
    -o-transform: rotate(-32deg) scale(1.4);
    -webkit-transform: rotate(-32deg) scale(1.4);
    transform: rotate(-32deg) scale(1.4)
}

.info-box.hover-expand-effect:after {
    background-color: rgba(0, 0, 0, 0.05);
    content: ".";
    position: absolute;
    right: 80px;
    top: 0;
    width: 0;
    height: 100%;
    color: transparent;
    -moz-transition: all .95s;
    -o-transition: all .95s;
    -webkit-transition: all .95s;
    transition: all .95s
}

.info-box.hover-expand-effect:hover:after {
    width: 100%
}

.info-box-2 {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 80px;
    display: flex;
    cursor: default;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px
}

.info-box-2 .icon {
    display: inline-block;
    text-align: center;
    width: 80px
}

.info-box-2 .icon i {
    color: #fff;
    font-size: 50px;
    line-height: 80px
}

.info-box-2 .chart.chart-bar {
    height: 100%;
    line-height: 105px
}

.info-box-2 .chart.chart-bar canvas {
    vertical-align: baseline !important
}

.info-box-2 .chart.chart-pie {
    height: 100%;
    line-height: 123px
}

.info-box-2 .chart.chart-pie canvas {
    vertical-align: baseline !important
}

.info-box-2 .chart.chart-line {
    height: 100%;
    line-height: 115px
}

.info-box-2 .chart.chart-line canvas {
    vertical-align: baseline !important
}

.info-box-2 .content {
    display: inline-block;
    padding: 7px 10px
}

.info-box-2 .content .text {
    font-size: 13px;
    margin-top: 11px;
    color: #555
}

.info-box-2 .content .number {
    font-weight: normal;
    font-size: 26px;
    margin-top: -4px;
    color: #555
}

.info-box-2.hover-zoom-effect .icon {
    overflow: hidden
}

.info-box-2.hover-zoom-effect .icon i {
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.info-box-2.hover-zoom-effect:hover .icon i {
    opacity: .4;
    -moz-transform: rotate(-32deg) scale(1.4);
    -ms-transform: rotate(-32deg) scale(1.4);
    -o-transform: rotate(-32deg) scale(1.4);
    -webkit-transform: rotate(-32deg) scale(1.4);
    transform: rotate(-32deg) scale(1.4)
}

.info-box-2.hover-expand-effect:after {
    background-color: rgba(0, 0, 0, 0.05);
    content: ".";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    color: transparent;
    -moz-transition: all .95s;
    -o-transition: all .95s;
    -webkit-transition: all .95s;
    transition: all .95s
}

.info-box-2.hover-expand-effect:hover:after {
    width: 100%
}

.info-box-3 {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 80px;
    display: flex;
    cursor: default;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px
}

.info-box-3 .icon {
    position: absolute;
    left: 10px;
    bottom: 2px;
    text-align: center
}

.info-box-3 .icon i {
    color: rgba(0, 0, 0, 0.15);
    font-size: 60px
}

.info-box-3 .chart {
    margin-left: 5px
}

.info-box-3 .chart.chart-bar {
    height: 100%;
    line-height: 50px
}

.info-box-3 .chart.chart-bar canvas {
    vertical-align: baseline !important
}

.info-box-3 .chart.chart-pie {
    height: 100%;
    line-height: 34px
}

.info-box-3 .chart.chart-pie canvas {
    vertical-align: baseline !important
}

.info-box-3 .chart.chart-line {
    height: 100%;
    line-height: 40px
}

.info-box-3 .chart.chart-line canvas {
    vertical-align: baseline !important
}

.info-box-3 .content {
    display: inline-block;
    padding: 7px 16px
}

.info-box-3 .content .text {
    font-size: 13px;
    margin-top: 11px;
    color: #555
}

.info-box-3 .content .number {
    font-weight: normal;
    font-size: 26px;
    margin-top: -4px;
    color: #555
}

.info-box-3.hover-zoom-effect .icon i {
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.info-box-3.hover-zoom-effect:hover .icon i {
    opacity: .4;
    -moz-transform: rotate(-32deg) scale(1.4);
    -ms-transform: rotate(-32deg) scale(1.4);
    -o-transform: rotate(-32deg) scale(1.4);
    -webkit-transform: rotate(-32deg) scale(1.4);
    transform: rotate(-32deg) scale(1.4)
}

.info-box-3.hover-expand-effect:after {
    background-color: rgba(0, 0, 0, 0.05);
    content: ".";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    color: transparent;
    -moz-transition: all .95s;
    -o-transition: all .95s;
    -webkit-transition: all .95s;
    transition: all .95s
}

.info-box-3.hover-expand-effect:hover:after {
    width: 100%
}

.info-box-4 {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 80px;
    display: flex;
    cursor: default;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px
}

.info-box-4 .icon {
    position: absolute;
    left: 10px;
    bottom: 2px;
    text-align: center
}

.info-box-4 .icon i {
    color: rgba(0, 0, 0, 0.15);
    font-size: 60px
}

.info-box-4 .chart {
    margin-left: 5px
}

.info-box-4 .chart.chart-bar {
    height: 100%;
    line-height: 50px
}

.info-box-4 .chart.chart-bar canvas {
    vertical-align: baseline !important
}

.info-box-4 .chart.chart-pie {
    height: 100%;
    line-height: 34px
}

.info-box-4 .chart.chart-pie canvas {
    vertical-align: baseline !important
}

.info-box-4 .chart.chart-line {
    height: 100%;
    line-height: 40px
}

.info-box-4 .chart.chart-line canvas {
    vertical-align: baseline !important
}

.info-box-4 .content {
    display: inline-block;
    padding: 7px 16px
}

.info-box-4 .content .text {
    font-size: 13px;
    margin-top: 11px;
    color: #555
}

.info-box-4 .content .number {
    font-weight: normal;
    font-size: 26px;
    margin-top: -4px;
    color: #555
}

.info-box-4.hover-zoom-effect .icon i {
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.info-box-4.hover-zoom-effect:hover .icon i {
    opacity: .4;
    -moz-transform: rotate(-32deg) scale(1.4);
    -ms-transform: rotate(-32deg) scale(1.4);
    -o-transform: rotate(-32deg) scale(1.4);
    -webkit-transform: rotate(-32deg) scale(1.4);
    transform: rotate(-32deg) scale(1.4)
}

.info-box-4.hover-expand-effect:after {
    background-color: rgba(0, 0, 0, 0.05);
    content: ".";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    color: transparent;
    -moz-transition: all .95s;
    -o-transition: all .95s;
    -webkit-transition: all .95s;
    transition: all .95s
}

.info-box-4.hover-expand-effect:hover:after {
    width: 100%
}

.info-box-new {
    background: #fff;
    padding: 20px 20px 0 20px;
    color: #463f3f;
    border-radius: 15px
}

.info-box-new .progress {
    height: 10px;
    border-radius: 20px
}

.support-box {
    padding: 15px;
    color: #fff;
    margin: 8px 0 25px 0;
    border-radius: 10px;
    min-height: 140px
}

.counter-box {
    padding: 15px;
    color: #212529;
    margin: 0 0 25px 0;
    border-radius: 10px;
    min-height: 140px
}

.info-box1 .text-right h2 {
    color: #44e229
}

.info-box2 .text-right h2 {
    color: #e66c2f
}

.info-box3 .text-right h2 {
    color: #58b5f5
}

.info-box4 .text-right h2 {
    color: #ab92d4
}

.info-box5 {
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    padding: 0 20px 0 20px;
    border-radius: 25px;
    height: 110px;
    display: flex;
    cursor: default;
    background-color: #fff;
    position: relative;
    overflow: hidden
}

.info-box5 small {
    font-size: 14px
}

.info-box5 .progress {
    background: rgba(0, 0, 0, 0.2);
    margin: 5px 0 5px -10px;
    height: 8px;
    background: #e3e3e3;
    border-radius: 20px;
    box-shadow: none;
    overflow: visible
}

.info-box5 .progress .progress-bar {
    border-radius: 20px;
    background: #fff
}

.info-box5 .knob-icon {
    margin-top: 16px
}

.info-box5 .info-box-content {
    margin-top: 24px;
    margin-right: 10px
}

.info-box5 .progress-bar {
    position: relative;
    animation: animate-positive 4s;
    line-height: 8px
}

.info-box6 {
    box-shadow: -2px 2px 10px #dadada;
    margin: 8px 0 25px 0;
    padding: 20px 10px;
    background-color: #fff;
    height: 100px;
    border-radius: 5px;
    transition: .3s linear all
}

.info-box6:hover {
    box-shadow: 4px 4px 20px #dadada;
    transition: .3s linear all
}

.info-box6.primary {
    background-color: #007bff;
    color: #fff
}

.info-box6.danger {
    background-color: #ef5350;
    color: #fff
}

.info-box6.success {
    background-color: #66bb6a;
    color: #fff
}

.info-box6.info {
    background-color: #26c6da;
    color: #fff
}

.info-box6 i {
    font-size: 5em;
    opacity: .2
}

.info-box6 .count-numbers {
    position: absolute;
    left: 35px;
    top: 20px;
    font-size: 32px;
    display: block
}

.info-box6 .count-name {
    position: absolute;
    left: 35px;
    top: 65px;
    font-style: italic;
    text-transform: capitalize;
    opacity: .5;
    display: block;
    font-size: 18px
}
.info-box7 {
    border-radius: 5px;
    color: #fff;
    box-shadow: 0 1px 2.94px .06px rgba(4, 26, 55, 0.16);
    border: 0;
    margin: 8px 0 25px 0;
    transition: all .3s ease-in-out
}

.info-box7 .info-box7-block {
    padding: 25px
}

.order-info-box7 i {
    font-size: 26px
}

.box-part {
    background: #fff;
    border-radius: 10px;
    padding: 30px 15px;
    margin: 5px 0 23px
}

@-webkit-keyframes animate-positive {
    0% {
        width: 0
    }
}

@keyframes animate-positive {
    0% {
        width: 0
    }
}

.form-check,
label {
    font-size: 14px;
    line-height: 1.42857;
    color: #414244;
    font-weight: 400
}

.input-group {
    width: 100%;
    margin-bottom: 20px;
    display: table
}

.input-group .form-line {
    display: inline-block;
    width: 100%;
    position: relative
}

.input-group .form-line:after {
    content: '';
    position: absolute;
    right: 0;
    width: 100%;
    bottom: 0;
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -moz-transition: .25s ease-in;
    -o-transition: .25s ease-in;
    -webkit-transition: .25s ease-in;
    transition: .25s ease-in;
    border-bottom: 2px solid #1f91f3
}

.input-group .form-line + .input-group-addon {
    padding-left: 0;
    padding-right: 10px
}

.input-group .help-info {
    float: left;
    font-size: 12px;
    margin-top: 5px;
    color: #999
}

.input-group label.error {
    font-size: 12px;
    display: block;
    margin-top: 5px;
    font-weight: normal;
    color: #f44336
}

.input-group .form-line.error:after {
    border-bottom: 2px solid #f44336
}

.input-group .form-line.success:after {
    border-bottom: 2px solid #4caf50
}

.input-group .form-line.warning:after {
    border-bottom: 2px solid #ffc107
}

.input-group .form-line.focused:after {
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.input-group .form-line.focused .form-label {
    bottom: 25px;
    right: 0;
    font-size: 12px
}

.input-group .input-group-addon {
    border: 0;
    background-color: transparent;
    padding-right: 0;
    font-weight: bold;
    display: table-cell
}

.input-group .input-group-addon .material-icons {
    font-size: 18px;
    color: #555
}

.input-group input[type="text"],
.input-group .form-control {
    box-shadow: none;
    padding-right: 0;
    margin: 0;
    font-size: 13px
}

.input-group .form-control:focus {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    box-shadow: none !important
}

.input-group.input-group-sm .input-group-addon i {
    font-size: 14px
}

.input-group.input-group-sm .form-control {
    font-size: 12px
}

.input-group.input-group-lg .input-group-addon i {
    font-size: 26px
}

.input-group.input-group-lg .form-control {
    font-size: 18px
}

.form-control-label {
    text-align: left
}

.form-control-label label {
    margin-top: 8px
}

.form-horizontal .form-group {
    margin-bottom: 0
}

.form-group {
    width: 100%;
    margin-bottom: 25px
}

.form-group .form-control {
    width: 100%;
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--primary-color) !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-right: 0
}

.form-group input.form-control {
    margin: 0;
    font-size: 13px
}

.form-group .help-info {
    float: left;
    font-size: 12px;
    margin-top: 5px;
    color: #999
}

.form-group label.error {
    font-size: 12px;
    display: block;
    margin-top: 5px;
    font-weight: normal;
    color: #f44336
}

.form-group .form-line {
    width: 100%;
    position: relative
}

.form-group .form-line:after {
    content: '';
    position: absolute;
    right: 0;
    width: 100%;
    height: 0;
    bottom: -1px;
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -moz-transition: .25s ease-in;
    -o-transition: .25s ease-in;
    -webkit-transition: .25s ease-in;
    transition: .25s ease-in;
    border-bottom: 2px solid var(--primary-color) !important;
}

.form-group .form-line .form-label {
    font-weight: normal;
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 0;
    cursor: text;
    -moz-transition: .2s;
    -o-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s
}

.form-group .form-line.error:after {
    border-bottom: 2px solid #f44336
}

.form-group .form-line.success:after {
    border-bottom: 2px solid #4caf50
}

.form-group .form-line.warning:after {
    border-bottom: 2px solid #ffc107
}

.form-group .form-line.focused:after {
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.form-group .form-line.focused .form-label {
    top: -10px;
    right: 0;
    font-size: 12px
}

.form-group-sm .form-label {
    font-size: 12px
}

.form-group-sm .form-line.focused .form-label {
    bottom: 20px;
    font-size: 10px
}

.form-group-lg .form-label {
    font-size: 18px
}

.form-group-lg .form-line.focused .form-label {
    bottom: 35px;
    font-size: 12px
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: transparent
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent
}

.show > .dropdown-menu {
    display: block
}

.spinner .input-group-addon {
    position: absolute;
    top: 10px;
    left: 0
}

.spinner .input-group-addon .spin-up i {
    position: absolute;
    right: 0
}

.spinner .input-group-addon .spin-down i {
    position: absolute;
    right: 0;
    bottom: -15px
}

.bootstrap-select .btn {
    color: #333
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell
}

.form-check {
    margin-bottom: .5rem;
    padding-right: 0
}

.form-check .form-check-label {
    cursor: pointer;
    padding-right: 25px;
    position: relative;
    padding-left: 15px
}

.form-check .form-check-label span {
    display: block;
    position: absolute;
    right: -1px;
    top: -1px;
    transition-duration: .2s;
    padding-right: 10px;
}

.form-check .form-check-input {
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    margin: 0;
    z-index: -1;
    right: 0;
    pointer-events: none
}

.form-check .form-check-input:checked + .form-check-sign:before {
    animation: rippleOn .5s
}

.form-check .form-check-input:checked + .form-check-sign .check {
    background: #9c27b0
}

.form-check .form-check-input:checked + .form-check-sign .check:before {
    color: #fff;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    animation: checkboxOn .3s forwards
}

.form-check .form-check-sign {
    vertical-align: middle;
    position: relative;
    top: -2px;
    float: right;
    padding-left: 10px;
    display: inline-block
}

.form-check .form-check-sign:before {
    display: block;
    position: absolute;
    right: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.84);
    height: 20px;
    width: 20px;
    border-radius: 100%;
    z-index: 1;
    opacity: 0;
    margin: 0;
    top: 0;
    transform: scale3d(2.3, 2.3, 1)
}

.form-check .form-check-sign .check {
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.54);
    overflow: hidden;
    z-index: 1;
    border-radius: 3px
}

.form-check .form-check-sign .check:before {
    position: absolute;
    content: "";
    transform: rotate(45deg);
    display: block;
    margin-top: -3px;
    margin-left: 7px;
    width: 0;
    color: #fff;
    height: 0;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset;
    animation: checkboxOff .3s forwards
}

.form-control-radious {
    background-color: transparent !important;
    border: 1px solid #acacac !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    box-shadow: none !important;
    text-indent: 10px;
    height: 33px !important
}

.form-control-radious:focus {
    border: 1px solid #4fc0a1 !important
}

.form-control-textarea-radious {
    background-color: transparent !important;
    border: 1px solid #acacac !important;
    border-radius: 7px !important;
    font-size: 13px !important;
    box-shadow: none !important;
    text-indent: 10px;
    height: 60px !important
}

.form-control-textarea-radious:focus {
    border: 1px solid #4fc0a1 !important
}

.default-select select {
    width: 100px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none
}

.default-select .select-wrapper input.select-dropdown {
    display: none
}

.label {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 2px 10px;
    color: #fff;
    display: inline-block
}

.label-default {
    background-color: #777
}

.label-primary {
    background-color: #1f91f3
}

.label-success {
    background-color: #2b982b
}

.label-info {
    background-color: #00b0e4
}

.label-warning {
    background-color: #ff9600
}

.label-danger {
    background-color: #fb483a
}

.ms-container {
    width: auto !important
}

.ms-container .ms-list {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    border-radius: 0 !important
}

.ms-container .ms-list.ms-focus {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    box-shadow: none !important
}

.ms-container .ms-selectable,
.ms-container .ms-selection {
    min-width: 250px !important
}

.ms-container .ms-selectable li.ms-hover,
.ms-container .ms-selection li.ms-hover {
    color: #000 !important;
    background-color: #e6e6e6 !important
}

.ms-container .ms-selectable li.ms-elem-selectable,
.ms-container .ms-selectable li.ms-elem-selection,
.ms-container .ms-selection li.ms-elem-selectable,
.ms-container .ms-selection li.ms-elem-selection {
    padding: 9px 15px 6px 15px !important
}

.ms-container .ms-optgroup-label {
    padding: 5px 8px 0 0 !important
}

.switch label {
    font-weight: normal;
    font-size: 13px
}

.switch label .lever {
    margin: 0 14px
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-red:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(244, 67, 54, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-red {
    background-color: rgba(244, 67, 54, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-red:after {
    background-color: #f44336
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-pink:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(233, 30, 99, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-pink {
    background-color: rgba(233, 30, 99, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-pink:after {
    background-color: #e91e63
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-purple:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(156, 39, 176, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-purple {
    background-color: rgba(156, 39, 176, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-purple:after {
    background-color: #9c27b0
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-deep-purple:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(103, 58, 183, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-deep-purple {
    background-color: rgba(103, 58, 183, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-deep-purple:after {
    background-color: #673ab7
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-indigo:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(63, 81, 181, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-indigo {
    background-color: rgba(63, 81, 181, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-indigo:after {
    background-color: #3f51b5
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-blue:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(33, 150, 243, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-blue {
    background-color: rgba(33, 150, 243, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-blue:after {
    background-color: #2196f3
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-light-blue:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(3, 169, 244, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-light-blue {
    background-color: rgba(3, 169, 244, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-light-blue:after {
    background-color: #03a9f4
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-cyan:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 188, 212, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-cyan {
    background-color: rgba(0, 188, 212, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-cyan:after {
    background-color: #00bcd4
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-teal:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 150, 136, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-teal {
    background-color: rgba(0, 150, 136, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-teal:after {
    background-color: #009688
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-green:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(76, 175, 80, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-green {
    background-color: rgba(76, 175, 80, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-green:after {
    background-color: #4caf50
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-light-green:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(139, 195, 74, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-light-green {
    background-color: rgba(139, 195, 74, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-light-green:after {
    background-color: #8bc34a
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-lime:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(205, 220, 57, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-lime {
    background-color: rgba(205, 220, 57, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-lime:after {
    background-color: #cddc39
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-yellow:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 232, 33, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-yellow {
    background-color: rgba(255, 232, 33, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-yellow:after {
    background-color: #ffe821
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-amber:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 193, 7, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-amber {
    background-color: rgba(255, 193, 7, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-amber:after {
    background-color: #ffc107
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-orange:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 152, 0, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-orange {
    background-color: rgba(255, 152, 0, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-orange:after {
    background-color: #ff9800
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-deep-orange:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 87, 34, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-deep-orange {
    background-color: rgba(255, 87, 34, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-deep-orange:after {
    background-color: #ff5722
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-brown:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(121, 85, 72, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-brown {
    background-color: rgba(121, 85, 72, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-brown:after {
    background-color: #795548
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-grey:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(158, 158, 158, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-grey {
    background-color: rgba(158, 158, 158, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-grey:after {
    background-color: #9e9e9e
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-blue-grey:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(96, 125, 139, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-blue-grey {
    background-color: rgba(96, 125, 139, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-blue-grey:after {
    background-color: #607d8b
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-black:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-black {
    background-color: rgba(0, 0, 0, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-black:after {
    background-color: #000
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-white:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 255, 255, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-white {
    background-color: rgba(255, 255, 255, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-white:after {
    background-color: #fff
}

.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever.switch-col-dark-gray:active:after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(136, 136, 136, 0.1)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-dark-gray {
    background-color: rgba(136, 136, 136, 0.5)
}

.switch label input[type=checkbox]:checked + .lever.switch-col-dark-gray:after {
    background-color: #888
}

.thumbnail {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.thumbnail p:not(button) {
    color: #999;
    font-size: 14px
}

.thumbnail h3 {
    font-weight: bold;
    font-size: 17px
}

.bootstrap-tagsinput {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important
}

.bootstrap-tagsinput .tag {
    margin-bottom: 2px
}

.overlay {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10
}

.overlay-open .sidebar {
    margin-right: 0;
    z-index: 99999999
}

.sidebar {
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
    background: #f4f5f8;
    border-right: none;
    border-left: 1px solid #e4e5e8;
    width: 260px;
    overflow: hidden;
    display: inline-block;
    height: calc(100vh - 60px);
    position: fixed;
    top: 60px;
    right: 0;
    z-index: 1030 !important
}

.sidebar .user-info {
    padding: 13px 15px 12px 15px;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid #e9e9e9;
    background: url("../images/user-img-background.html") no-repeat no-repeat;
    height: 135px
}

.sidebar .user-info .image {
    margin-left: 12px;
    display: inline-block
}

.sidebar .user-info .image img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    vertical-align: bottom !important
}

.sidebar .user-info .info-container {
    cursor: default;
    display: block;
    position: relative;
    top: 25px
}

.sidebar .user-info .info-container .name {
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    max-width: 200px;
    color: #fff
}

.sidebar .user-info .info-container .email {
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 12px;
    max-width: 200px;
    color: #fff
}

.sidebar .user-info .info-container .user-helper-dropdown {
    position: absolute;
    left: -3px;
    bottom: -12px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    color: #fff
}

.sidebar .menu {
    position: relative;
    overflow-y: auto;
    height: 100vh
}

.sidebar .menu .list {
    list-style: none;
    padding-right: 0
}

.sidebar .menu .list li.active > :first-child span {
    font-weight: bold
}

.sidebar .menu .list .header {
    font-size: 12px;
    font-weight: 600;
    padding: 15px 25px 0;
    color: gray
}

.sidebar .menu .list i.material-icons {
    font-size: 15px
}

.sidebar .menu .list i.fas {
    font-size: 15px
}

.sidebar .menu .list i.far {
    font-size: 15px
}

.sidebar .menu .list i.fab {
    font-size: 15px
}

.sidebar .menu .list i.fa {
    font-size: 15px
}

.sidebar .menu .list i.menu-icon {
    font-size: 25px;
    float: right;
    padding-top: 4px
}

.sidebar .menu .list .tooltips .sidebarQuickIcon {
    font-size: 18px;
    margin-top: 10px
}

.sidebar .menu .list .active .menu-icon {
    color: #333
}

.sidebar .menu .list a:hover,
.sidebar .menu .list a:active,
.sidebar .menu .list a:focus {
    text-decoration: none !important;
    background-color: rgba(0, 0, 0, 0.03)
}

.sidebar .menu .list a small {
    position: absolute;
    top: calc(50% - 7.5px);
    left: 15px
}

.sidebar .menu .list a span {
    color: #fff;
    font-size: 11px;
    overflow: hidden
}

.sidebar .menu .list .ml-menu {
    list-style: none;
    display: none;
    padding-right: 0
}

.sidebar .menu .list .ml-menu span {
    font-weight: normal;
    font-size: 14px;
    margin: 3px 6px 1px 0
}

.sidebar .menu .list .ml-menu li a {
    padding-right: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
    color: #fff !important;
}

.sidebar .menu .list .ml-menu li a:before {
    font-family: 'Material Icons';
    position: relative;
    font-size: 13px;
    height: 20px;
    top: 0;
    left: 5px
}


.sidebar .menu .list .ml-menu li .ml-menu li a {
    padding-right: 80px
}

.sidebar .menu .list .ml-menu li .ml-menu .ml-menu li a {
    padding-right: 95px
}

.right-sidebar {
    width: 280px;
    height: calc(100vh - 60px);
    position: fixed;
    left: -300px;
    top: 60px;
    background: #fdfdfd;
    z-index: 1030 !important;
    -webkit-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    -moz-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s
}

.right-sidebar.open {
    left: 0;
    border-radius: 0 10px 10px 0
}

.right-sidebar .nav-tabs {
    font-weight: 600;
    font-size: 13px;
    width: 100%;
    margin-right: 2px;
    padding: 10px 20px;
    border-bottom: 1px solid #e6e4e4
}

.right-sidebar .nav-tabs li {
    text-align: center
}

.right-sidebar .nav-tabs li > a {
    margin-left: 0
}

.right-sidebar .nav-tabs li:first-child {
    width: 45%
}

.right-sidebar .nav-tabs li:last-child {
    width: 55%
}

.boxed-layout .sidebar {
    right: auto
}

.boxed-layout.side-closed .sidebar {
    right: 0
}

.horizontal-menu {
    width: 100%;
    text-align: center
}

.top-sidebar {
    float: right;
    width: 100%;
    position: fixed;
    z-index: 9;
    top: 60px;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3)
}

.top-sidebar ul.horizontal-list {
    overflow: visible !important;
    margin: 0;
    display: inline-block;
    height: 60px
}

.top-sidebar ul.horizontal-list a {
    color: #747474;
    float: right;
    width: 100%
}

.top-sidebar ul.horizontal-list li {
    float: right;
    position: relative;
    padding: 20px 20px
}

.top-sidebar ul.horizontal-list li:hover > ul {
    display: block !important;
    position: absolute;
    top: 63px;
    background-color: #fff;
    border-radius: 5px;
    z-index: 9;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3)
}

.top-sidebar ul.horizontal-list li:hover > ul:after {
    position: absolute;
    bottom: 100%;
    right: 1.8rem;
    width: 0;
    height: 0;
    margin-right: -16px;
    content: ' ';
    pointer-events: none;
    border: solid transparent;
    border-width: 9px;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff
}

.top-sidebar ul.horizontal-list li:hover > ul:before {
    position: absolute;
    bottom: 100%;
    right: 1.8rem;
    width: 0;
    height: 0;
    margin-right: -16px;
    content: ' ';
    pointer-events: none;
    border: solid transparent;
    border-width: 9px;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #ad5454
}

.top-sidebar ul.horizontal-list li:hover > ul.mega-ml-menu {
    position: relative;
    top: 0
}

.top-sidebar ul.horizontal-list li ul li {
    width: 100%;
    padding: 10px 15px;
    text-align: right
}

.top-sidebar ul.horizontal-list ul.ml-menu {
    display: none !important;
    width: 200px
}

.top-sidebar ul.horizontal-list ul.ml-menu li:hover ul {
    top: 0;
    right: 100%
}


.top-sidebar ul.horizontal-list i.material-icons {
    margin-top: 1px;
    margin-left: 3px;
    float: right;
    font-size: 20px
}

.menu_dark .sidebar {
    background: #343d45;
    font-weight: 500
}

.menu_dark .sidebar .menu .list a {
    color: #e6e6e6
}

.menu_dark .sidebar .menu .list a span {
    color: #e6e6e6
}

.menu_dark .sidebar .menu .list a:hover {
    background-color: rgba(0, 0, 0, 0.2)
}

.menu_dark .sidebar .menu .list .header {
    font-size: 12px;
    font-weight: 500;
    padding: 15px 25px 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.7)
}


.menu_dark .sidebar .menu .list li.active {
    background-color: rgba(0, 0, 0, 0)
}

.menu_dark .sidebar .menu .list li.active > :first-child i,
.menu_dark .sidebar .menu .list li.active > :first-child span {
    color: #f1d065
}

.menu_dark .sidebar .menu .list li a {
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s
}

.menu_dark .sidebar .menu .list li a i,
.menu_dark .sidebar .menu .list li a span {
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s
}

.menu_dark .sidebar .menu .list li a:hover {
    color: #f1d065
}

.menu_dark .sidebar .menu .list li a:hover i,
.menu_dark .sidebar .menu .list li a:hover span {
    color: #f1d065
}

.menu_dark .sidebar .menu .list .ml-menu {
    background-color: rgba(0, 0, 0, 0)
}

.menu_dark .sidebar .profile-info > h3 {
    color: #e6e6e6
}

.menu_dark .sidebar .profile-info > p {
    color: #e6e6e6
}

.menu_dark .sidebar .leftSideProgress .title {
    color: #e6e6e6
}

.menu_dark .sidebar .leftSideProgress .status {
    color: #e6e6e6
}

.menu_dark .sidebar-userpic-name {
    color: #e6e6e6
}

.user-img-circle {
    background: #fff;
    z-index: 1000;
    position: inherit;
    border: 1px solid rgba(52, 73, 94, 0.44);
    padding: 2px;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2)
}

.img-circle {
    border-radius: 50%
}

.profile-usertitle {
    text-align: center;
    color: #6f6f6f
}

.profile-usertitle-job {
    font-size: 10px;
    color: #919aa3
}

.sidebar-userpic-btn {
    display: flex;
    place-content: space-around;
    font-size: 18px;
    width: 190px;
    text-align: center;
    margin: auto
}

.sidebar-userpic-btn a {
    color: #aaadb7
}

.sidebar-userpic-btn a:hover {
    background-color: transparent !important
}

.sidebar-profile {
    margin: 20px auto 10px;
    overflow: hidden;
    text-align: center;
    width: 80%
}

.profile-img {
    float: right;
    height: 40px;
    margin-left: 10px;
    width: 40px;
}

.profile-img img {
    border-radius: 6px;
    box-shadow: -4px 3px 6px 0 rgba(0, 0, 0, 0.2)
}

.profile-info {
    overflow: hidden;
    text-align: right
}

.profile-info > h3 {
    font-size: 15px;
    text-transform: capitalize;
    color: #333;
    margin-bottom: 2px
}

.profile-info > p {
    color: #333;
    font-size: 11px;
    margin-top: 5px
}

.leftSideProgress {
    padding: 0 20px 10px 20px
}

.navbar {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
    padding: 0
}

.navbar .navbar-brand {
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden
}

.navbar .navbar-custom-right-menu {
    float: left
}

.navbar .navbar-toggle {
    text-decoration: none;
    color: #fff;
    width: 20px;
    height: 20px;
    margin-left: 17px
}

.navbar .navbar-toggle:before {
    content: '\E8D5';
    font-family: 'Material Icons';
    font-size: 26px
}

.navbar .nav.navbar-nav {
    display: block
}

.navbar .container-fluid,
.navbar .container {
    display: block
}

.navbar .dropdown-menu ul.menu li {
    width: 100%
}

.navbar .nav-left-menu {
    margin: 3px 15px
}

.ls-closed .sidebar {
    margin-right: -300px
}

.ls-closed section.content {
    margin-right: 15px
}

.ls-closed .bars:after,
.ls-closed .bars:before {
    font-family: 'Material Icons';
    font-size: 24px;
    position: absolute;
    right: 10px;
    margin-left: 10px;
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s
}

.ls-closed .bars:before {
    content: '\E5D2';
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
}

.ls-closed .bars:after {
    content: '\E5C4';
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0)
}

.ls-closed .navbar-brand {
    margin-left: 30px
}

.overlay-open .bars:before {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0)
}

.overlay-open .bars:after {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
}

.overlay-open.ls-closed .sidebar {
    margin-right: 0
}

.navbar-header {
    padding: 8px 7px;
    background-color: #000;
    width: 260px;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s
}

.navbar-header .bars {
    float: right;
    text-decoration: none
}

.logo-name {
    color: white;
    font-size: 16px;
    font-weight: 400
}

.navbar-nav > li > a {
    padding: 7px 7px 2px 7px;
    margin-top: 12px;
    margin-right: 5px
}

.navbar-nav > li > a.js-right-sidebar {
    margin-left: 20px
}

.navbar-nav.navbar-right {
    float: left !important;
    margin-left: -15px
}

.navbar-nav .dropdown-menu {
    margin-top: 60px !important;
    width: 325px;
    left: 0;
    right: auto;
    position: absolute !important;
    top: 0;
    padding: 0;
    border-radius: 5px
}

.navbar-nav .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 19px;
    display: inline-block !important;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #eee;
    border-right: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2)
}

.navbar-nav .dropdown-menu::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 20px;
    display: inline-block !important;
    border-left: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-right: 6px solid transparent
}

.navbar-nav .dropdown-menu ul.menu .menu-info p {
    line-height: 1
}

.navbar-nav .dropdown-menu ul.menu .menu-info p .material-icons {
    display: inline-block
}

.navbar-nav .dropdown-menu li.footer {
    width: 100%;
    height: 45px
}

.navbar-nav .dropdown-menu .header {
    line-height: 2
}

.navbar-nav .nav-hdr-btn {
    line-height: 1;
    height: 24px;
    font-size: 18px
}

.navbar-nav .material-icons {
    line-height: 1;
    height: 24px
}

.navbar-nav .fas {
    line-height: 1;
    height: 24px;
    font-size: 18px
}

.navbar-nav .far {
    line-height: 1;
    height: 24px;
    font-size: 18px
}

.navbar-nav .fab {
    line-height: 1;
    height: 24px;
    font-size: 18px
}

.navbar-nav .fa {
    line-height: 1;
    height: 24px;
    font-size: 18px
}

.navbar-nav .user_profile .dropdown-toggle {
    padding: 9px 0px 0px 0px !important;
}

.navbar-nav .user_profile .dropdown-toggle img {
    border-radius: 50%
}

.navbar-nav .user_profile .user_dw_menu li {
    width: 100%;
    border-bottom: 1px solid #eee
}

.navbar-nav .user_profile .user_dw_menu li a {
    text-align: right;
    line-height: 24px;
    color: #333;
    padding: 8px 15px
}

.navbar-nav .user_profile .user_dw_menu li i {
    float: right;
    padding-left: 5px
}

.navbar-nav .user_profile .user_dw_menu li:last-child {
    border-bottom: 0
}

.navbar-nav .user_profile .dropdown-menu {
    width: 150px;
    left: -10px
}

.label-count {
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 10px;
    line-height: 15px;
    background-color: #000;
    padding: 3px 3px;
    border-radius: 3px
}

span.notify {
    width: 5px;
    height: 5px;
    position: absolute;
    top: 8px;
    left: 7px;
    border-radius: 50%;
    background-color: #30cdab
}

.heartbeat {
    position: absolute;
    top: -2px;
    left: -3px;
    height: 25px;
    width: 25px;
    z-index: 10;
    border: 4px solid;
    border-color: #30cdab;
    border-radius: 70px;
    animation: heartbeat 1s ease-out;
    -moz-animation: heartbeat 1s ease-out;
    -moz-animation-iteration-count: infinite;
    -o-animation: heartbeat 1s ease-out;
    -o-animation-iteration-count: infinite;
    -webkit-animation: heartbeat 1s ease-out;
    -ms-animation: heartbeat 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@keyframes heartbeat {
    0% {
        -webkit-transform: scale(0);
        opacity: 0
    }

    25% {
        -webkit-transform: scale(0.1);
        opacity: .1
    }

    50% {
        -webkit-transform: scale(0.5);
        opacity: .3
    }

    75% {
        -webkit-transform: scale(0.8);
        opacity: .5
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0
    }
}

.navbar-brand {
    float: right;
    height: 45px;
    padding: 6px 25px;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    width: 100%
}

.navbar-brand img {
    vertical-align: top
}

.navbar-brand span {
    line-height: 32px
}

.navbar-nav {
    margin: 0 30px
}

.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px
}

.nav {
    padding-right: 0;
    margin-bottom: 0;
    list-style: none
}

.nav > li {
    position: relative;
    display: block
}

.nav > li > a {
    position: relative;
    padding: 10px 11px
}

nav.navbar {
    min-height: 54px
}

.col-red .navbar .navbar-brand,
.col-red .navbar .navbar-brand:hover,
.col-red .navbar .navbar-brand:active,
.col-red .navbar .navbar-brand:focus {
    color: #fff
}

.col-red .navbar .nav > li > a:hover,
.col-red .navbar .nav > li > a:focus,
.col-red .navbar .nav .open > a,
.col-red .navbar .nav .open > a:hover,
.col-red .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-red .navbar .nav > li > a {
    color: #fff
}

.col-red .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-red .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-pink .navbar .navbar-brand,
.col-pink .navbar .navbar-brand:hover,
.col-pink .navbar .navbar-brand:active,
.col-pink .navbar .navbar-brand:focus {
    color: #fff
}

.col-pink .navbar .nav > li > a:hover,
.col-pink .navbar .nav > li > a:focus,
.col-pink .navbar .nav .open > a,
.col-pink .navbar .nav .open > a:hover,
.col-pink .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-pink .navbar .nav > li > a {
    color: #fff
}

.col-pink .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-pink .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-purple .navbar .navbar-brand,
.col-purple .navbar .navbar-brand:hover,
.col-purple .navbar .navbar-brand:active,
.col-purple .navbar .navbar-brand:focus {
    color: #fff
}

.col-purple .navbar .nav > li > a:hover,
.col-purple .navbar .nav > li > a:focus,
.col-purple .navbar .nav .open > a,
.col-purple .navbar .nav .open > a:hover,
.col-purple .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-purple .navbar .nav > li > a {
    color: #fff
}

.col-purple .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-purple .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-deep-purple .navbar .navbar-brand,
.col-deep-purple .navbar .navbar-brand:hover,
.col-deep-purple .navbar .navbar-brand:active,
.col-deep-purple .navbar .navbar-brand:focus {
    color: #fff
}

.col-deep-purple .navbar .nav > li > a:hover,
.col-deep-purple .navbar .nav > li > a:focus,
.col-deep-purple .navbar .nav .open > a,
.col-deep-purple .navbar .nav .open > a:hover,
.col-deep-purple .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-deep-purple .navbar .nav > li > a {
    color: #fff
}

.col-deep-purple .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-deep-purple .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-indigo .navbar .navbar-brand,
.col-indigo .navbar .navbar-brand:hover,
.col-indigo .navbar .navbar-brand:active,
.col-indigo .navbar .navbar-brand:focus {
    color: #fff
}

.col-indigo .navbar .nav > li > a:hover,
.col-indigo .navbar .nav > li > a:focus,
.col-indigo .navbar .nav .open > a,
.col-indigo .navbar .nav .open > a:hover,
.col-indigo .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-indigo .navbar .nav > li > a {
    color: #fff
}

.col-indigo .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-indigo .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-blue .navbar .navbar-brand,
.col-blue .navbar .navbar-brand:hover,
.col-blue .navbar .navbar-brand:active,
.col-blue .navbar .navbar-brand:focus {
    color: #fff
}

.col-blue .navbar .nav > li > a:hover,
.col-blue .navbar .nav > li > a:focus,
.col-blue .navbar .nav .open > a,
.col-blue .navbar .nav .open > a:hover,
.col-blue .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-blue .navbar .nav > li > a {
    color: #fff
}

.col-blue .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-blue .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-light-blue .navbar .navbar-brand,
.col-light-blue .navbar .navbar-brand:hover,
.col-light-blue .navbar .navbar-brand:active,
.col-light-blue .navbar .navbar-brand:focus {
    color: #fff
}

.col-light-blue .navbar .nav > li > a:hover,
.col-light-blue .navbar .nav > li > a:focus,
.col-light-blue .navbar .nav .open > a,
.col-light-blue .navbar .nav .open > a:hover,
.col-light-blue .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-light-blue .navbar .nav > li > a {
    color: #fff
}

.col-light-blue .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-light-blue .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-cyan .navbar .navbar-brand,
.col-cyan .navbar .navbar-brand:hover,
.col-cyan .navbar .navbar-brand:active,
.col-cyan .navbar .navbar-brand:focus {
    color: #fff
}

.col-cyan .navbar .nav > li > a:hover,
.col-cyan .navbar .nav > li > a:focus,
.col-cyan .navbar .nav .open > a,
.col-cyan .navbar .nav .open > a:hover,
.col-cyan .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-cyan .navbar .nav > li > a {
    color: #fff
}

.col-cyan .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-cyan .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-teal .navbar .navbar-brand,
.col-teal .navbar .navbar-brand:hover,
.col-teal .navbar .navbar-brand:active,
.col-teal .navbar .navbar-brand:focus {
    color: #fff
}

.col-teal .navbar .nav > li > a:hover,
.col-teal .navbar .nav > li > a:focus,
.col-teal .navbar .nav .open > a,
.col-teal .navbar .nav .open > a:hover,
.col-teal .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-teal .navbar .nav > li > a {
    color: #fff
}

.col-teal .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-teal .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-green .navbar .navbar-brand,
.col-green .navbar .navbar-brand:hover,
.col-green .navbar .navbar-brand:active,
.col-green .navbar .navbar-brand:focus {
    color: #fff
}

.col-green .navbar .nav > li > a:hover,
.col-green .navbar .nav > li > a:focus,
.col-green .navbar .nav .open > a,
.col-green .navbar .nav .open > a:hover,
.col-green .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-green .navbar .nav > li > a {
    color: #fff
}

.col-green .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-green .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-light-green .navbar .navbar-brand,
.col-light-green .navbar .navbar-brand:hover,
.col-light-green .navbar .navbar-brand:active,
.col-light-green .navbar .navbar-brand:focus {
    color: #fff
}

.col-light-green .navbar .nav > li > a:hover,
.col-light-green .navbar .nav > li > a:focus,
.col-light-green .navbar .nav .open > a,
.col-light-green .navbar .nav .open > a:hover,
.col-light-green .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-light-green .navbar .nav > li > a {
    color: #fff
}

.col-light-green .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-light-green .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-lime .navbar .navbar-brand,
.col-lime .navbar .navbar-brand:hover,
.col-lime .navbar .navbar-brand:active,
.col-lime .navbar .navbar-brand:focus {
    color: #fff
}

.col-lime .navbar .nav > li > a:hover,
.col-lime .navbar .nav > li > a:focus,
.col-lime .navbar .nav .open > a,
.col-lime .navbar .nav .open > a:hover,
.col-lime .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-lime .navbar .nav > li > a {
    color: #fff
}

.col-lime .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-lime .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-yellow .navbar .navbar-brand,
.col-yellow .navbar .navbar-brand:hover,
.col-yellow .navbar .navbar-brand:active,
.col-yellow .navbar .navbar-brand:focus {
    color: #fff
}

.col-yellow .navbar .nav > li > a:hover,
.col-yellow .navbar .nav > li > a:focus,
.col-yellow .navbar .nav .open > a,
.col-yellow .navbar .nav .open > a:hover,
.col-yellow .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-yellow .navbar .nav > li > a {
    color: #fff
}

.col-yellow .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-yellow .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-amber .navbar .navbar-brand,
.col-amber .navbar .navbar-brand:hover,
.col-amber .navbar .navbar-brand:active,
.col-amber .navbar .navbar-brand:focus {
    color: #fff
}

.col-amber .navbar .nav > li > a:hover,
.col-amber .navbar .nav > li > a:focus,
.col-amber .navbar .nav .open > a,
.col-amber .navbar .nav .open > a:hover,
.col-amber .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-amber .navbar .nav > li > a {
    color: #fff
}

.col-amber .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-amber .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-orange .navbar .navbar-brand,
.col-orange .navbar .navbar-brand:hover,
.col-orange .navbar .navbar-brand:active,
.col-orange .navbar .navbar-brand:focus {
    color: #fff
}

.col-orange .navbar .nav > li > a:hover,
.col-orange .navbar .nav > li > a:focus,
.col-orange .navbar .nav .open > a,
.col-orange .navbar .nav .open > a:hover,
.col-orange .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-orange .navbar .nav > li > a {
    color: #fff
}

.col-orange .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-orange .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-deep-orange .navbar .navbar-brand,
.col-deep-orange .navbar .navbar-brand:hover,
.col-deep-orange .navbar .navbar-brand:active,
.col-deep-orange .navbar .navbar-brand:focus {
    color: #fff
}

.col-deep-orange .navbar .nav > li > a:hover,
.col-deep-orange .navbar .nav > li > a:focus,
.col-deep-orange .navbar .nav .open > a,
.col-deep-orange .navbar .nav .open > a:hover,
.col-deep-orange .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-deep-orange .navbar .nav > li > a {
    color: #fff
}

.col-deep-orange .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-deep-orange .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-brown .navbar .navbar-brand,
.col-brown .navbar .navbar-brand:hover,
.col-brown .navbar .navbar-brand:active,
.col-brown .navbar .navbar-brand:focus {
    color: #fff
}

.col-brown .navbar .nav > li > a:hover,
.col-brown .navbar .nav > li > a:focus,
.col-brown .navbar .nav .open > a,
.col-brown .navbar .nav .open > a:hover,
.col-brown .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-brown .navbar .nav > li > a {
    color: #fff
}

.col-brown .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-brown .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-grey .navbar .navbar-brand,
.col-grey .navbar .navbar-brand:hover,
.col-grey .navbar .navbar-brand:active,
.col-grey .navbar .navbar-brand:focus {
    color: #fff
}

.col-grey .navbar .nav > li > a:hover,
.col-grey .navbar .nav > li > a:focus,
.col-grey .navbar .nav .open > a,
.col-grey .navbar .nav .open > a:hover,
.col-grey .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-grey .navbar .nav > li > a {
    color: #fff
}

.col-grey .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-grey .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-blue-grey .navbar .navbar-brand,
.col-blue-grey .navbar .navbar-brand:hover,
.col-blue-grey .navbar .navbar-brand:active,
.col-blue-grey .navbar .navbar-brand:focus {
    color: #fff
}

.col-blue-grey .navbar .nav > li > a:hover,
.col-blue-grey .navbar .nav > li > a:focus,
.col-blue-grey .navbar .nav .open > a,
.col-blue-grey .navbar .nav .open > a:hover,
.col-blue-grey .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-blue-grey .navbar .nav > li > a {
    color: #fff
}

.col-blue-grey .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-blue-grey .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-black .navbar .navbar-brand,
.col-black .navbar .navbar-brand:hover,
.col-black .navbar .navbar-brand:active,
.col-black .navbar .navbar-brand:focus {
    color: #fff
}

.col-black .navbar .nav > li > a:hover,
.col-black .navbar .nav > li > a:focus,
.col-black .navbar .nav .open > a,
.col-black .navbar .nav .open > a:hover,
.col-black .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-black .navbar .nav > li > a {
    color: #fff
}

.col-black .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-black .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-white .navbar .navbar-brand,
.col-white .navbar .navbar-brand:hover,
.col-white .navbar .navbar-brand:active,
.col-white .navbar .navbar-brand:focus {
    color: #fff
}

.col-white .navbar .nav > li > a:hover,
.col-white .navbar .nav > li > a:focus,
.col-white .navbar .nav .open > a,
.col-white .navbar .nav .open > a:hover,
.col-white .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-white .navbar .nav > li > a {
    color: #fff
}

.col-white .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-white .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.col-dark-gray .navbar .navbar-brand,
.col-dark-gray .navbar .navbar-brand:hover,
.col-dark-gray .navbar .navbar-brand:active,
.col-dark-gray .navbar .navbar-brand:focus {
    color: #fff
}

.col-dark-gray .navbar .nav > li > a:hover,
.col-dark-gray .navbar .nav > li > a:focus,
.col-dark-gray .navbar .nav .open > a,
.col-dark-gray .navbar .nav .open > a:hover,
.col-dark-gray .navbar .nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0.05)
}

.col-dark-gray .navbar .nav > li > a {
    color: #fff
}

.col-dark-gray .navbar .bars {
    float: left;
    padding: 10px 20px;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: 4px
}

.col-dark-gray .navbar .bars:hover {
    background-color: rgba(0, 0, 0, 0.08)
}

.side-closed .sidebar {
    width: 60px
}

.side-closed .sidebar .menu .list li span {
    display: none
}

.side-closed .sidebar .menu .list li a {
    line-height: 1rem
}

.side-closed .sidebar .menu .list li a:before,
.side-closed .sidebar .menu .list li a:after {
    top: calc(50% - 7px)
}

.side-closed.submenu-closed .sidebar .menu .list li .ml-menu,
.side-closed.submenu-closed .sidebar .menu .list .header {
    display: none !important
}

.side-closed.submenu-closed .navbar-header {
    width: 60px
}

.side-closed.submenu-closed .navbar-header .navbar-brand {
    padding-left: 0;
    padding-right: 0;
    margin: 0
}

.side-closed.submenu-closed .navbar-header .navbar-brand span {
    display: none
}

.side-closed.submenu-closed .profile-info {
    display: none
}

.side-closed section.content {
    margin-right: 65px
}

.side-closed .navbar-brand {
    margin-right: 30px
}

.side-closed.side-closed-hover .sidebar {
    width: 260px
}

.side-closed.side-closed-hover .sidebar .menu .list li span {
    display: block;
    float: right
}

.side-closed.side-closed-hover .sidebar .menu .list li a {
    padding: 9px 18px 9px 9px
}

.side-closed.side-closed-hover .sidebar .menu .list li i {
    float: right;
    line-height: 2rem
}

.side-closed.side-closed-hover .sidebar .menu .list .ml-menu li a {
    padding-right: 50px;
    padding-top: 7px;
    padding-bottom: 7px;
    line-height: 2rem
}

.side-closed.side-closed-hover section.content {
    margin-right: 276px
}


.boxed-layout .container > .navbar-header {
    margin-right: 0
}

.nav-tabs {
    border-bottom: 2px solid #eee
}

.nav-tabs > li {
    position: relative;
    top: -4px;
    right: -2px
}

.nav-tabs > li > a {
    border: none !important;
    color: #999 !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.nav-tabs > li > a:hover,
.nav-tabs > li > a:active,
.nav-tabs > li > a:focus {
    background-color: transparent !important
}

.nav-tabs > li > a:before {
    content: '';
    position: absolute;
    right: 0;
    width: 100%;
    height: 0;
    border-bottom: 2px solid #2196f3;
    bottom: 2px;
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -moz-transition: .1s ease-in;
    -o-transition: .1s ease-in;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in
}

.nav-tabs > li > a .material-icons {
    position: relative;
    top: 7px;
    margin-bottom: 8px
}

.nav-tabs li a.active {
    color: #222 !important
}

.nav-tabs li a.active:hover,
.nav-tabs li a.active:active,
.nav-tabs li a.active:focus {
    background-color: transparent !important
}

.nav-tabs li a.active:before {
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.nav-tabs + .tab-content {
    padding: 15px 0
}

.userlist-tab img {
    border-radius: 50% !important
}

.userlist-tab a:before {
    top: 35px
}

.nav-tabs.tab-col-red > li > a:before {
    border-bottom: 2px solid #f44336
}

.nav-tabs.tab-col-pink > li > a:before {
    border-bottom: 2px solid #e91e63
}

.nav-tabs.tab-col-purple > li > a:before {
    border-bottom: 2px solid #9c27b0
}

.nav-tabs.tab-col-deep-purple > li > a:before {
    border-bottom: 2px solid #673ab7
}

.nav-tabs.tab-col-indigo > li > a:before {
    border-bottom: 2px solid #3f51b5
}

.nav-tabs.tab-col-blue > li > a:before {
    border-bottom: 2px solid #2196f3
}

.nav-tabs.tab-col-light-blue > li > a:before {
    border-bottom: 2px solid #03a9f4
}

.nav-tabs.tab-col-cyan > li > a:before {
    border-bottom: 2px solid #00bcd4
}

.nav-tabs.tab-col-teal > li > a:before {
    border-bottom: 2px solid #009688
}

.nav-tabs.tab-col-green > li > a:before {
    border-bottom: 2px solid #4caf50
}

.nav-tabs.tab-col-light-green > li > a:before {
    border-bottom: 2px solid #8bc34a
}

.nav-tabs.tab-col-lime > li > a:before {
    border-bottom: 2px solid #cddc39
}

.nav-tabs.tab-col-yellow > li > a:before {
    border-bottom: 2px solid #ffe821
}

.nav-tabs.tab-col-amber > li > a:before {
    border-bottom: 2px solid #ffc107
}

.nav-tabs.tab-col-orange > li > a:before {
    border-bottom: 2px solid #ff9800
}

.nav-tabs.tab-col-deep-orange > li > a:before {
    border-bottom: 2px solid #ff5722
}

.nav-tabs.tab-col-brown > li > a:before {
    border-bottom: 2px solid #795548
}

.nav-tabs.tab-col-grey > li > a:before {
    border-bottom: 2px solid #9e9e9e
}

.nav-tabs.tab-col-blue-grey > li > a:before {
    border-bottom: 2px solid #607d8b
}

.nav-tabs.tab-col-black > li > a:before {
    border-bottom: 2px solid #000
}

.nav-tabs.tab-col-white > li > a:before {
    border-bottom: 2px solid #fff
}

.nav-tabs.tab-col-dark-gray > li > a:before {
    border-bottom: 2px solid #888
}

.noUi-target {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    direction: rtl
}

.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.noUi-origin {
    position: absolute;
    left: 0;
    top: 6px;
    right: 0;
    bottom: 0
}


.noUi-state-tap .noUi-origin {
    -webkit-transition: right .25s, top .25s;
    transition: right .25s, top .25s
}

.noUi-state-drag * {
    cursor: inherit !important
}

.noUi-base {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.noUi-horizontal {
    height: 18px
}

.noUi-background {
    background: #fafafa;
    box-shadow: inset 0 1px 1px #f0f0f0
}

.noUi-connect {
    background: #3fb8af;
    box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45);
    -webkit-transition: background 450ms;
    transition: background 450ms
}

.noUi-origin {
    border-radius: 2px
}

.noUi-target {
    border-radius: 4px;
    border: 1px solid #d3d3d3;
    box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #BBB
}

.noUi-target.noUi-connect {
    box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45), 0 3px 6px -5px #BBB
}

.noUi-dragable {
    cursor: w-resize
}

.noUi-target {
    box-shadow: none;
    border: 0
}

.noUi-base {
    height: 15px;
    top: -6px
}

.noUi-background {
    height: 3px;
    top: 6px;
    background-color: #bfbfbf;
    box-shadow: none
}

.noUi-horizontal {
    height: 3px
}

.noUi-connect {
    height: 3px;
    top: 6px;
    background-color: #26a69a;
    box-shadow: none
}

.noUi-target .range-label {
    position: absolute;
    height: 30px;
    width: 30px;
    top: -17px;
    right: -2px;
    background-color: #26a69a;
    border-radius: 50%;
    transition: border-radius .25s cubic-bezier(0.215, 0.61, 0.355, 1), transform .25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scale(0.5) rotate(45deg);
    transform-origin: 50% 100%
}

.noUi-target .noUi-active .range-label {
    border-radius: 15px 15px 0 15px;
    transform: rotate(45deg) translate(-23px, -25px)
}

.range-label span {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 12px;
    transform: rotate(-45deg);
    opacity: 0;
    position: absolute;
    top: 7px;
    right: -1px;
    transition: opacity .25s cubic-bezier(0.215, 0.61, 0.355, 1)
}

.noUi-active .range-label span {
    opacity: 1
}

.search-box:hover button.icon,
.search-box:active button.icon,
.search-box:focus button.icon {
    outline: 0;
    opacity: 1;
    margin-right: -43px
}

.search-box {
    overflow: hidden;
    width: 270px;
    vertical-align: middle;
    white-space: nowrap
}

.search-box input#search {
    width: 250px;
    height: 40px;
    background: white;
    border: 0;
    font-size: 10pt;
    float: right;
    color: #fff;
    padding-right: 15px;
    margin-bottom: 0;
    margin-top: 10px;
    border-radius: 50px
}

.search-box input#search:-moz-placeholder {
    color: #65737e
}

.search-box input#search:-ms-input-placeholder {
    color: #65737e
}

.search-box input#search::-webkit-input-placeholder {
    color: #65737e
}

.search-box input#search::-moz-placeholder {
    color: #65737e
}

.search-box button.icon {
    border: 0;
    background: transparent;
    height: 50px;
    width: 0;
    color: #4f5b66;
    opacity: 0;
    font-size: 10pt;
    transition: all .55s ease
}

.search-box button.icon .fa {
    font-size: 18px
}

.search-box:hover button.icon:hover {
    background: transparent
}

.to-do-list {
    padding-right: 0;
    margin-top: -10px;
    font-size: 12px;
    min-height: 311px;
    float: right;
    width: 100%
}

.to-do-list li {
    padding: 15px 0 5px 0;
    border-radius: 3px;
    position: relative;
    cursor: move;
    list-style: none;
    font-size: 14px;
    background: #fff;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.2)
}

.to-do-list li p {
    margin: 0;
    padding-right: 50px
}

.to-do-list li .todo-check input[type=checkbox] {
    visibility: hidden
}

.to-do-list .form-check .form-check-label span {
    padding-right: 0 !important
}

.todo-actionlist {
    position: absolute;
    left: 0;
    top: 11px
}

.todo-actionlist a {
    height: 24px;
    width: 24px;
    display: inline-block;
    float: right
}

.todo-actionlist a i {
    height: 24px;
    width: 24px;
    display: inline-block;
    text-align: center;
    line-height: 24px;
    font-size: 16px;
    color: #ccc
}

.todo-actionlist a:hover i {
    color: #666
}

.line-through {
    text-decoration: line-through
}

.todo-action-bar {
    margin-top: 20px
}

.todo-check {
    width: 20px;
    position: relative;
    margin-left: 10px;
    margin-right: 10px
}

.todo-check input[type=checkbox] {
    visibility: hidden
}

.todo-check label {
    cursor: pointer;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    right: 0;
    border-radius: 2px
}

.todo-done i {
    font-size: 14px
}

.todo-remove i {
    font-size: 10px
}

.inbox-small-cells .todo-check input[type=checkbox] {
    visibility: hidden
}

.notice-board {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    padding: 10px
}

.notice-board .notice-body {
    font-size: 13px;
    padding: 0 10px 5px 0
}

.notice-board .notice-body p {
    margin-bottom: 0
}

.notice-board .notice-body .notice-heading {
    margin: 5px 0 0 0
}

#wrap {
    width: 100%;
    margin: 0 auto
}

#external-events {
    float: right;
    width: 100%;
    text-align: right
}

#external-events h4 {
    font-size: 16px;
    margin-top: 0;
    padding-top: 1em
}

#external-events .fc-event {
    margin: 10px 0;
    cursor: pointer;
    padding: 5px
}

#external-events p {
    margin: 1.5em 0;
    font-size: 11px;
    color: #666
}

#external-events p input {
    margin: 0;
    vertical-align: middle
}

#external-events .material-icons {
    color: #fff;
    font-size: 16px
}

#event_title {
    font-size: 1.2rem
}

#calendar {
    float: left;
    width: 100%
}

.fc-event {
    border: 0 !important;
    color: #fff !important;
    background-color: #ff5722;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(76, 175, 80, 0.4)
}

.fc-state-active {
    background: #a389d4 !important;
    color: #fff
}

.fc-unthemed td.fc-today {
    background: #edeef3
}

.fc-day-grid-event {
    color: white !important;
    padding: 3px;
    text-align: center;
    font-size: 11px;
    margin: 0 3px
}

.label-event-meeting {
    background: linear-gradient(-45deg, #9ce89d, #cdfa7e) !important
}

.label-event-holiday {
    background: linear-gradient(-45deg, #a890d3, #edbae7) !important
}

.label-event-birthday {
    background: linear-gradient(-45deg, #fda582, #f7cf68) !important
}

.label-event-competition {
    background: linear-gradient(-45deg, #72c2ff, #86f0ff) !important
}

.label-event-dinner {
    background: linear-gradient(-45deg, #9ce89d, #cdfa7e) !important
}

.label-event-party {
    background: linear-gradient(-45deg, #a890d3, #edbae7) !important
}

.label-event-Untitled {
    background: linear-gradient(-45deg, #fda582, #f7cf68) !important
}

.fc-content-skeleton thead {
    border-bottom: 0
}

.fc-state-default {
    border: 1px solid #eee;
    background: transparent;
    color: #7e869d;
    border-radius: 0
}

.fc-state-active {
    background: #a389d4 !important;
    color: #fff
}

.deskCal .fc-prev-button {
    margin-left: 10px;
    border-radius: 40px !important;
    text-align: center;
    min-width: 30px;
    height: 30px;
    background: #4caf50;
    color: white;
    border: 1px solid #4caf50;
    line-height: .9 !important;
    font-size: .76rem
}

.deskCal .fc-next-button {
    margin-right: 10px;
    border-radius: 40px !important;
    text-align: center;
    min-width: 30px;
    height: 30px;
    background: #4caf50;
    color: white;
    border: 1px solid #4caf50;
    line-height: .9 !important;
    font-size: .76rem
}

.deskCal .fc-today-button {
    padding: .4em 1.3em !important;
    height: 32px !important;
    border-radius: 50px;
    outline: initial !important;
    box-shadow: none !important;
    font-size: .8rem;
    background: #4caf50;
    opacity: 1;
    color: #fff
}

.deskCal .fc-toolbar h2 {
    font-size: 16px
}

.deskCal .fc-content-skeleton tr {
    border-bottom: 0 solid rgba(0, 0, 0, 0.12)
}

.chat .chat-message .fa-file-o,
.chat .chat-message .fa-file-image-o {
    font-size: 16px;
    color: gray;
    cursor: pointer
}

.chat-app {
    height: 690px
}

.chat-app .people-list {
    width: 280px;
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px
}

.chat-app .chat {
    border-right: 1px solid #e8e8e8
}

.chat-app .list_btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    padding: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    display: none;
    -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px
}

.people-list {
    transition: .5s
}

.people-list .chat-list li {
    padding: 10px 15px;
    list-style: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px
}

.people-list .chat-list li:hover {
    background: #efefef;
    cursor: pointer
}

.people-list .chat-list li.active {
    background: #efefef
}

.people-list .chat-list li .name {
    font-size: 15px
}

.people-list .chat-list img {
    width: 45px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%
}

.people-list img {
    float: right;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%
}

.people-list .about {
    float: right;
    padding-right: 8px
}

.people-list .status {
    color: #999;
    font-size: 13px
}

.chat .chat-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    border-radius: .55rem 0 0 0
}

.chat .chat-header img {
    float: right;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    width: 45px
}

.chat .chat-header .chat-about {
    float: right;
    padding-right: 10px
}

.chat .chat-header .chat-with {
    font-weight: bold;
    font-size: 16px
}

.chat .chat-header .chat-num-messages {
    color: 434651
}

.chat .chat-history {
    padding: 20px;
    border-bottom: 2px solid #fff;
    height: 450px
}

.chat .chat-history ul {
    padding: 0
}

.chat .chat-history ul li {
    list-style: none
}

.chat .chat-history .message-data {
    margin-bottom: 15px
}

.chat .chat-history .message-data .message-data-name {
    font-size: 13px;
    font-weight: 700
}

.chat .chat-history .message-data-time {
    color: #434651;
    padding-left: 6px
}

.chat .chat-history .message {
    color: #444;
    padding: 18px 20px;
    line-height: 26px;
    font-size: 13px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
    margin-bottom: 30px;
    width: 90%;
    position: relative
}

.chat .chat-history .message:after {
    bottom: 100%;
    right: 7%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px
}

.chat .chat-history .my-message {
    background: #e8e8e8
}

.chat .chat-history .my-message:after {
    bottom: 100%;
    right: 7%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #e8e8e8;
    border-width: 10px;
    margin-right: -10px
}

.chat .chat-history .other-message {
    background: #d9e7ea
}

.chat .chat-history .other-message:after {
    border-bottom-color: #d9e7ea;
    right: 93%
}

.chat .chat-message {
    padding: 20px
}

.chat .chat-message textarea {
    width: 100%;
    border: 0;
    padding: 10px 20px;
    font: 14px/22px Lato, Arial, sans-serif;
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    resize: none
}

.online {
    margin-left: 3px;
    font-size: 10px;
    color: #86bb71
}

.offline {
    margin-left: 3px;
    font-size: 10px;
    color: #e38968
}

.me {
    margin-left: 3px;
    font-size: 10px;
    color: #0498bd
}

.float-right {
    float: left
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0
}

.slimScrollBar {
    z-index: 0
}

.chat-upload {
    float: left
}

.contact-detail .fa {
    float: right;
    width: 30px;
    font-size: 20px;
    margin-top: 5px
}

.contact-detail span {
    float: right;
    width: calc(100% - 30px);
    margin-bottom: 20px
}

.contact-detail .fa-envelope {
    font-size: 15px
}

.contact-detail .fa-mobile {
    font-size: 25px
}

.contact-photo {
    float: right;
    width: 100%;
    text-align: center;
    padding-top: 20px
}

.contact-photo img {
    margin: 0 auto;
    width: 130px;
    padding: 3px;
    border: 3px solid #d2d6de;
    border-radius: 50% 50% 50% 50%
}

.contact-usertitle {
    text-align: center;
    margin-top: 5px
}

.contact-usertitle-name {
    font-size: 20px;
    margin-bottom: 2px;
    font-weight: bold;
    color: #3a405b
}

.contact-usertitle-job {
    color: #777;
    font-size: 12px;
    margin-bottom: 5px
}

.newLabelBtn {
    padding: 20px 0;
    text-align: center
}

.alert-dismissible .close {
    text-indent: 0
}

.alert.alert-dismissible {
    color: #fff
}

.contact_list .phone {
    position: relative;
    padding-right: 20px
}

.contact_list .phone .material-icons {
    position: absolute;
    right: 0;
    font-size: 16px;
    top: 1px
}

.contact-grid {
    float: right;
    width: 100%;
    text-align: center
}

.profile-header {
    min-height: 150px;
    color: #fff
}

.user-name {
    padding: 3px;
    font-size: 16px;
    text-align: center;
    padding-top: 10px
}

.user-img {
    border-radius: 50%;
    max-width: 112px;
    margin-top: -70px;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
    margin-bottom: 20px
}

.profile-userbuttons {
    text-align: center;
    margin-top: 10px
}

.contact-grid .phone .material-icons {
    font-size: 16px;
    padding: 4px 0 40px 7px
}

.categories ul li a,
.categories ul li a:active,
.categories ul li a:hover {
    line-height: 24px;
    background: #fff;
    color: #4e5961;
    text-decoration: none
}

.portfolio-thumb .enlarge,
.portfolio-thumb .link {
    display: inline-block;
    margin: 0;
    margin-top: -25px;
    font-size: 50px;
    line-height: 50px;
    color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    height: 50px;
    width: 64px;
    top: 40%;
    right: 50%;
    text-align: center;
    z-index: 3
}

.portfolio-thumb .enlarge.centered,
.portfolio-thumb .link.centered {
    margin-right: -32px;
    transform: translateY(-200px);
    transition-delay: 0s
}

.portfolio-item {
    position: relative;
    margin-bottom: 30px;
    transform: scale(1);
    opacity: 1;
    transition: all .4s ease-out
}

.portfolio-item.filtered {
    transform: scale(0.5);
    opacity: .2;
    cursor: default
}

.portfolio-item.filtered a {
    cursor: default
}

.portfolio-item.filtered .enlarge {
    display: none
}

.portfolio-item.filtered .link {
    display: none
}

.portfolio-item.filtered .overlay-mask {
    display: none
}

.portfolio-item.filtered .project-title {
    display: none
}

.portfolio-thumb {
    display: block;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-radius: 15px
}

.portfolio-thumb .overlay-mask {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #b749ca;
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 1;
    transition: opacity .3s ease-out
}

.portfolio-thumb:hover .overlay-mask {
    opacity: .8;
    filter: alpha(opacity=80)
}

.portfolio-thumb:hover .enlarge {
    transform: translateX(0);
    opacity: 1;
    filter: alpha(opacity=100);
    transition: all .3s ease-out .3s
}

.portfolio-thumb:hover .enlarge.centered {
    transform: translateY(0);
    transition-delay: .3s
}

.portfolio-thumb:hover .link {
    transform: translate(0);
    opacity: 1;
    filter: alpha(opacity=100);
    transition: all .3s ease-out .6s
}

.portfolio-thumb:hover .link.centered {
    transform: translateY(0);
    transition-delay: .3s
}

.portfolio-thumb:hover .project-title {
    bottom: 0;
    transition: bottom .3s ease-out .1s, color .2s ease-out 0s
}

.portfolio-thumb .enlarge {
    margin-right: -84px;
    transform: translateX(200px);
    transition: all .3s ease-out
}

.portfolio-thumb .link {
    margin-right: 20px;
    transform: translateX(-200px);
    transition: all .3s ease-out
}

.portfolio-thumb .project-title {
    display: block;
    width: 100%;
    position: absolute;
    bottom: -100px;
    background: #fff;
    margin: 0;
    padding: 20px 0;
    font-size: 21px;
    font-weight: 300;
    color: #777;
    text-align: center;
    z-index: 2;
    transition: bottom .4s ease-out, color .2s ease-out
}

.portfolio-thumb .project-title:hover {
    color: #5cc9df
}

.categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    text-align: center
}

.categories ul li {
    display: inline-block;
    padding: 0;
    line-height: 24px;
    background: transparent;
    margin: 0;
    margin-right: 5px;
    margin-bottom: 10px
}

.categories ul li a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: all .2s ease-out
}

.categories ul li a:hover {
    color: #fff;
    background: #9c27b0
}

.categories ul li.active a {
    color: #fff;
    background: #9c27b0
}

.projects-container .row {
    transition: height .5s ease-out
}

.no-opacity .portfolio-item.filtered {
    display: none
}

.scrollimation .portfolio-thumb {
    transform: translateY(100px);
    opacity: 0;
    transition: opacity .4s ease-out, transform .4s ease-out
}

.scrollimation .portfolio-thumb.in {
    transform: translateY(0);
    opacity: 1
}

.touch .scrollimation .portfolio-thumb {
    transform: translateY(0);
    opacity: 1
}

.gu-mirror {
    position: fixed !important;
    margin: 0 !important;
    z-index: 9999 !important;
    opacity: .8;
    filter: alpha(opacity=80)
}

.gu-hide {
    display: none !important
}

.gu-unselectable {
    user-select: none !important
}

.gu-transit {
    opacity: .2;
    filter: alpha(opacity=20)
}

.taskbar .checked {
    border: 3px solid #dda500 !important
}

.taskbar .box {
    padding-bottom: 7px
}

.taskbar .box .task-name {
    font-size: 18px;
    font-weight: 600;
    color: green
}

.taskbar .box .task-desc {
    font-size: 1.1em;
    color: #555
}

.taskbar .box .task-deadline {
    margin-top: 5px;
    margin-left: 5px;
    font-size: .8em;
    color: #555
}

.taskbar .done div.box {
    pointer-events: none
}

.taskbar .done div.box .tasks {
    color: #fff !important
}

.taskbar .avatar-image {
    display: inline-block;
    position: relative
}

.taskbar .task-header {
    text-align: center;
    font-size: 25px;
    padding: 20px;
    color: #6b6a6a
}
.pad {
    padding-right: 0;
    padding-left: 0;
    display: flex
}

.move {
    text-align: center;
    background: #eee
}

.move .btn {
    margin-bottom: 20px
}

.board {
    float: right;
    position: relative;
    max-width: 300px;
    height: auto;
    margin: 8px;
    background-color: lightgray;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2)
}



.noselect {
    user-select: none
}

.gu-mirror {
    cursor: move;
    cursor: grabbing;
    position: fixed !important;
    margin: 0 !important;
    z-index: 9999 !important;
    opacity: 1;
    transform: rotate(5deg)
}

.gu-hide {
    display: none !important
}

.gu-unselectable {
    user-select: none !important
}

.gu-transit {
    opacity: .4;
    filter: alpha(opacity=20)
}

#board1 header {
    background-color: #bc3425;
    color: white
}

#board2 header {
    background-color: #92549e;
    color: white
}

#board3 header {
    background-color: #00b1cf;
    color: white
}

.dashboard-flot-chart {
    height: 275px
}

.dashboard-donut-chart {
    height: 265px;
    text-align: center
}

.dashboard-line-chart {
    height: 250px
}

.dashboard-stat-list {
    list-style: none;
    padding-right: 0;
    margin-top: 40px
}

.dashboard-stat-list li {
    padding: 16px 0 0 0
}

.dashboard-stat-list li small {
    font-size: 8px
}

.dashboard-task-infos .progress {
    height: 10px;
    position: relative;
    top: 6px
}

.totalEarning {
    text-align: center;
    padding: 6px;
    color: #ff9800
}

.earningProgress .progress {
    height: 9px
}

.p-15 {
    padding: 15px
}

.p-10 {
    padding: 10px
}

.b-b {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2)
}

.mail_listing .mail-option .btn-group {
    margin-bottom: 5px
}

#mail-nav .btn {
    min-width: 110px
}

#mail-nav #mail-folders > li {
    margin: 2px 0
}

#mail-nav #mail-folders > li a:hover {
    color: #fff;
    background-color: #337ab7
}

#mail-nav #mail-folders > li.active > a {
    color: #fff;
    background-color: #337ab7
}

#mail-nav #mail-folders > li.active > a:hover {
    background-color: #32c0c3
}

#mail-nav #mail-labels {
    float: right;
    width: 100%
}

#mail-nav #mail-labels li {
    float: right
}

#mail-nav #mail-labels .material-icons {
    font-size: 16px;
    height: 16px;
    padding: 2px;
    float: right
}

#mail-nav #online-offline .material-icons {
    font-size: 8px;
    height: 8px;
    padding: 0 0 2px 5px
}

#mail-nav #mail-labels li a:hover,
#mail-nav #online-offline li a:hover {
    background-color: #e6e6e6
}

#mail-nav li a {
    color: #212529;
    padding: 7px 10px;
    display: block;
    border-radius: 4px;
    position: relative;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.composeForm {
    padding: 25px
}

.inbox-body {
    padding: 20px
}

.inbox-header {
    text-align: right
}

.replyBox {
    border: 1px solid rgba(120, 130, 140, 0.13);
    padding: 20px
}

.inbox-center .table thead th {
    vertical-align: middle;
    padding: 20px
}

.email-btn-group {
    position: relative;
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    vertical-align: middle
}

.max-texts {
    padding: 15px !important
}

.max-texts a {
    color: #212529;
    padding: 10px 0 10px 0
}

.pricingTable {
    text-align: center;
    background: #fff;
    margin: 0 -10px;
    box-shadow: 0 0 10px #ababab;
    padding-bottom: 40px;
    border-radius: 10px;
    color: #cad0de;
    transform: scale(1);
    transition: all .5s ease 0s
}

.pricingTable:hover {
    transform: scale(1.05);
    z-index: 1
}

.pricingTable:hover .pricingTable-header {
    background: #ff9624
}

.pricingTable:hover .pricingTable-header i {
    color: #fff
}

.pricingTable:hover .price-value {
    color: #fff
}

.pricingTable:hover .month {
    color: #fff
}

.pricingTable .pricingTable-header {
    padding: 40px 0;
    background: #f5f6f9;
    border-radius: 10px 10px 50% 50%;
    transition: all .5s ease 0s
}

.pricingTable .pricingTable-header i {
    font-size: 50px;
    color: #858c9a;
    margin-bottom: 10px;
    transition: all .5s ease 0s
}

.pricingTable .price-value {
    font-size: 35px;
    color: #ff9624;
    transition: all .5s ease 0s
}

.pricingTable .month {
    display: block;
    font-size: 14px;
    color: #cad0de
}

.pricingTable .heading {
    font-size: 24px;
    color: #ff9624;
    margin-bottom: 20px;
    text-transform: uppercase;
    padding-top: 15px
}

.pricingTable.blue .price-value {
    color: #4b64ff
}

.pricingTable.blue .heading {
    color: #4b64ff
}

.pricingTable.blue:hover .pricingTable-header {
    background: #4b64ff
}

.pricingTable.blue .pricingTable-signup a {
    background: #4b64ff
}

.pricingTable.blue .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #4b64ff
}

.pricingTable.red .price-value {
    color: #ff4b4b
}

.pricingTable.red .heading {
    color: #ff4b4b
}

.pricingTable.red:hover .pricingTable-header {
    background: #ff4b4b
}

.pricingTable.red .pricingTable-signup a {
    background: #ff4b4b
}

.pricingTable.red .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #ff4b4b
}

.pricingTable.greenColor .price-value {
    color: #40c952
}

.pricingTable.greenColor:hover .pricingTable-header {
    background: #40c952
}

.pricingTable.greenColor:hover .price-value {
    color: #fff
}

.pricingTable.greenColor .pricingTable-signup a {
    background: #40c952
}

.pricingTable.greenColor .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #40c952
}

.pricingTable.blueColor:hover .pricingTable-header {
    background: #4b64ff
}

.pricingTable.blueColor:hover .price-value {
    color: #fff
}

.pricingTable.blueColor .price-value {
    color: #4b64ff
}

.pricingTable.blueColor .heading {
    color: #4b64ff
}

.pricingTable.blueColor .pricingTable-signup a {
    background: #4b64ff
}

.pricingTable.redColor:hover .pricingTable-header {
    background: #ff4b4b
}

.pricingTable.redColor:hover .price-value {
    color: #fff
}

.pricingTable.redColor .price-value {
    color: #ff4b4b
}

.pricingTable.redColor .heading {
    color: #ff4b4b
}

.pricingTable.redColor .pricingTable-signup a {
    background: #ff4b4b
}

.pricingTable .pricing-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px
}

.pricingTable .pricing-content ul li {
    line-height: 30px;
    color: #a7a8aa
}

.pricingTable .pricingTable-signup a {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    padding: 10px 35px;
    border-radius: 20px;
    background: #ffa442;
    text-transform: uppercase;
    transition: all .3s ease 0s
}

.pricingTable .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #ffa442
}

.pricingTable.green .heading {
    color: #40c952
}

@media screen and (max-width: 990px) {
    .pricingTable {
        margin: 0 0 20px 0
    }
}

.greenColor .heading {
    font-size: 24px;
    color: #40c952;
    margin-bottom: 20px;
    text-transform: uppercase
}

.profile-tab-box {
    background: #fff;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%
}

.skill-progress {
    height: 10px
}

.tab-all a {
    color: #948f8f !important
}

.tab-all a.active {
    background-color: #337ab7 !important;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(51, 122, 183, 0.44);
    color: #fff !important;
    border-radius: 30px;
}

.cd-container {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto
}

.cd-container::after {
    content: '';
    display: table;
    clear: both
}

header {
    height: 200px;
    line-height: 200px;
    text-align: center;
    background: #303e49
}

header h1 {
    color: #fff;
    font-size: 18px;
    font-size: 1.125rem
}

.timelineImgHight {
    width: 150px
}

@media only screen and (min-width: 1170px) {
    header {
        height: 300px;
        line-height: 300px
    }

    header h1 {
        font-size: 24px;
        font-size: 1.5rem
    }
}

#cd-timeline {
    position: relative;
    padding: 2em 0;
    margin-top: 2em;
    margin-bottom: 2em
}

#cd-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 18px;
    height: 100%;
    width: 4px;
    background: #d7e4ed
}

@media only screen and (min-width: 1170px) {
    #cd-timeline {
        margin-top: 3em;
        margin-bottom: 3em
    }

    #cd-timeline::before {
        right: 50%;
        margin-right: -2px
    }
}

.cd-timeline-block {
    position: relative;
    margin: 2em 0
}

.cd-timeline-block::after {
    clear: both;
    content: "";
    display: table
}

.cd-timeline-block:first-child {
    margin-top: 0
}

.cd-timeline-block:last-child {
    margin-bottom: 0
}

@media only screen and (min-width: 1170px) {
    .cd-timeline-block {
        margin: 4em 0
    }

    .cd-timeline-block:first-child {
        margin-top: 0
    }

    .cd-timeline-block:last-child {
        margin-bottom: 0
    }
}

.cd-timeline-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #e6dfdf, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05)
}

.cd-timeline-img img {
    display: block;
    width: 48px;
    position: relative;
    right: 30%;
    top: 30%;
    margin-right: -12px;
    margin-top: -12px;
    border-radius: 50%
}

.cd-timeline-img.cd-picture {
    background: #75ce66
}

.cd-timeline-img.cd-movie {
    background: #c03b44
}

.cd-timeline-img.cd-location {
    background: #f0ca45
}

@media only screen and (min-width: 1170px) {
    .cd-timeline-img {
        width: 60px;
        height: 60px;
        right: 50%;
        margin-right: -30px;
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden
    }

    .cssanimations .cd-timeline-img.is-hidden {
        visibility: hidden
    }

    .cssanimations .cd-timeline-img.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-1 .6s;
        -moz-animation: cd-bounce-1 .6s;
        animation: cd-bounce-1 .6s
    }
}

@-webkit-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2)
    }

    100% {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -moz-transform: scale(0.5)
    }

    60% {
        opacity: 1;
        -moz-transform: scale(1.2)
    }

    100% {
        -moz-transform: scale(1)
    }
}

@keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2)
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
}

.cd-timeline-content {
    position: relative;
    margin-right: 60px;
    background: #f0f1f3;
    border-radius: .25em;
    padding: 1em;
    box-shadow: 0 3px 0 #d7e4ed
}

.cd-timeline-content::after {
    clear: both;
    content: "";
    display: table
}

.cd-timeline-content h2 {
    color: #303e49
}

.cd-timeline-content p,
.cd-timeline-content .cd-read-more,
.cd-timeline-content .cd-date {
    font-size: 13px;
    font-size: .8125rem
}

.cd-timeline-content .cd-read-more,
.cd-timeline-content .cd-date {
    display: inline-block
}

.cd-timeline-content p {
    margin: 1em 0;
    line-height: 1.6
}

.cd-timeline-content .cd-read-more {
    float: left;
    padding: .8em 1em;
    background: #acb7c0;
    color: #fff;
    border-radius: .25em
}

.no-touch .cd-timeline-content .cd-read-more:hover {
    background-color: #bac4cb
}

.cd-timeline-content .cd-date {
    float: right;
    padding: .8em 0;
    opacity: .7
}

.cd-timeline-content::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 100%;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-left: 7px solid #fff
}

@media only screen and (min-width: 768px) {
    .cd-timeline-content h2 {
        font-size: 20px;
        font-size: 1.25rem
    }

    .cd-timeline-content p {
        font-size: 16px;
        font-size: 1rem
    }

    .cd-timeline-content .cd-read-more,
    .cd-timeline-content .cd-date {
        font-size: 14px;
        font-size: .875rem
    }
}

@media only screen and (min-width: 1170px) {
    .cd-timeline-content {
        margin-right: 0;
        padding: 1.6em;
        width: 45%
    }

    .cd-timeline-content::before {
        top: 24px;
        right: 100%;
        border-color: transparent;
        border-right-color: #f0f1f3
    }

    .cd-timeline-content .cd-read-more {
        float: right
    }

    .cd-timeline-content .cd-date {
        position: absolute;
        width: 100%;
        right: 122%;
        top: 6px;
        font-size: 16px;
        font-size: 1rem
    }

    .cd-timeline-block:nth-child(even) .cd-timeline-content {
        float: left
    }

    .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
        top: 24px;
        right: auto;
        left: 100%;
        border-color: transparent;
        border-left-color: #f0f1f3
    }

    .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
        float: left
    }

    .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
        right: auto;
        left: 122%;
        text-align: left
    }

    .cssanimations .cd-timeline-content.is-hidden {
        visibility: hidden
    }

    .cssanimations .cd-timeline-content.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-2 .6s;
        -moz-animation: cd-bounce-2 .6s;
        animation: cd-bounce-2 .6s
    }
}

@media only screen and (min-width: 1170px) {
    .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
        -webkit-animation: cd-bounce-2-inverse .6s;
        -moz-animation: cd-bounce-2-inverse .6s;
        animation: cd-bounce-2-inverse .6s
    }
}

@-webkit-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px)
    }

    100% {
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -moz-transform: translateX(100px)
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(-20px)
    }

    100% {
        -moz-transform: translateX(0)
    }
}

@keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        -o-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px)
    }

    100% {
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100px)
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(20px)
    }

    100% {
        -moz-transform: translateX(0)
    }
}

@keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0)
    }
}

.timeline {
    list-style: none;
    padding: 0 0 8px;
    position: relative
}

.timeline:before {
    top: 00px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #e7e7e7;
    right: 25px;
    margin-left: -1.5px
}

.timeline > li {
    margin-bottom: 5px;
    position: relative
}

.timeline > li:before {
    content: " ";
    display: table
}

.timeline > li:after {
    content: " ";
    display: table;
    clear: both
}

.timeline > li > .timeline-badge {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 25px;
    right: 8px
}

.timeline > li > .timeline-badge img {
    border-radius: 50%;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2)
}

.timeline-title {
    margin: 4px 0 !important;
    font-size: 13px
}

.timeline-body > p {
    font-size: 12px;
    margin-bottom: 2px
}

.left-timeline {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative
}

.left-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #eee;
    right: 20%;
    margin-right: -6px
}

.left-timeline > li {
    position: relative
}

.left-timeline > li:first-child .left-icon {
    background: #fff;
    color: #666
}

.left-timeline > li:first-child .left-time span.large {
    color: #444;
    font-size: 17px !important;
    font-weight: 700
}

.left-timeline > li:nth-child(odd) .left-label {
    background: #f0f1f3
}

.left-timeline > li:nth-child(odd) .left-label:after {
    border-left-color: #f0f1f3
}

.left-timeline > li:nth-child(odd) .left-time span:last-child {
    color: #444;
    font-size: 13px
}

.left-timeline > li .left-time {
    display: block;
    width: 23%;
    padding-left: 70px;
    position: absolute
}

.left-timeline > li .left-time span {
    display: block;
    text-align: left
}

.left-timeline > li .left-time span:first-child {
    font-size: 15px;
    color: #3d4c5a;
    font-weight: 700
}

.left-timeline > li .left-time span:last-child {
    font-size: 14px;
    color: #444
}

.left-timeline > li .left-label {
    margin: 0 25% 15px 0;
    background: #f0f1f3;
    padding: 1.2em;
    position: relative;
    border-radius: 5px
}

.left-timeline > li .left-label:after {
    left: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-left-color: #f0f1f3;
    border-width: 10px;
    top: 10px
}

.left-timeline > li .left-label blockquote {
    font-size: 16px
}

.left-timeline > li .left-label .map-checkin {
    border: 5px solid rgba(235, 235, 235, 0.2);
    box-shadow: 0 0 0 1px #ebebeb;
    background: #fff !important
}

.left-timeline > li .left-label h2 {
    margin: 0;
    padding: 0 0 10px 0;
    line-height: 26px;
    font-size: 16px;
    font-weight: normal
}

.left-timeline > li .left-label h2 a {
    font-size: 15px
}

.left-timeline > li .left-label h2 a:hover {
    text-decoration: none
}

.left-timeline > li .left-label h2 span {
    font-size: 15px
}

.left-timeline > li .left-label p {
    color: #444
}

.left-timeline > li .left-icon {
    width: 40px;
    height: 40px;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    font-size: 1.4em;
    line-height: 40px;
    position: absolute;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    right: 20%;
    top: 0;
    margin: 0 -25px 0 0
}

.left-timeline > li .left-icon img {
    border-radius: 50%
}

.left-timeline > li .empty span {
    color: #777
}

@media screen and (max-width: 992px) and (min-width: 768px) {
    .left-timeline > li .left-time {
        padding-left: 60px
    }
}

@media screen and (max-width: 65.375em) {
    .left-timeline > li .left-time span:last-child {
        font-size: 12px
    }
}

@media screen and (max-width: 47.2em) {
    .left-timeline:before {
        display: none
    }

    .left-timeline > li .left-time {
        width: 100%;
        position: relative;
        padding: 0 0 20px 0
    }

    .left-timeline > li .left-time span {
        text-align: right
    }

    .left-timeline > li .left-label {
        margin: 0 0 30px 0;
        padding: 1em;
        font-weight: 400;
        font-size: 95%
    }

    .left-timeline > li .left-label:after {
        left: auto;
        right: 20px;
        border-left-color: transparent;
        border-bottom-color: #f5f5f6;
        top: -20px
    }

    .left-timeline > li .left-icon {
        position: relative;
        float: left;
        right: auto;
        margin: -64px 0 0 5px
    }

    .left-timeline > li:nth-child(odd) .left-label:after {
        border-left-color: transparent;
        border-bottom-color: #f5f5f6
    }
}

.owl-carousel,
.bx-wrapper {
    direction: ltr
}

.owl-carousel .owl-item {
    direction: rtl
}

.owl-btns {
    text-align: center
}

.owl-btns [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-btns [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none
}

#dashboard_slide {
    padding: 6px 0 0 10px
}

#dashboard_slide2 {
    padding: 0 0 0 10px
}

.carousel-content {
    height: 232px;
    border-radius: 5px
}

.carousel-content .slide-heading {
    font-size: 20px
}

.morris-hover.morris-default-style {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.flot-chart {
    width: 100%;
    height: 320px
}

.legendLabel {
    width: 85px !important;
    position: relative;
    right: 3px
}

#multiple_axis_chart .legendLabel {
    width: 160px !important
}

.sparkline {
    text-align: center
}

.chart-box {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 30px
}

.chart-box2 {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center
}

.chart-note {
    text-transform: capitalize;
    display: inline-block;
    margin-left: 12px;
    font-size: 14px
}

.chart-note .dot {
    margin-left: 7px
}

.chart-statis {
    display: inline-block;
    margin-left: 35px
}

.chart-statis .label {
    display: block;
    text-transform: capitalize;
    line-height: 1.2
}

.chart-statis .index {
    font-size: 18px;
    color: #333;
    padding-right: 15px
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%
}

.dot-black {
    background: #000
}

.dot-orange {
    background: #f96332
}

.chart-box-left {
    padding-right: 10px
}

.area_chart-style {
    height: 170px;
    margin: 30px
}

.chart-shadow2 {
    -webkit-filter: drop-shadow(0 -6px 4px rgba(106, 141, 247, 0.5));
    filter: drop-shadow(0 -6px 4px rgba(106, 141, 247, 0.5))
}

.chart-shadow {
    -webkit-filter: drop-shadow(0 9px 2px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(0 9px 2px rgba(0, 0, 0, 0.3))
}

.chartsh {
    height: 16rem
}

.axisData {
    position: absolute;
    color: #fff;
    z-index: 1;
    text-transform: uppercase;
    display: flex;
    width: 100%;
    bottom: 0
}

.axisData .tick {
    flex: 1;
    position: relative;
    overflow: hidden;
    opacity: .2;
    font-size: 11px;
    text-align: center;
    line-height: 40px;
    padding-top: 150px
}

.axisData .tick:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2)
}

.axisData .tick:hover .value.productValue {
    transform: translateY(0);
    display: block
}

.axisData .tick:hover .value.serviceValue {
    transform: translateY(0);
    display: block;
    right: 0;
    top: 80px;
    color: #000;
    transition: .3s transform
}

.axisData .tick .value {
    transform: translateY(20px);
    transition: .3s transform;
    position: absolute;
    top: 20px;
    color: #000;
    border-radius: 2px;
    width: 100%;
    line-height: 20px
}

.dot-product {
    background: #f6699c
}

.dot-service {
    background: #7f55fc
}

#barChart,
#barImg,
#lineChart,
#donutChart,
#pieChart,
#gaugeChart,
#radialLineChart,
#dumbbellPlotChart {
    width: 100%;
    height: 400px
}

#amChartBar,
#amChartCylinder,
#amChartGauge {
    width: 100%;
    height: 200px
}

#amChartLineHome,
#amChartCylinderHome {
    width: 100%;
    height: 300px
}

#mapBubble {
    width: 100%;
    height: 500px
}

#amChartLineWidget {
    width: 100%;
    height: 350px
}

.amcharts-export-menu-top-right {
    top: 10px;
    left: 0
}

.wizard,
.tabcontrol {
    display: block;
    width: 100%;
    overflow: hidden
}

.wizard a,
.tabcontrol a {
    outline: 0
}

.wizard ul,
.tabcontrol ul {
    list-style: none !important;
    padding: 0;
    margin: 0
}

.wizard ul > li,
.tabcontrol ul > li {
    display: block;
    padding: 0
}

.wizard > .steps .current-info,
.tabcontrol > .steps .current-info,
.wizard > .content > .title,
.tabcontrol > .content > .title {
    position: absolute;
    right: -999em
}

.wizard > .steps {
    position: relative;
    display: block;
    width: 100%
}

.wizard.vertical > .steps {
    float: right;
    width: 30%;
    clear: none
}

.wizard.vertical > .steps > ul > li {
    float: none;
    width: 100%
}

.wizard.vertical > .content {
    float: right;
    margin: 0 0 .5em 0;
    width: 70%;
    clear: none
}

.wizard.vertical > .actions {
    float: left;
    width: 100%
}

.wizard.vertical > .actions > ul > li {
    margin: 0 1em 0 0
}

.wizard > .steps .number {
    font-size: 1.429em
}

.wizard > .steps > ul > li {
    width: 25%;
    float: right
}

.wizard > .actions > ul > li {
    float: right
}

.wizard > .steps a {
    display: block;
    width: auto;
    margin: 0 .5em .5em;
    padding: 1em 1em;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px
}

.wizard > .steps a:hover,
.wizard > .steps a:active {
    display: block;
    width: auto;
    margin: 0 .5em .5em;
    padding: 1em 1em;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px
}

.wizard > .steps .disabled a {
    background: #eee;
    color: #aaa;
    cursor: default
}

.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active {
    background: #eee;
    color: #aaa;
    cursor: default
}

.wizard > .steps .current a {
    background: #2184be;
    color: #fff;
    cursor: default
}

.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
    background: #2184be;
    color: #fff;
    cursor: default
}

.wizard > .steps .done a {
    background: #9dc8e2;
    color: #fff
}

.wizard > .steps .done a:hover,
.wizard > .steps .done a:active {
    background: #9dc8e2;
    color: #fff
}

.wizard > .steps .error a {
    background: #ff3111;
    color: #fff
}

.wizard > .steps .error a:hover,
.wizard > .steps .error a:active {
    background: #ff3111;
    color: #fff
}

.wizard > .content {
    border: 1px solid #ddd;
    display: block;
    margin: .5em;
    min-height: 35em;
    overflow: hidden;
    position: relative;
    width: auto
}

.wizard > .actions {
    position: relative;
    display: block;
    text-align: left;
    width: 100%
}

.wizard > .actions > ul {
    display: inline-block;
    text-align: left
}

.wizard > .actions > ul > li {
    margin: 0 .5em
}

.wizard > .actions a {
    background: #009688;
    color: #fff;
    display: block;
    padding: .5em 1em;
    text-decoration: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.wizard > .actions a:hover,
.wizard > .actions a:active {
    background: #009688;
    color: #fff;
    display: block;
    padding: .5em 1em;
    text-decoration: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.wizard > .actions .disabled a {
    background: #eee;
    color: #aaa
}

.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active {
    background: #eee;
    color: #aaa
}

.tabcontrol > .steps {
    position: relative;
    display: block;
    width: 100%
}

.tabcontrol > .steps > ul {
    position: relative;
    margin: 6px 0 0 0;
    top: 1px;
    z-index: 1
}

.tabcontrol > .steps > ul > li {
    float: right;
    margin: 5px 0 0 2px;
    padding: 1px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px
}

.tabcontrol > .steps > ul > li:hover {
    background: #edecec;
    border: 1px solid #bbb;
    padding: 0
}

.tabcontrol > .steps > ul > li.current {
    background: #fff;
    border: 1px solid #bbb;
    border-bottom: 0 none;
    padding: 0 0 1px 0;
    margin-top: 0
}

.tabcontrol > .steps > ul > li.current > a {
    padding: 15px 30px 10px 30px
}

.tabcontrol > .steps > ul > li > a {
    color: #5f5f5f;
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none
}

.tabcontrol > .steps > ul > li > a:hover {
    text-decoration: none
}

.tabcontrol > .content {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 35em;
    overflow: hidden;
    border-top: 1px solid #bbb;
    padding-top: 20px
}

.tabcontrol > .content > .body {
    float: right;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%
}

.tabcontrol > .content > .body ul {
    list-style: disc !important
}

.tabcontrol > .content > .body ul > li {
    display: list-item
}

.wizard .content {
    min-height: 245px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    overflow-y: auto
}

.wizard .content .body {
    padding: 15px
}

.wizard .steps a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -moz-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s
}

.wizard .steps a:active,
.wizard .steps a:focus,
.wizard .steps a:hover {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.wizard .steps .done a {
    background-color: rgba(0, 150, 136, 0.6)
}

.wizard .steps .done a:hover,
.wizard .steps .done a:active,
.wizard .steps .done a:focus {
    background-color: rgba(0, 150, 136, 0.5)
}

.wizard .steps .error a {
    background-color: #f44336 !important
}

.wizard .steps .current a {
    background-color: #009688
}

.wizard .steps .current a:active,
.wizard .steps .current a:focus,
.wizard .steps .current a:hover {
    background-color: #009688
}

.dataTables_wrapper {
    position: relative
}

.dataTables_wrapper select {
    border: 0;
    border-bottom: 1px solid #ddd;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    font-size: 12px
}

.dataTables_wrapper select:active,
.dataTables_wrapper select:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none
}

.dataTables_wrapper label {
    font-size: 12px
}

.dataTables_wrapper input[type="search"] {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    border: 0;
    font-size: 12px;
    height: 26px;
    border-bottom: 1px solid #ddd
}

.dataTables_wrapper input[type="search"]:focus,
.dataTables_wrapper input[type="search"]:active {
    border-bottom: 2px solid #1f91f3
}

.dataTables_wrapper .dt-buttons {
    float: right
}

.dataTables_wrapper .dt-buttons a.dt-button {
    background-color: #607d8b;
    color: #fff;
    padding: 7px 12px;
    margin-left: 5px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    border: 0;
    font-size: 13px;
    outline: 0
}

.dataTables_wrapper .dt-buttons a.dt-button:active {
    opacity: .8
}

.dataTables_wrapper .page-link:focus {
    box-shadow: none;
    color: #65686b;
    background-color: transparent
}

.dataTables_filter {
    float: left
}

.dt-button-info {
    position: fixed;
    top: 50%;
    right: 50%;
    min-width: 400px;
    text-align: center;
    background-color: #fff;
    border: 2px solid #999;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    margin-top: -100px;
    margin-right: -200px;
    z-index: 21
}

.dt-button-info h2 {
    color: #777
}

.dt-button-info div {
    color: #777;
    margin-bottom: 20px
}

#tableExport_wrapper {
    padding: 10px 0
}

.dd-handle {
    background-color: #f9f9f9 !important
}

.dd-handle:hover {
    color: #2196f3
}

.nestable-dark-theme .dd-handle {
    background: #ccc !important;
    border: 1px solid #999 !important
}

.dd3-handle {
    background: #999 !important
}

.dd3-content:hover {
    color: #2196f3
}

.lg-outer .lg-thumb-item,
.lg-outer .lg-toogle-thumb {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    border-radius: 0 !important
}

.gmap {
    width: 100%;
    height: 400px
}

.jqv-map {
    width: 100%;
    height: 600px
}

#vmap_usa,
#vmap_russia,
#vmap_europe,
#vmap_germany {
    width: 400px;
    height: 400px
}

#worldMap2 {
    width: 100%;
    height: 390px;
    overflow: hidden
}

.datamap-hoverinfo {
    background: #4fc0a1;
    padding: 5px 10px;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    text-transform: capitalize;
    border-radius: 3px
}

.table tbody tr td,
.table tbody tr th {
    padding: 10px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    vertical-align: middle
}

.table tbody tr td ul,
.table tbody tr th ul {
    margin: 0
}

.table tbody tr.primary td,
.table tbody tr.primary th {
    background-color: #1f91f3;
    color: #fff
}

.table tbody tr.success td,
.table tbody tr.success th {
    background-color: #2b982b;
    color: #fff
}

.table tbody tr.info td,
.table tbody tr.info th {
    background-color: #00b0e4;
    color: #fff
}

.table tbody tr.warning td,
.table tbody tr.warning th {
    background-color: #ff9600;
    color: #fff
}

.table tbody tr.danger td,
.table tbody tr.danger th {
    background-color: #fb483a;
    color: #fff
}

.table thead tr th {
    padding: 10px;
    border-bottom: 1px solid #eee
}

.table-bordered {
    border-top: 1px solid #eee
}

.table-bordered tbody tr td,
.table-bordered tbody tr th {
    padding: 10px;
    border: 1px solid #eee
}

.table-bordered thead tr th {
    padding: 10px;
    border: 1px solid #eee
}

.table-img img {
    border-radius: 50%;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2)
}

.btn-tbl-edit {
    border-radius: 50% !important;
    background-color: #4fab52;
    padding: 6px !important;
    height: 18px;
    color: #fff;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2) !important
}

.btn-tbl-edit .material-icons {
    font-size: 16px !important;
    top: -5px
}

.btn-tbl-edit:hover {
    background-color: #888;
    color: #fff
}

.btn-tbl-check {
    border-radius: 50% !important;
    background-color: #0b7cd4;
    padding: 6px !important;
    height: 18px;
    color: #fff;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2) !important
}

.btn-tbl-check .material-icons {
    font-size: 16px !important;
    top: -5px
}

.btn-tbl-check:hover {
    background-color: #888;
    color: #fff
}

.btn-tbl-delete {
    border-radius: 50% !important;
    background-color: #f96332;
    padding: 6px !important;
    height: 18px;
    color: #fff;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2) !important
}

.btn-tbl-delete .material-icons {
    font-size: 16px !important;
    top: -5px
}

.btn-tbl-delete:hover {
    background-color: #f96332;
    color: #fff
}

.avatar {
    position: relative;
    width: 30px;
    white-space: nowrap;
    border-radius: 1000px;
    vertical-align: bottom;
    display: inline-block
}

.avatar img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 0;
    border-radius: 1000px
}

.avatar-sm {
    width: 32px;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    -moz-transition: all .25s ease;
    transition: all .25s ease
}

.avatar-sm:hover {
    webkit-transform: translateY(-4px) scale(1.02);
    -moz-transform: translateY(-4px) scale(1.02);
    -ms-transform: translateY(-4px) scale(1.02);
    -o-transform: translateY(-4px) scale(1.02);
    transform: translateY(-4px) scale(1.02);
    -webkit-box-shadow: 0 14px 24px rgba(75, 70, 124, 0.2);
    box-shadow: 0 14px 24px rgba(75, 70, 124, 0.2);
    z-index: 999
}

.list-inline {
    padding-right: 0;
    list-style: none
}

.list-unstyled {
    padding-right: 0;
    list-style: none
}

.spinner {
    display: inline-block
}

.spinner-reverse {
    display: inline-block
}

.order-list li img {
    border: 2px solid #fff;
    box-shadow: 0 2px 10px 0 rgba(107, 111, 130, 0.3)
}

.order-list li + li {
    margin-right: -14px
}

.order-list li .badge {
    background: rgba(255, 255, 255, 0.8);
    color: #6b6f82;
    margin-bottom: 6px
}

.buttons-copy {
    background-color: #666 !important;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(233, 30, 99, 0.6);
    color: #fff !important;
    border-radius: 30px !important;
    border: 0 !important;
    height: 30px;
    width: 60px;
    cursor: pointer
}

.buttons-excel {
    background-color: #59bf70 !important;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(233, 30, 99, 0.6);
    color: #fff !important;
    border-radius: 30px !important;
    border: 0 !important;
    height: 30px;
    width: 60px;
    cursor: pointer
}

.buttons-csv {
    background-color: #2ab9d0 !important;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(233, 30, 99, 0.6);
    color: #fff !important;
    border-radius: 30px !important;
    border: 0 !important;
    height: 30px;
    width: 60px;
    cursor: pointer
}

.buttons-pdf {
    background-color: #e91e63 !important;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(233, 30, 99, 0.6);
    color: #fff !important;
    border-radius: 30px !important;
    border: 0 !important;
    height: 30px;
    width: 60px;
    cursor: pointer
}

.buttons-print {
    background-color: #6563ef !important;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2), 0 13px 24px -11px #6563ef;
    color: #fff !important;
    border-radius: 30px !important;
    border: 0 !important;
    height: 30px;
    width: 60px;
    cursor: pointer
}

tr.group,
tr.group:hover {
    background-color: #ddd !important
}

.tableBody {
    font-size: 13px;
    color: #555;
    padding: 0 15px 0 15px
}

.tbl-checkbox {
    vertical-align: bottom !important;
    text-align: center
}

td.details-control {
    background: url("../images/details_open.png") no-repeat center center;
    cursor: pointer
}

tr.shown td.details-control {
    background: url("../images/details_close.png") no-repeat center center
}

.dd-item,
.dd-empty,
.dd-placeholder {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 20px;
    font-size: 13px;
    line-height: 20px
}

.dd-empty,
.dd-placeholder {
    margin: 5px 0;
    padding: 0;
    min-height: 30px;
    background: #f2fbff;
    border: 1px dashed #b6bcbf;
    box-sizing: border-box
}

.dd {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    max-width: 600px;
    list-style: none;
    font-size: 13px;
    line-height: 20px
}

.dd-list {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none
}

.dd-list .dd-list {
    padding-right: 30px
}

.dd-item > button {
    display: block;
    position: relative;
    cursor: pointer;
    float: right;
    width: 25px;
    height: 20px;
    margin: 5px 0;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    background: transparent;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    font-weight: bold
}

.dd-item > button:before {
    content: ' +';
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    text-indent: 0
}

.dd-empty {
    border: 1px dashed #bbb;
    min-height: 100px;
    background-color: #e5e5e5;
    background-image: linear-gradient(-45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), linear-gradient(-45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-size: 60px 60px;
    background-position: 100% 0, 30px 30px
}

.dd-handle {
    display: block;
    height: 30px;
    margin: 5px 0;
    padding: 5px 10px;
    cursor: move;
    color: #979898;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    box-sizing: border-box
}

.dd-handle:hover {
    color: #317eeb;
    background: #fff
}

.dd-dragel {
    position: absolute;
    pointer-events: none;
    z-index: 9999
}

.dd-dragel > .dd-item .dd-handle {
    margin-top: 0
}

.dd-dragel > .dd3-item > .dd3-content {
    margin: 0
}

.dd-dragel .dd-handle {
    box-shadow: -2px 4px 6px 0 rgba(0, 0, 0, 0.1)
}

.dd3-content {
    display: block;
    height: 30px;
    margin: 5px 0;
    padding: 5px 40px 5px 10px;
    color: #979898;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    box-sizing: border-box
}

.dd3-content:hover {
    color: #317eeb;
    background: #fff
}

.dd3-handle {
    position: absolute;
    margin: 0;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 30px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid #ccc;
    background: #d5d5d5;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dd3-handle:before {
    content: "\f0c9";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    right: 0;
    top: 3px;
    width: 100%;
    text-align: center;
    text-indent: 0;
    color: #fff;
    font-size: 14px;
    font-weight: normal
}

.dd3-handle:hover {
    background: #404040;
    border: 1px solid #404040
}


.dd3-item > button {
    margin-right: 30px
}

.product-grid .social li a:after,
.product-grid .social li a:before {
    content: attr(data-tip);
    color: #fff;
    background-color: #000;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 20px;
    padding: 1px 5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(50%);
    position: absolute;
    right: 50%;
    top: -30px
}

.product-grid .product-discount-label,
.product-grid .product-new-label {
    color: #fff;
    background-color: #ef5777;
    font-size: 12px;
    text-transform: uppercase;
    padding: 2px 7px;
    display: block;
    position: absolute;
    top: 10px;
    right: 0
}

.product-grid {
    text-align: center;
    padding: 0 0 72px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1
}

.product-grid .product-image {
    position: relative;
    transition: all .3s ease 0s
}

.product-grid .product-image a {
    display: block
}

.product-grid .product-image img {
    width: 100%;
    height: auto
}

.product-grid .pic-1 {
    opacity: 1;
    transition: all .3s ease-out 0s
}

.product-grid:hover .pic-1 {
    opacity: 1
}

.product-grid:hover .pic-2 {
    opacity: 1
}

.product-grid:hover .social {
    opacity: 1;
    top: 50%
}

.product-grid:hover .product-content {
    bottom: 0
}

.product-grid:hover .title a {
    color: #ef5777
}

.product-grid .pic-2 {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    transition: all .3s ease-out 0s
}

.product-grid .social {
    width: 150px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    top: 60%;
    left: 50%;
    z-index: 1;
    transition: all .3s ease 0s
}

.product-grid .social li {
    display: inline-block
}

.product-grid .social li a {
    color: #fff;
    background-color: #333;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    height: 40px;
    width: 40px;
    margin: 0 2px;
    display: block;
    position: relative;
    transition: all .3s ease-in-out
}

.product-grid .social li a:hover {
    color: #fff;
    background-color: #ef5777
}

.product-grid .social li a:hover:after {
    opacity: 1
}

.product-grid .social li a:hover:before {
    opacity: 1
}

.product-grid .social li a:after {
    content: '';
    height: 15px;
    width: 15px;
    border-radius: 0;
    transform: translateX(50%) rotate(45deg);
    top: -20px;
    z-index: -1
}

.product-grid .product-discount-label {
    background-color: #333;
    right: auto;
    left: 0
}

.product-grid .rating {
    color: #ffd200;
    font-size: 12px;
    padding: 12px 0 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: -1
}

.product-grid .rating li.disable {
    color: rgba(0, 0, 0, 0.2)
}

.product-grid .product-content {
    background-color: #fff;
    text-align: center;
    padding: 10px 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -27px;
    z-index: 1;
    transition: all .3s
}

.product-grid .title {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin: 0 0 10px;
    transition: all .3s ease 0s
}

.product-grid .title a {
    color: #828282
}

.product-grid .title a:hover {
    color: #ef5777
}

.product-grid .price {
    color: #333;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0px;
    margin-bottom: 8px;
    text-align: center;
    transition: all .3s
}

.product-grid .price span {
    color: #999;
    font-size: 13px;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 3px;
    display: inline-block
}

.product-grid .add-to-cart {
    color: #000;
    font-size: 13px;
    font-weight: 600
}

@media only screen and (max-width: 990px) {
    .product-grid {
        margin-bottom: 30px
    }
}

.header-navigation {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: .80rem
}

.header-navigation a {
    font-size: .80rem
}


.header-navigation .btn-group {
    margin-right: auto
}

.header-navigation .btn-share {
    position: relative
}

.header-navigation .btn-share::after {
    content: "";
    width: 1px;
    height: 50%;
    background-color: #ccc;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%)
}

.store-body {
    display: flex;
    flex-direction: row;
    padding: 0
}

.store-body .product-info {
    width: 60%;
    border-left: 1px solid rgba(0, 0, 0, 0.125)
}

.store-body .product-payment-details {
    width: 40%;
    padding: 15px 15px 0 15px
}

.product-info .product-seller-recommended {
    padding: 20px 20px 0 20px
}

.product-store .product-gallery {
    display: flex;
    flex-direction: row
}

.product-gallery-featured {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 35px;
    cursor: zoom-in
}

.product-gallery-thumbnails .thumbnails-list li {
    margin-bottom: 5px;
    cursor: pointer;
    position: relative;
    width: 70px;
    height: 70px
}

.product-gallery-thumbnails .thumbnails-list li:hover::before {
    content: "";
    width: 3px;
    height: 100%;
    background: #007bff;
    position: absolute;
    top: 0;
    right: 0
}

.thumbnails-list li img {
    display: block;
    width: 100%
}

.product-comments textarea {
    height: 50px
}

.last-questions-list li {
    margin-bottom: 20px
}

.last-questions-list li span {
    padding-right: 10px
}

.text-navy {
    color: #1ab394
}

.cart-product-imitation {
    text-align: center;
    height: 80px;
    width: 80px
}

.product-desc {
    padding: 20px;
    position: relative
}

.ecommerce .tag-list {
    padding: 0
}

.ecommerce .fa-star {
    color: #d1dade
}

.ecommerce .fa-star.active {
    color: #f8ac59
}

.ecommerce .note-editor {
    border: 1px solid #e7eaec
}

.ibox {
    clear: both;
    margin-bottom: 25px;
    margin-top: 0;
    padding: 0
}

.ibox:after {
    display: table
}

.ibox:before {
    display: table
}


.ibox-title {
    background-color: #fff;
    border-color: #e7eaec;
    border-image: none;
    border-style: solid solid none;
    border-width: 3px 0 0;
    color: inherit;
    margin-bottom: 0;
    padding: 14px 15px 7px;
    min-height: 48px
}

.ibox-content {
    background-color: #fff;
    color: inherit;
    padding: 15px 20px 20px;
    border-color: #e7eaec;
    border-image: none;
    border-style: solid solid none;
    border-width: 1px 0
}

.ibox-footer {
    color: inherit;
    border-top: 1px solid #e7eaec;
    font-size: 90%;
    background: #fff;
    padding: 10px 15px
}

.product-imitation.xl {
    padding: 120px 0
}

table.shoping-cart-table {
    margin-bottom: 0
}

table.shoping-cart-table tr {
    border: 0
}

table.shoping-cart-table tr td {
    border: 0;
    text-align: left
}

table.shoping-cart-table tr td.desc {
    text-align: right
}

table.shoping-cart-table tr td:first-child {
    text-align: right
}

table.shoping-cart-table tr td:last-child {
    width: 130px
}

table.shoping-cart-table .text-price {
    text-decoration: line-through
}

.alert {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
	border-radius: 8px;
    -ms-border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    border: 0;
    color: #fff !important
}

.alert .alert-link {
    color: #fff;
    text-decoration: underline;
    font-weight: bold
}

.alert-success {
    background-color: rgba(24, 206, 15, 0.8)
}

.alert-info {
    background-color: rgba(44, 168, 255, 0.8)
}

.alert-warning {
    background-color: rgba(255, 178, 54, 0.8)
}

.alert-danger {
    background-color: rgba(255, 54, 54, 0.8)
}

.alert-dismissible .close {
    color: #fff;
    opacity: 1;
    border: 0;
    text-shadow: none
}

.badge {
    padding: 5px 8px;
    line-height: 12px;
    border: 1px solid;
    font-weight: 400;
    font-size: 13px
}

span.badge {
    min-width: auto;
    float: none;
    font-size: 13px
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.btn-primary .badge {
    color: #337ab7;
    background-color: #fff
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff
}

.btn:focus {
    outline: none !important
}

.btn-circle {
    border: 0;
    outline: none !important;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    padding: 6px !important;
    height: 35px;
    width: 35px;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2) !important
}

.btn-circle i {
    font-size: 18px;
    position: relative;
    line-height: 1
}

.btn-border-radius {
    border-radius: 25px !important
}

.btn-link {
    font-weight: bold;
    color: #333;
    -moz-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s
}

.btn-link:active,
.btn-link:focus {
    text-decoration: none;
    color: #333
}

.btn-link:hover {
    text-decoration: none;
    color: #333;
    background-color: #ddd
}

.btn-circle-lg {
    border: 0;
    outline: none !important;
    overflow: hidden;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    border-radius: 50% !important
}

.btn-circle-lg i {
    font-size: 26px !important;
    position: relative !important;
    right: 0 !important;
    top: 3px
}

.btn:not(.btn-link):not(.btn-circle) {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    border: 0;
    font-size: 13px;
    outline: 0;
    font-family: inherit;
}

.btn:not(.btn-link):not(.btn-circle):hover {
    outline: 0
}

.btn:not(.btn-link):not(.btn-circle) i {
    font-size: 20px;
    position: relative;
    line-height: 1
}

.btn:not(.btn-link):not(.btn-circle) span {
    position: relative;
    margin-right: 3px
}

.btn-warning {
    background-color: #ff9600 !important;
    color: #fff !important
}

.btn-warning:hover {
    background-color: #ff9600 !important;
    color: #fff !important
}

.btn-warning:active {
    background-color: #ff9600 !important;
    color: #fff !important
}

.btn-warning:focus {
    background-color: #ff9600 !important;
    color: #fff !important
}

.btn-warning:disabled {
    background-color: #ff9600 !important;
    color: #fff !important
}

.btn-danger {
    background-color: #fb483a !important;
    color: #fff !important
}

.btn-danger:hover {
    background-color: #fb483a !important;
    color: #fff !important
}

.btn-danger:active {
    background-color: #fb483a !important;
    color: #fff !important
}

.btn-danger:focus {
    background-color: #fb483a !important;
    color: #fff !important
}

.btn-danger:disabled {
    background-color: #fb483a !important;
    color: #fff !important
}

.btn-info {
    background-color: #00b0e4 !important;
    color: #fff !important
}

.btn-info:hover {
    background-color: #00b0e4 !important;
    color: #fff !important
}

.btn-info:active {
    background-color: #00b0e4 !important;
    color: #fff !important
}

.btn-info:focus {
    background-color: #00b0e4 !important;
    color: #fff !important
}

.btn-info:disabled {
    background-color: #00b0e4 !important;
    color: #fff !important
}

.btn-success {
    background-color: #18ce0f !important;
    color: #fff !important
}

.btn-success:hover {
    background-color: #18ce0f !important;
    color: #fff !important
}

.btn-success:active {
    background-color: #18ce0f !important;
    color: #fff !important
}

.btn-success:focus {
    background-color: #18ce0f !important;
    color: #fff !important
}

.btn-success:disabled {
    background-color: #18ce0f !important;
    color: #fff !important
}

.btn-default {
    background-color: #888 !important;
    color: #fff !important
}

.btn-default:hover {
    background-color: #888 !important;
    color: #fff !important
}

.btn-default:active {
    background-color: #888 !important;
    color: #fff !important
}

.btn-default:focus {
    background-color: #888 !important;
    color: #fff !important
}

.btn-default:disabled {
    background-color: #888 !important;
    color: #fff !important
}

.bootstrap-select .btn-default {
    background-color: #fff !important;
    color: #333 !important
}

.bootstrap-select .btn-default:hover {
    background-color: #fff !important;
    color: #333 !important
}

.bootstrap-select .btn-default:active {
    background-color: #fff !important;
    color: #333 !important
}

.bootstrap-select .btn-default:focus {
    background-color: #fff !important;
    color: #333 !important
}

.bootstrap-select .btn-default:disabled {
    background-color: #fff !important;
    color: #333 !important
}

.btn-outline-default {
    background: 100% 0 !important;
    color: #888 !important;
    border: 1px solid #888 !important
}

.btn-outline-default:hover {
    background: #888 !important;
    color: #fff !important;
    border: 1px solid #888 !important
}

.btn-outline-success {
    background: 100% 0 !important;
    color: #18ce0f !important;
    border: 1px solid #18ce0f !important
}

.btn-outline-success:hover {
    background: #18ce0f !important;
    color: #fff !important;
    border: 1px solid #18ce0f !important
}

.btn-outline-info {
    background: 100% 0 !important;
    color: #00b0e4 !important;
    border: 1px solid #00b0e4 !important
}

.btn-outline-info:hover {
    background: #00b0e4 !important;
    color: #fff !important;
    border: 1px solid #00b0e4 !important
}

.btn-outline-warning {
    background: 100% 0 !important;
    color: #ff9600 !important;
    border: 1px solid #ff9600 !important
}

.btn-outline-warning:hover {
    background: #ff9600 !important;
    color: #fff !important;
    border: 1px solid #ff9600 !important
}

.btn-outline-danger {
    background: 100% 0 !important;
    color: #fb483a !important;
    border: 1px solid #fb483a !important
}

.btn-outline-danger:hover {
    background: #fb483a !important;
    color: #fff !important;
    border: 1px solid #fb483a !important
}

.btn-group,
.btn-group-vertical {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12)
}

.btn-group .btn,
.btn-group-vertical .btn {
    box-shadow: none !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.btn-group .btn .caret,
.btn-group-vertical .btn .caret {
    position: relative;
    bottom: 1px
}

.btn-group .btn-group,
.btn-group-vertical .btn-group {
    box-shadow: none !important
}

.btn-group .btn + .dropdown-toggle,
.btn-group-vertical .btn + .dropdown-toggle {
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important
}

.btn-group.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group.btn-group-justified .btn,
.btn-group.btn-group-justified .btn-group {
    display: table-cell;
    float: none;
    width: 1%
}

.tblActnBtn {
    background-color: transparent !important;
    box-shadow: none !important;
    color: #161d38;
    padding: 0 5px
}

.tblActnBtn:hover {
    background-color: #fff !important;
    box-shadow: none !important
}

.btn-toggle-dropdown {
    top: 0 !important
}

.btn-hover {
    width: 130px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    height: 38px;
    text-align: center;
    border: 0;
    background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.btn-hover:hover {
    background-position: 0 0;
    moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.btn-hover:focus {
    outline: 0
}

.btn-hover.color-1 {
    background-image: linear-gradient(to left, #25aae1, #30dd8a, #30dd8a, #2bb673);
    -webkit-box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
    -moz-box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
    -ms-box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
    box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75)
}

.btn-hover.color-2 {
    background-image: linear-gradient(to left, #f5ce62, #e43603, #fa7199, #e85a19);
    -webkit-box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
    -moz-box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
    -ms-box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
    box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75)
}

.btn-hover.color-3 {
    background-image: linear-gradient(to left, #667eea, #764ba2, #6b8dd6, #8e37d7);
    -webkit-box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
    -moz-box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
    -ms-box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75)
}

.btn-hover.color-4 {
    background-image: linear-gradient(to left, #fc6076, #ef9d43, #ef9d43, #e75516);
    -webkit-box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
    -moz-box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
    -ms-box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
    box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75)
}

.btn-hover.color-5 {
    background-image: linear-gradient(to left, #0ba360, #3cba92, #30dd8a, #2bb673);
    -webkit-box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
    -moz-box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
    -ms-box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
    box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75)
}

.btn-hover.color-6 {
    background-image: linear-gradient(to left, #6253e1, #852d91, #a3a1ff, #f24645);
    -webkit-box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
    -moz-box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
    -ms-box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
    box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75)
}

.btn-hover.color-7 {
    background-image: linear-gradient(to left, #29323c, #485563, #2b5876, #4e4376);
    -webkit-box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
    -moz-box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
    -ms-box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
    box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75)
}

.btn-hover.color-8 {
    background-image: linear-gradient(to left, #25aae1, #4481eb, #04befe, #3f86ed);
    -webkit-box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
    -moz-box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
    -ms-box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75)
}

.btn-hover.color-9 {
    background-image: linear-gradient(to left, #ed6ea0, #ec8c69, #f7186a, #fbb03b);
    -webkit-box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
    -moz-box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
    -ms-box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
    box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75)
}

.btn-hover.color-10 {
    background-image: linear-gradient(to left, #e2373f, #f15e64, #e14e53, #e2373f);
    -webkit-box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);
    -moz-box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);
    -ms-box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);
    box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4)
}

.col-block {
    margin-right: 5px
}

.sweet-alert {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    border-radius: 0 !important
}

.sweet-alert p {
    font-size: 14px !important
}

.sweet-alert .sa-input-error {
    top: 23px !important;
    left: 13px !important
}

.sweet-alert h2 {
    font-size: 18px !important;
    margin: 0 0 5px 0 !important;
    line-height: 40px
}

.sweet-alert button {
    font-size: 15px !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    border-radius: 0 !important;
}

.media {
    margin-bottom: 25px;
    margin-top: 15px
}

.media .media-left {
    padding-left: 10px
}

.media .media-body {
    color: #777;
    font-size: 13px
}

.media .media-body .media-heading {
    font-size: 16px;
    font-weight: bold;
    color: #333
}

.modal {
    background-color: rgba(238, 238, 238, 0.41);
    max-height: 100%;
    width: 100%
}

.modal .modal-header {
    border: 0;
    padding: 10px
}

.modal .modal-header .modal-title {
    font-weight: bold;
    font-size: 16px
}

.modal .modal-content {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.31) !important;
    border: 0;
    padding: 10px
}

.modal .modal-content .modal-body {
    color: #777;
    padding: 15px 25px
}

.modal .modal-footer {
    border: 0;
    background-color: transparent
}

.modal .modal-footer .btn {
    margin: 10px
}

.modal-col-red {
    background-color: #f44336
}

.modal-col-red .modal-body,
.modal-col-red .modal-title {
    color: #fff !important
}

.modal-col-red .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-red .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-red .modal-footer .btn-link:hover,
.modal-col-red .modal-footer .btn-link:active,
.modal-col-red .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-pink {
    background-color: #e91e63
}

.modal-col-pink .modal-body,
.modal-col-pink .modal-title {
    color: #fff !important
}

.modal-col-pink .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-pink .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-pink .modal-footer .btn-link:hover,
.modal-col-pink .modal-footer .btn-link:active,
.modal-col-pink .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-purple {
    background-color: #9c27b0
}

.modal-col-purple .modal-body,
.modal-col-purple .modal-title {
    color: #fff !important
}

.modal-col-purple .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-purple .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-purple .modal-footer .btn-link:hover,
.modal-col-purple .modal-footer .btn-link:active,
.modal-col-purple .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-deep-purple {
    background-color: #673ab7
}

.modal-col-deep-purple .modal-body,
.modal-col-deep-purple .modal-title {
    color: #fff !important
}

.modal-col-deep-purple .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-deep-purple .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-deep-purple .modal-footer .btn-link:hover,
.modal-col-deep-purple .modal-footer .btn-link:active,
.modal-col-deep-purple .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-indigo {
    background-color: #3f51b5
}

.modal-col-indigo .modal-body,
.modal-col-indigo .modal-title {
    color: #fff !important
}

.modal-col-indigo .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-indigo .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-indigo .modal-footer .btn-link:hover,
.modal-col-indigo .modal-footer .btn-link:active,
.modal-col-indigo .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-blue {
    background-color: #2196f3
}

.modal-col-blue .modal-body,
.modal-col-blue .modal-title {
    color: #fff !important
}

.modal-col-blue .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-blue .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-blue .modal-footer .btn-link:hover,
.modal-col-blue .modal-footer .btn-link:active,
.modal-col-blue .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-light-blue {
    background-color: #03a9f4
}

.modal-col-light-blue .modal-body,
.modal-col-light-blue .modal-title {
    color: #fff !important
}

.modal-col-light-blue .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-light-blue .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-light-blue .modal-footer .btn-link:hover,
.modal-col-light-blue .modal-footer .btn-link:active,
.modal-col-light-blue .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-cyan {
    background-color: #00bcd4
}

.modal-col-cyan .modal-body,
.modal-col-cyan .modal-title {
    color: #fff !important
}

.modal-col-cyan .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-cyan .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-cyan .modal-footer .btn-link:hover,
.modal-col-cyan .modal-footer .btn-link:active,
.modal-col-cyan .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-teal {
    background-color: #009688
}

.modal-col-teal .modal-body,
.modal-col-teal .modal-title {
    color: #fff !important
}

.modal-col-teal .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-teal .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-teal .modal-footer .btn-link:hover,
.modal-col-teal .modal-footer .btn-link:active,
.modal-col-teal .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-green {
    background-color: #4caf50
}

.modal-col-green .modal-body,
.modal-col-green .modal-title {
    color: #fff !important
}

.modal-col-green .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-green .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-green .modal-footer .btn-link:hover,
.modal-col-green .modal-footer .btn-link:active,
.modal-col-green .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-light-green {
    background-color: #8bc34a
}

.modal-col-light-green .modal-body,
.modal-col-light-green .modal-title {
    color: #fff !important
}

.modal-col-light-green .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-light-green .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-light-green .modal-footer .btn-link:hover,
.modal-col-light-green .modal-footer .btn-link:active,
.modal-col-light-green .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-lime {
    background-color: #cddc39
}

.modal-col-lime .modal-body,
.modal-col-lime .modal-title {
    color: #fff !important
}

.modal-col-lime .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-lime .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-lime .modal-footer .btn-link:hover,
.modal-col-lime .modal-footer .btn-link:active,
.modal-col-lime .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-yellow {
    background-color: #ffe821
}

.modal-col-yellow .modal-body,
.modal-col-yellow .modal-title {
    color: #fff !important
}

.modal-col-yellow .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-yellow .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-yellow .modal-footer .btn-link:hover,
.modal-col-yellow .modal-footer .btn-link:active,
.modal-col-yellow .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-amber {
    background-color: #ffc107
}

.modal-col-amber .modal-body,
.modal-col-amber .modal-title {
    color: #fff !important
}

.modal-col-amber .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-amber .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-amber .modal-footer .btn-link:hover,
.modal-col-amber .modal-footer .btn-link:active,
.modal-col-amber .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-orange {
    background-color: #ff9800
}

.modal-col-orange .modal-body,
.modal-col-orange .modal-title {
    color: #fff !important
}

.modal-col-orange .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-orange .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-orange .modal-footer .btn-link:hover,
.modal-col-orange .modal-footer .btn-link:active,
.modal-col-orange .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-deep-orange {
    background-color: #ff5722
}

.modal-col-deep-orange .modal-body,
.modal-col-deep-orange .modal-title {
    color: #fff !important
}

.modal-col-deep-orange .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-deep-orange .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-deep-orange .modal-footer .btn-link:hover,
.modal-col-deep-orange .modal-footer .btn-link:active,
.modal-col-deep-orange .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-brown {
    background-color: #795548
}

.modal-col-brown .modal-body,
.modal-col-brown .modal-title {
    color: #fff !important
}

.modal-col-brown .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-brown .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-brown .modal-footer .btn-link:hover,
.modal-col-brown .modal-footer .btn-link:active,
.modal-col-brown .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-grey {
    background-color: #9e9e9e
}

.modal-col-grey .modal-body,
.modal-col-grey .modal-title {
    color: #fff !important
}

.modal-col-grey .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-grey .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-grey .modal-footer .btn-link:hover,
.modal-col-grey .modal-footer .btn-link:active,
.modal-col-grey .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-blue-grey {
    background-color: #607d8b
}

.modal-col-blue-grey .modal-body,
.modal-col-blue-grey .modal-title {
    color: #fff !important
}

.modal-col-blue-grey .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-blue-grey .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-blue-grey .modal-footer .btn-link:hover,
.modal-col-blue-grey .modal-footer .btn-link:active,
.modal-col-blue-grey .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-black {
    background-color: #000
}

.modal-col-black .modal-body,
.modal-col-black .modal-title {
    color: #fff !important
}

.modal-col-black .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-black .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-black .modal-footer .btn-link:hover,
.modal-col-black .modal-footer .btn-link:active,
.modal-col-black .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-white {
    background-color: #fff
}

.modal-col-white .modal-body,
.modal-col-white .modal-title {
    color: #fff !important
}

.modal-col-white .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-white .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-white .modal-footer .btn-link:hover,
.modal-col-white .modal-footer .btn-link:active,
.modal-col-white .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-dark-gray {
    background-color: #888
}

.modal-col-dark-gray .modal-body,
.modal-col-dark-gray .modal-title {
    color: #fff !important
}

.modal-col-dark-gray .modal-footer {
    background-color: rgba(0, 0, 0, 0.12)
}

.modal-col-dark-gray .modal-footer .btn-link {
    color: #fff !important
}

.modal-col-dark-gray .modal-footer .btn-link:hover,
.modal-col-dark-gray .modal-footer .btn-link:active,
.modal-col-dark-gray .modal-footer .btn-link:focus {
    background-color: rgba(0, 0, 0, 0.12)
}

.page-loader-wrapper {
    z-index: 99999999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eee;
    overflow: hidden;
    text-align: center
}

.page-loader-wrapper p {
    font-size: 13px;
    margin-top: 10px;
    font-weight: bold;
    color: #444
}

.page-loader-wrapper .loader {
    position: relative;
    top: calc(50% - 30px)
}

.pager {
    padding-right: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none
}

.pager li {
    display: inline
}

.pager li > a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    color: #222;
    font-weight: bold;
    display: inline-block;
    padding: 5px 14px
}

.pager li a:focus,
.pager li a:active {
    background-color: transparent
}

.pager .previous > a,
.pager .previous > span {
    float: right
}

.pager .next > a,
.pager .next > span {
    float: left
}

.pagination {
    margin: 20px 0
}

.pagination .disabled a,
.pagination .disabled a:hover,
.pagination .disabled a:focus,
.pagination .disabled a:active {
    color: #bbb
}

.pagination li.active {
    background-color: transparent !important
}

.pagination li.active a {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2)
}

.pagination li {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.pagination > li > a {
    border: 0;
    font-weight: bold;
    color: #555;
    font-size: 14px;
    margin: 0 3px;
    color: gray;
    margin: 5px;
    border-radius: 50%;
    color: gray;
    min-width: 30px;
    text-transform: uppercase;
    padding: .5rem .75rem;
    line-height: 1.25
}

.pagination > li > a:hover {
    font-weight: bold;
    background-color: transparent;
    color: #8c8b8b;
    border-radius: 50%;
    font-size: 14px
}

.pagination > li:first-child > a,
.pagination > li:last-child > a {
    width: auto;
    height: 32px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.pagination > li:first-child > a .material-icons,
.pagination > li:last-child > a .material-icons {
    position: relative;
    bottom: 0
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:last-child > a {
    width: 28px;
    height: 28px
}

.pagination-sm > li:first-child > a .material-icons,
.pagination-sm > li:last-child > a .material-icons {
    position: relative;
    top: 4px;
    right: -6px;
    font-size: 20px
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:last-child > a {
    width: 44px;
    height: 44px
}

.pagination-lg > li:first-child > a .material-icons,
.pagination-lg > li:last-child > a .material-icons {
    font-size: 30px;
    position: relative;
    top: 0;
    right: -10px
}

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px
}

.page-link:focus,
.page-link:hover {
    color: #65686b;
    text-decoration: none;
    background-color: #e3eaf1;
    border-color: #e3eaf1;
    border-radius: 50%
}

.progress {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    height: 16px;
    display: flex
}

.progress.progress-xs {
    height: 4px
}

.progress.progress-s {
    height: 6px
}

.progress .progress-bar {
    line-height: 16px;
    background-color: #1f91f3
}

.progress .progress-bar-success {
    background-color: #2b982b
}

.progress .progress-bar-info {
    background-color: #00b0e4
}

.progress .progress-bar-warning {
    background-color: #ff9600
}

.progress .progress-bar-danger {
    background-color: #fb483a
}

.progress-list {
    position: relative
}

.progress-list .status {
    display: inline-block;
    font-size: 12px;
    padding: 6px;
    position: absolute;
    left: 0;
    top: 0
}

.tooltip {
    font-family: inherit;
    font-size: 13px
}

.tooltip .tooltip-inner {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.popover {
    font-family: inherit;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.08)
}

.popover .popover-title {
    font-weight: bold;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    background-color: #e9e9e9;
    border-bottom: 1px solid #ddd
}

.popover .popover-content {
    font-size: 13px;
    color: #777;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

html.ie10 .sidebar .menu .list li {
    line-height: 30px
}

html.ie10 .sidebar .user-info .info-container {
    top: 15px
}

html.ie10 .search-bar input[type="text"] {
    padding: 26px 60px 26px 56px
}

html.ie10 .dropdown-menu ul.menu li a {
    margin-top: -22px
}

html.ie10 .bs-searchbox .form-control {
    width: 90%
}

html.ie11 .sidebar .user-info .info-container {
    top: 15px
}

html.ie11 .search-bar input[type="text"] {
    padding: 26px 60px 26px 56px
}

html.ie11 .dropdown-menu ul.menu li a {
    margin-top: -22px
}

html.ie11 .bs-searchbox .form-control {
    width: 90%
}

.simple-line-icon-container > div i {
    margin-left: 10px;
    float: right;
}

.ltr {
    direction: ltr;
    text-align: left;
}

.float-left {
    float: left;
}

.acc-code-span {
    font-size: 15px !important;
}

.alias-title {
    font-weight: 600 !important;
    color: #1c84c6 !important;
}

.user-details-login {
    font-size: 13px !important;
}

.remove_row {
    color: #f11b3b;
    font-size: 15px;
    cursor: pointer;
}

#final_total_amt {
    font-size: 15px;
    color: #2db763;
}

#invoice-item-table tbody {
    background-color: #f5faff;
}

.order_item_quantity,
.order_item_price,
.order_item_final_amount,
.final_total_amt {
    font-weight: 600;
}

.final_total_amt b {
    color: #888;
}

.add-btn {
    padding: 1px 5px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 3px;
}

#p-title {
    height: 28px !important;
}

label {
    font-size: 10pt;
    font-weight: 500;
    color: #777;
    display: block;
}

.invoice-header-status {
    font-size: 16px;
}

.color-a {
    color: #fff !important;
}

.pick-date {
    height: 29px !important;
}

.check-title {
    background-color: var(--primary-color) !important;
    color: #fff;
    text-align: center;
    vertical-align: middle;
}

.block-quote-green {
    margin-top: 10px;
    border-right: 5px solid #4caf50 !important;
    background-color: #85e254;
    padding: 10px !important;
}

.block-quote-red {
    margin-top: 10px;
    border-right: 5px solid #f44336 !important;
    background-color: #ff9da3;
    padding: 10px !important;
}

.report-table tr td a {
    text-decoration: none;
    color: #555;
}

.report-table-h2 {
    margin-bottom: 10px !important;
}

.report-check {
    color: #0ba360;
    margin-left: 10px;
}

.new-row {
    margin-top: 20px;
}

.login-text {
    color: #828282;
}

.badge-top span {
    font-size: 12px;
    color: #efefef;
    border: unset;
}

.w-icon {
    position: absolute;
    left: 30px
}
