:root {
    --color-brand-primary: #fec107;
    --color-brand-hover: #d4a006;
    --color-colorRed: #ff0000;
    --red: #ff0000;
    --color-colorOrange: #ffc000;
    --orange: #ffc000;
    --color-colorYellow: #fff200;
    --yellow: #fff200;
    --color-colorGreen: #8dc63f;
    --green: #8dc63f;
    --color-colorDarkGreen: #007b51;
    --darkgreen: #007b51;
    --color-colorBlue: #00bff3;
    --blue: #00bff3;
    --color-colorDarkBlue: #0072bc;
    --darkblue: #0072bc;
    --color-colorPurple: #ec008c;
    --crimson: #EC008C;
    --purple: #EC008C;
    --color-colorViolet: #a864a8;
    --violet: #a864a8;
    --grey: #4D4D4D;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/MaterialIcons-Regular.eot);
    /* For IE6-8 */
    src: local("Material Icons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIcons-Regular.woff2) format("woff2"), url(../fonts/MaterialIcons-Regular.woff) format("woff"), url(../fonts/MaterialIcons-Regular.ttf) format("truetype");
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    font-size: 1em;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

.mi-update {
    font-size: 19px;
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    2% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    4%, 12% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }
    6%, 14% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg);
    }
    8% {
        -webkit-transform: rotate(-22deg);
        transform: rotate(-22deg);
    }
    10% {
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg);
    }
    16% {
        -webkit-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    18% {
        -webkit-transform: rotate(12deg);
        transform: rotate(12deg);
    }
    20% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    2% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    4%, 12% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }
    6%, 14% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg);
    }
    8% {
        -webkit-transform: rotate(-22deg);
        -ms-transform: rotate(-22deg);
        transform: rotate(-22deg);
    }
    10% {
        -webkit-transform: rotate(22deg);
        -ms-transform: rotate(22deg);
        transform: rotate(22deg);
    }
    16% {
        -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    18% {
        -webkit-transform: rotate(12deg);
        -ms-transform: rotate(12deg);
        transform: rotate(12deg);
    }
    20% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes spinCircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinCircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes wk-spinCircle {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

.fs-78 {
    font-size: 78px;
    line-height: 0.75;
}

.full-screen {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
}

.color-gray {
    color: #4d4d4d;
}

.color-gray-light {
    color: #a3adbb;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    color: #ff6565;
    font-size: 12px;
}

.bg-transparent {
    background: transparent !important;
}

.spinner-wrapper {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 70px;
    text-align: center;
}

.spinner > div {
    width: 18px;
    height: 18px;
    background-color: var(--color-brand-primary);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #ffffff;
    background: linear-gradient(45deg, #cdcdcd 35%, rgba(255, 255, 255, 0) 82%);
    position: relative;
    -webkit-animation: spinCircle 3s infinite linear;
    animation: spinCircle 3s infinite linear;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.loader:before {
    width: 50%;
    height: 50%;
    background: #cdcdcd;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.loader:after {
    background: #fff;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.colorRed {
    color: var(--color-colorRed);
}

.colorOrange {
    color: var(--color-colorOrange);
}

.colorYellow {
    color: var(--color-colorYellow);
}

.colorGreen {
    color: var(--color-colorGreen);
}

.colorDarkGreen {
    color: var(--color-colorDarkGreen);
}

.colorBlue {
    color: var(--color-colorBlue);
}

.colorDarkBlue {
    color: var(--color-colorDarkBlue);
}

.colorPurple {
    color: var(--color-colorPurple);
}

.colorViolet {
    color: var(--color-colorViolet);
}

.bg-color1 {
    background-color: var(--color-colorBlue);
}

.bg-color2 {
    background-color: var(--color-colorOrange);
}

.bg-color3 {
    background-color: var(--color-colorYellow);
}

.bg-color4 {
    background-color: var(--color-colorRed);
}

.bg-color5 {
    background-color: var(--color-colorGreen);
}

@font-face {
    font-family: 'icomoon';
    src: url("../fonts/icomoon.eot?lq87zv");
    src: url("../fonts/icomoon.eot?lq87zv#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?lq87zv") format("truetype"), url("../fonts/icomoon.woff?lq87zv") format("woff"), url("../fonts/icomoon.svg?lq87zv#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'icomoon-new';
    src: url("../fonts/icomoon-new..eot?ta8yfg");
    src: url("../fonts/icomoon-new.eot?ta8yfg#iefix") format("embedded-opentype"), url("../fonts/icomoon-new.ttf?ta8yfg") format("truetype"), url("../fonts/icomoon-new.woff?ta8yfg") format("woff"), url("../fonts/icomoon-new.svg?ta8yfg#icomoon-new") format("svg");
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 25px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="icon-new-"], [class*=" icon-new-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon-new' !important;
}

.icon-eyes:before {
    content: "\e900";
}

.icon-graph:before {
    content: "\e901";
}

.icon-help:before {
    content: "\e902";
}

.icon-holiday:before {
    content: "\e903";
}

.icon-info:before {
    content: "\e904";
}

.icon-scheduler:before {
    content: "\e905";
}

.icon-settings:before {
    content: "\e906";
}

.icon-add_icon-header:before {
    content: "\e907";
}

.icon-add-device-icon:before {
    content: "\e908";
}

.icon-arrow-down:before {
    content: "\e909";
}

.icon-arrow-left:before {
    content: "\e90a";
}

.icon-arrow-right:before {
    content: "\e90b";
}

.icon-arrow-temperature:before {
    content: "\e90c";
    color: #b7bfc9;
}

.icon-arrow-up:before {
    content: "\e90d";
}

.icon-clock-icon:before {
    content: "\e90e";
}

.icon-close:before {
    content: "\e90f";
}

.icon-cold-icon:before {
    content: "\e910";
}

.icon-copy_icon:before {
    content: "\e911";
}

.icon-dashboard-view-header:before {
    content: "\e912";
}

.icon-delete_icon:before {
    content: "\e913";
}

.icon-edit-icon:before {
    content: "\e914";
}

.icon-email:before {
    content: "\e915";
}

.icon-facebook:before {
    content: "\e916";
}

.icon-google:before {
    content: "\e917";
}

.icon-help_icon-header:before {
    content: "\e918";
}

.icon-logo-header:before {
    content: "\e919";
}

.icon-menu-icon:before {
    content: "\e91a";
}

.icon-message_icon-header:before {
    content: "\e91b";
}

.icon-notification_icon-header:before {
    content: "\e91c";
}

.icon-online-icon:before {
    content: "\e91d";
}

.icon-password:before {
    content: "\e91e";
}

.icon-past_icon:before {
    content: "\e91f";
}

.icon-profile_icon-header:before {
    content: "\e920";
}

.icon-settings_icon2:before {
    content: "\e921";
}

.icon-settings_icon-header:before {
    content: "\e922";
}

.icon-small-logo:before {
    content: "\e923";
}

.icon-table-view-header:before {
    content: "\e924";
}

.icon-vk:before {
    content: "\e925";
}

.icon-warm-icon:before {
    content: "\e926";
}

.icon-warm-icon.warm {
    color: #ff8a2a;
}

.icon-new-filter:before {
    content: "\e900";
}

.icon-new-hand:before {
    content: "\e901";
}

.color-blue {
    color: #1ca9fb;
}

.icon-new-hand:before {
    color: #1ca9fb;
}

.icon-new-search:before {
    content: "\e902";
}

.icon-new-trash:before {
    content: "\e903";
}

.icon-new-info:before {
    content: "\e904";
}

.icon-new-error:before {
    content: "\e905";
}

.icon-new-nosignal:before {
    content: "\e906";
}

.icon-new-error {
    color: var(--color-colorRed);
}

.icon-inform {
    display: inline-block;
    margin: 0 auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #a3adbb;
    font-size: 11px;
    font-weight: 600;
    line-height: 12px;
    color: #a3adbb;
    text-align: center;
}

html {
    font-size: 12px;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #000;
    background-color: #f4f4f4;
}

#wrapper {
    min-height: 100vh;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: no-wrap;
    -ms-flex-wrap: no-wrap;
    flex-wrap: no-wrap;
}

#main {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.container {
    width: 100%;
    margin-top: 70px;
}

a, button {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    outline: 0;
    text-decoration: none;
    color: #a3adbb;
}

a i, button i {
    vertical-align: middle;
}

a:focus, button:focus, a:hover, button:hover {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    outline: 0;
    text-decoration: none;
    color: #707e83;
}

.h2, h2 {
    font-size: 20px;
}

.h3, h3 {
    font-size: 16px;
}

a.colorDarkGreen {
    position: relative;
    text-decoration: underline;
}

.modal-open {
    overflow-y: auto;
}

sup {
    display: inline-block;
    margin-left: 2px;
}

.btn {
    background: transparent;
    border: 0;
}

.btn:focus, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: 0;
}

.btn-primary {
    width: 215px;
    background-color: var(--color-brand-primary);
    color: #000;
    box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
    border: 0;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:focus, .btn-primary.focus {
    background-color: var(--color-brand-hover);
    box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
    color: #000;
    outline: 0;
}

.btn-gray {
    background-color: #ddd;
}

.btn-gray:hover {
    background-color: transparent;
}

.btn-default {
    padding: 6px 12px;
}

.btn-default:hover,
.btn-default.active {
    background-color: #ddd;
}

.btn-attention {
    background-color: #ddd;
    color: #000;
    box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
    text-transform: uppercase;
}

.btn-attention:hover, .btn-attention:active, .btn-attention.active, .btn-attention:active:hover, .btn-attention:active:focus, .btn-attention:focus, .btn-attention.focus {
    background-color: var(--color-colorRed);
    color: #fff;
}

.btn-border {
    padding: 4.5px 14px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
    border: 1px solid #ddd;
}

.btn-border:hover, .btn-border.active {
    background-color: #ddd;
    border: 1px solid #ddd;
}

.btn-plus {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    text-align: center;
    line-height: 1;
    background-color: transparent;
}

.btn-plus:hover {
    background-color: #ebebeb;
}

.btn.active, .btn:active {
    box-shadow: none;
}

.btn.toggle-mobile {
    width: 5px;
    padding: 0 10px;
    height: 17px;
    border: 0;
    text-indent: -9999px;
    background-image: url(../img/dots.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.more-link {
    cursor: pointer;
}

.btn-share {
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 24px;
}

.more i {
    line-height: 0.8;
}

.more.closed {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.btn-large {
    width: 100%;
}

.add-button {
    width: 15px;
    height: 15px;
    padding: 0;
    background-color: #9b9b9b;
    color: #fff;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.add-button:hover {
    color: #fff;
    background-color: #333;
}

.btn-report {
    display: block;
    width: 250px;
    padding: 7px;
    text-align: center;
    border: 1px solid #ddd;
    background-color: #bbdefb;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.btn-report:hover, .btn-report:active, .btn-report.active, .btn-report:active:hover, .btn-report:active:focus, .btn-report:focus, .btn-report.focus {
    border: 1px solid #ddd;
    background-color: #c7c7c7;
    color: #000;
}

.notification-list-button {
    width: 100%;
    padding: 20px 15px 10px 15px;
}

/*.notification-button.hasMessage {*/
/*-webkit-animation: ring 3s ease infinite;*/
/*animation: ring 3s ease infinite;*/
/*transform-origin-x: 50%;*/
/*transform-origin-y: 0px;*/
/*transform-origin-z: initial; }*/

.ajax-button {
    position: relative;
    display: inline-block;
    text-align: center;
}

[name="_save"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 17px;
    cursor: pointer !important;
    outline: none;
}

.btn[name="_save"].loading {
    font-size: 0 !important;
    min-width: 0 !important;
    width: 30px !important;
    height: 30px !important;
    margin-top: 5px;
    border-radius: 15px;
    padding: 0 !important;
    border: 3px solid #000;
    border-bottom: 3px solid transparent;
    border-left: 3px solid transparent;
    background-color: transparent !important;
    animation-name: spinCircle;
    -webkit-animation-name: wk-spinCircle;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.ajax-button .material-icons {
    color: #000;
    font-size: 24px !important;
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -9px;
    margin-top: -18px;
    -webkit-transform: scaleX(0) !important;
    -ms-transform: scaleX(0) !important;
    transform: scaleX(0) !important;
}

.ajax-button .material-icons.done {
    color: var(--color-brand-primary);
}

.ajax-button .material-icons.failed {
    color: var(--color-colorRed);
}

.ajax-button .material-icons.finish {
    -webkit-transform: scaleX(1) !important;
    -ms-transform: scaleX(1) !important;
    transform: scaleX(1) !important;
}

.btn[name="_save"].hide-loading {
    opacity: 0;
    -webkit-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    -webkit-transform: scale(0) !important;
    -ms-transform: scale(0) !important;
    transform: scale(0) !important;
}

.card-info [class^="icon-"], .card-info [class^="icon-new-"] {
    font-size: 18px;
}

.card-info .icon-clock-icon {
    font-size: 20px;
    color: #03a0fc;
}

.card-info .icon-warm-icon {
    color: #ff8a2a;
}

.card-info .icon-cold-icon {
    font-size: 21px;
    color: #4898ea;
}

.card-info .icon-holiday {
    color: #4898ea;
}

.card-info .icon-edit-icon {
    color: #4898ea;
}

.card-info .icon-warning {
    font-size: 12px;
}

.card-info .icon-new-error {
    font-size: 21px;
}

.add-button-holder {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 185px;
}

.add-button-holder .add-template {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #a3adbb;
    font-size: 56px;
    line-height: 56px;
    font-weight: 200;
    color: #a3adbb;
}

.add-button-holder p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 200;
    color: #a3adbb;
    text-align: center;
}

.add-button-holder:hover .add-template {
    color: #565c63;
    border-color: #565c63;
}

.add-button-holder:hover p {
    color: #565c63;
}

.sortable_div {
    width: 100%;
    float: left;
}

.no-border {
    border: 0 !important;
}

.sortable_div:after {
    content: '';
    display: block;
    clear: both;
}

.dashboard-title-input {
    display: none;
    width: auto;
    font-size: 18px;
}

.card-template {
    min-height: 185px;
    margin-bottom: 15px;
}

.card-template > div {
    background-color: #fff;
    box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
}

.card-template .settings {
    padding: 0;
}

.card-template .range-default {
    border-top: 1px solid #ebebeb;
}

.card-template .borderGray > .card-header {
    border-top-color: #4d4d4d;
}

.card-template .borderRed > .card-header {
    border-top-color: var(--color-colorRed);
}

.card-template .borderOrange > .card-header {
    border-top-color: var(--color-colorOrange);
}

.card-template .borderYellow > .card-header {
    border-top-color: var(--color-colorYellow);
}

.card-template .borderGreen > .card-header {
    border-top-color: var(--color-colorGreen);
}

.card-template .borderBlue > .card-header {
    border-top-color: var(--color-colorBlue);
}

.card-template .borderDarkBlue > .card-header {
    border-top-color: var(--color-colorDarkBlue);
}

.card-template .borderPurple > .card-header {
    border-top-color: var(--color-colorPurple);
}

.card-template .borderViolet > .card-header {
    border-top-color: var(--color-colorViolet);
}

.card-header {
    border-top: 4px solid #a3adbb;
    padding: 13px 8px 12px 17px;
    overflow: hidden;
}

.card-header img {
    width: 38px;
    height: 38px;
}

.card-header h3 {
    margin: 2px 10px;
    line-height: 1.2;
}

.card-header .icon-settings_icon-header {
    font-size: 22px;
}

.card-header .icon-new-hand {
    padding-left: 2px;
}

.card-info {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 10px 19px 15px;
}

.card-info .value {
    font-weight: 200;
}

.card-info .value sup {
    top: -1.3em;
    margin-left: 25px;
    margin-right: 5px;
    font-size: 40%;
    font-weight: 400;
}

.card-info .icon-holder {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.card-info .icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.card-info .icon + .icon {
    margin-top: 3px;
}

.connection {
    display: block;
    padding-left: 2px;
    padding-top: 2px;
    font-size: 12px;
    font-weight: 200;
}

.connection:before {
    display: inline-block;
    margin-right: 8px;
    vertical-align: bottom;
    font-family: icomoon;
    font-size: 13px;
}

.connection.on:before {
    content: '\e91d';
    color: #31c468;
}

.connection.off:before {
    content: '\e91d';
    color: #a3adbb;
}

.connection.bad:before {
    content: '';
    width: 13px;
    height: 15px;
    background: url(../img/SVG/badSignal.svg) no-repeat center;
}

.connection.half:before {
    content: '';
    width: 13px;
    height: 15px;
    background: url(../img/SVG/halfSignal.svg) no-repeat center;
}

.btn-settings {
    position: relative;
}

input[type]::-webkit-input-placeholder {
    color: #929292;
}

input[type]:-moz-placeholder {
    color: #929292;
}

input[type]::-moz-placeholder {
    color: #929292;
}

input[type]:-ms-input-placeholder {
    color: #929292;
}

input {
    color: #000;
}

input:focus {
    outline: 0;
}

input, input.form-control {
    background: transparent;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid #BFBFBF;
}

input.has-error {
    border-color: #a94442;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #9b9b9b;
}

.form-control.pictured {
    padding-left: 35px;
    padding-bottom: 6px;
    font-size: 16px;
    line-height: 24px;
}

.form-control:focus {
    box-shadow: none;
    border-bottom: 2px solid var(--color-brand-primary);
}

.form-device .form-group {
    padding-top: 7px;
}

.form-device .radio-group {
    margin-right: -15px;
}

.form-device .form-control {
    max-width: 268px;
    padding-left: 0;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.form-device .label-color {
    margin-bottom: 15px;
}

.color-radio {
    display: none;
}

.color-radio + label {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    margin-left: -4px;
    margin-right: 7px;
    cursor: pointer;
}

.color-radio + label:before {
    content: '';
    display: inline-block;
    width: 29px;
    height: 29px;
    border: 4px solid #fff;
    background-color: #4d4d4d;
}

.color-radio:checked + label:before {
    box-shadow: 0 0 0 1px #ebebeb;
}

label.borderGray:before {
    background-color: #4d4d4d;
}

label.borderRed:before {
    background-color: var(--color-colorRed);
}

label.borderOrange:before {
    background-color: var(--color-colorOrange);
}

label.borderYellow:before {
    background-color: var(--color-colorYellow);
}

label.borderGreen:before {
    background-color: var(--color-colorGreen);
}

label.borderBlue:before {
    background-color: var(--color-colorBlue);
}

label.borderDarkBlue:before {
    background-color: var(--color-colorDarkBlue);
}

label.borderPurple:before {
    background-color: var(--color-colorPurple);
}

label.borderViolet:before {
    background-color: var(--color-colorViolet);
}

.checkbox-default {
    display: none;
}

.checkbox-default + label {
    position: relative;
    display: inline-block;
    margin-left: 2px;
    margin-top: -3px;
    padding-left: 32px;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
}

.checkbox-default + label:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 14px;
    margin-left: -32px;
    background-color: transparent;
    border: 2px solid #757575;
    border-radius: 2px;
    vertical-align: middle;
}

.checkbox-default:checked + label:after {
    content: '\e909';
    font-family: icomoon;
    font-size: 20px;
    color: #757575;
    position: absolute;
    top: 0;
    left: -1px;
}

.checkbox-brand {
    display: none;
}

.checkbox-brand + label {
    position: relative;
    display: inline-block;
    margin-left: 2px;
    margin-top: -3px;
    padding-left: 32px;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
}

.checkbox-brand + label:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 14px;
    margin-left: -32px;
    background-color: transparent;
    border: 2px solid #757575;
    border-radius: 2px;
    vertical-align: middle;
}

.checkbox-brand:checked + label:before {
    background-color: var(--color-brand-primary);
    border: 2px solid var(--color-brand-primary);
}

.checkbox-brand:checked + label:after {
    content: '\e909';
    font-family: icomoon;
    font-size: 15px;
    color: #fff;
    position: absolute;
    top: 1px;
    left: 1px;
}

.switcher-holder {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 40px;
    height: 20px;
}

.switcher-holder input {
    visibility: hidden;
}

.switcher {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 40px;
    height: 20px;
    border-radius: 10px;
    background-color: #bac1cc;
    margin: 0;
}

.switcher:after {
    content: '';
    position: absolute;
    top: 0;
    left: 1px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #FFF url(../img/bg-checkbox.png) no-repeat center;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: all .2s;
}

.switcher-holder input:checked ~ .switcher {
    background: var(--color-brand-primary);
}

.switcher-holder input:checked ~ .switcher:after {
    left: 21px;
    border: 1px solid rgba(212, 161, 6, 0.68);
}

.range-default {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.range-default .slider.slider-horizontal {
    height: 37px;
    margin: 0 15px 0 20px;
    width: 100%;
}

.range-default .slider.slider-horizontal .slider-selection, .range-default .slider.slider-horizontal .slider-handle {
    background-color: #707e83;
}

.range-default .slider.slider-horizontal .slider-track {
    margin-top: -1px;
}

.range-default .slider.slider-horizontal .slider-handle {
    box-shadow: 0px 0px 0px 3px rgba(110, 132, 127, 0.212);
    margin-top: 12px;
    margin-left: -1px;
}

.range-default .SliderVal {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 57px;
    min-width: 57px;
    padding: 0 26px 0 0;
    margin-left: 2px;
    margin-top: 0;
    border: 0;
    background-color: #f5f5f5;
    font-size: 16px;
}

.range-default .slider-label {
    position: absolute;
    top: 50%;
    right: 6px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
}

.disabled .card_switch_holder {
    cursor: not-allowed;
}

.slider.slider-horizontal {
    width: calc(100% - 55px);
    height: 13px;
}

.slider.slider-horizontal .slider-track {
    height: 2px;
    background-image: none;
    background-color: #bababa;
}

.slider.slider-horizontal .slider-selection {
    background-image: none;
    background-color: var(--color-brand-primary);
    box-shadow: none;
}

.slider.slider-horizontal .slider-handle {
    width: 12px;
    height: 12px;
    margin-top: -3px;
    margin-left: 0;
    background-image: none;
    background-color: var(--color-brand-primary);
}

.SliderVal {
    display: block;
    float: right;
    width: 40px;
    white-space: nowrap;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    font-weight: 500;
    color: #231f20;
    line-height: 33px;
    margin-top: -11px;
}

.slider-label {
    position: absolute;
    top: 0;
    right: 0;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
}

.bootstrap-select.btn-group > .dropdown-toggle {
    padding: 6px;
    background-color: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
}

.bootstrap-select.btn-group > .dropdown-toggle:active {
    background-color: initial;
    box-shadow: none;
}

.bootstrap-select.btn-group > .dropdown-toggle:focus {
    outline: none !important;
}

.bootstrap-select.btn-group > .dropdown-toggle .caret {
    border: 0;
    right: 0;
    margin-top: 0;
}

.bootstrap-select.btn-group > .dropdown-toggle .caret:before {
    content: "\e909";
    font-family: 'icomoon';
    color: #929292;
    font-size: 23px;
    line-height: 0;
}

.bootstrap-select.btn-group.open .dropdown-toggle, .bootstrap-select.btn-group.open .dropdown-toggle:hover {
    color: #333;
    background-color: initial;
    border-color: initial;
    box-shadow: none;
}

.bootstrap-select.btn-group.open .dropdown-toggle .caret:before, .bootstrap-select.btn-group.open .dropdown-toggle:hover .caret:before {
    color: #333;
}

.modal {
    position: absolute;
    bottom: auto;
}

.modal-footer .btn {
    text-transform: uppercase;
}

.modal-footer .btn-default:hover {
    box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
}

.modal-dialog {
    min-width: 290px;
}

.modal-content {
    background-color: #f4f4f4;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.modal-content:after {
    content: '';
    display: block;
    clear: both;
}

.modal-content .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    padding: 2px;
}

.modal-content .close .icon-close {
    font-size: 16px;
}

.modal-scheduler {
    width: 290px;
    padding-top: 20px;
    padding-left: 15px;
    border: 1px solid #a3adbb;
    background-color: #fff;
    box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.16);
}

.modal.reportFailure {
    overflow-y: visible;
    z-index: 1200;
}

.reportFailure .close {
    top: 2px;
    right: 2px;
}

.reportFailure .close .icon-close {
    font-size: 24px;
}

.reportFailure .modal-content {
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.3);
}

.reportFailure .modal-title {
    font-size: 20px;
    line-height: 1;
}

.reportFailure .modal-body {
    padding: 15px 0;
}

.tooltip.in {
    opacity: 1;
}

.tooltip-inner {
    background-color: #fff;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25);
    font-size: 12px;
    font-weight: 200;
    color: #000;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #fff;
}

.tab-page:before {
    content: '';
    display: block;
    clear: both;
}

.tab-page .nav-tabs {
    /* Let's get this party started */
    /* Track */
    /* Handle */
    border-bottom: 1px solid #d7d7d7;
    border-top: 1px solid #d7d7d7;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.tab-page .nav-tabs::-webkit-scrollbar {
    width: 0;
}

.tab-page .nav-tabs::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.tab-page .nav-tabs::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none;
}

.tab-page .nav-tabs::-webkit-scrollbar-thumb:window-inactive {
    background: transparent;
}

.tab-page .nav-tabs > li {
    border-right: 1px solid #d7d7d7;
    margin-bottom: -1px;
    margin-left: -3px;
    display: inline-block;
    float: none;
}

.tab-page .nav-tabs > li > a {
    margin-right: 0;
    padding: 6px 15px;
    border: 0;
    border-radius: 0;
    color: #a3adbb;
    text-align: center;
}

.tab-page .nav-tabs > li > a span {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 200;
    color: #000;
}

.tab-page .nav-tabs > li.active > a,
.tab-page .nav-tabs > li.active > a:hover,
.tab-page .nav-tabs > li.active > a:focus {
    background-color: #fff;
    border: 0;
    color: #a3adbb;
}

.tab-page .tab-pane {
    background-color: #fff;
    padding: 15px;
}

.tab-page .tab-pane .button-holder {
    margin-top: 25px;
    text-align: center;
}

.tab-page .tab-pane .button-holder .btn {
    display: inline-block;
    height: 36px;
    margin-bottom: 10px;
    color: #000;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: none;
}

.tab-page .tab-pane .button-holder .btn + .btn {
    margin-left: 13px;
}

.tab-page .tab-pane .button-holder .btn-primary {
    width: 112px;
}

.tab-page .tab-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
}

.help-panel, .help-panel-page {
    margin-top: 15px;
}

.help-panel .panel-heading, .help-panel-page .panel-heading {
    padding: 0;
}

.help-panel .panel-heading a, .help-panel-page .panel-heading a {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #ebebeb;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 11px 15px;
    color: #000;
}

.help-panel .panel-heading a i, .help-panel-page .panel-heading a i {
    transition: 0.3s;
    color: #a3adbb;
}

.help-panel .panel-heading a.collapsed i, .help-panel-page .panel-heading a.collapsed i {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: 0.3s;
}

.help-panel .panel-heading + .panel-collapse > .panel-body,
.help-panel .panel-heading + .panel-collapse > .list-group, .help-panel-page .panel-heading + .panel-collapse > .panel-body,
.help-panel-page .panel-heading + .panel-collapse > .list-group {
    border: 0;
}

.help-panel .panel + .panel, .help-panel-page .panel + .panel {
    margin-top: 0;
}

.help-panel .panel, .help-panel-page .panel {
    border: 0;
    box-shadow: none;
}

.help-panel .panel-body, .help-panel-page .panel-body {
    padding-top: 0;
}

.help-panel .panel-body p, .help-panel-page .panel-body p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.3;
}

.help-panel .panel-body p a, .help-panel-page .panel-body p a {
    color: #14a6fb;
    text-decoration: underline;
}

.help-panel-page .panel {
    background-color: transparent;
    border-bottom: 1px solid #ebebeb;
}

.help-panel-page .panel-heading a {
    border-top: 0;
}

.input-daterange .label {
    display: inline-block;
    width: 20px;
    padding: 0;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #9b9b9b;
    vertical-align: bottom;
}

.input-daterange input {
    display: inline-block;
    padding-left: 6px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    background: transparent;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid #e0e0e0;
}

.input-daterange .date-range, .input-daterange .timepicker {
    width: 100px;
    padding-left: 0;
}

.input-daterange .timepicker {
    margin-left: 8px;
    text-align: center;
}

#header {
    position: fixed;
    width: 100%;
    z-index: 3002;
    top: 0px;
    background-color: #fff;
    box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
}

.navbar-brand {
    position: relative;
    display: block;
    width: 79px;
    height: 67px;
    position: relative;
    display: block;
    padding: 22px 0;
    padding: 0;
    background-color: var(--color-brand-primary);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.navbar-brand img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.navbar-brand:focus, .navbar-brand:hover {
    background-color: var(--color-brand-primary);
    color: #fff;
}

.navbar {
    width: 100%;
    margin-bottom: 0;
    border: 0;
    line-height: 5;
    height: 67px;
}

.navbar:before, .navbar:after {
    display: none;
}

.navbar .item2 {
    margin-left: 14%;
}

.navbar .item3 {
    margin-left: 3%;
}

.border-right {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-bottom: 0;
    padding: 0;
}

.border-right:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.border-right > li {
    display: inline-block;
    list-style: none;
    vertical-align: middle;
}

.navbar-toggle {
    margin: 0;
    padding: 5px;
    background-color: transparent;
    border: 0;
}

.navbar-toggle .icon-bar {
    width: 18px;
    border-radius: 0;
    background-color: #a3adbb;
}

.dropdown-menu > li a:focus,
.dropdown-menu > li a:hover {
    color: #707e83;
    text-decoration: none;
    background-color: transparent;
}

.dropdown-menu-holder {
    position: static;
    float: right;
    margin-right: 19px;
    margin-top: 19px;
}

.dropdown-menu-holder.open:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    min-height: calc(100vh - 67px);
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.dropdown-menu-holder .dropdown-menu {
    left: 40px;
    right: 0;
    min-width: 280px;
    min-height: calc(100vh - 67px);
    border: 0;
    box-shadow: inset 0 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
    border-radius: 0;
}

.dropdown-menu-holder .dropdown-menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar-right {
    margin: 0;
    font-size: 16px;
    padding-top: 23px;
    padding-left: 26px;
}

.navbar-right li {
    padding-bottom: 11px;
    line-height: 1;
}

.navbar-right li .nav-item {
    padding: 0;
}

.navbar-right li [class^="icon-"], .navbar-right li [class^="icon-new-"], .navbar-right li [class^="material-"] {
    margin-right: 12px;
    font-size: 20px;
}

.navbar-right li:nth-child(1) [class^="icon-"], .navbar-right li:nth-child(1) [class^="icon-new-"], .navbar-right li:nth-child(2) [class^="icon-"], .navbar-right li:nth-child(2) [class^="icon-new-"] {
    margin-right: 23px;
}

.navbar-right li:nth-child(4), .navbar-right li:nth-child(5) {
    padding-bottom: 19px;
}

.navbar-right li:nth-child(4) [class^="icon-"], .navbar-right li:nth-child(4) [class^="icon-new-"], .navbar-right li:nth-child(4) [class^="material-"], .navbar-right li:nth-child(5) [class^="icon-"], .navbar-right li:nth-child(5) [class^="icon-new-"], .navbar-right li:nth-child(5) [class^="material-"] {
    margin-left: -2px;
    font-size: 22px;
}

.navbar-right .divider {
    margin: 0;
    margin-left: -25px;
    margin-bottom: 13px;
    padding: 0;
    height: 1px;
    background-color: #a3adbb;
}

.hasSubnav {
    position: relative;
}

.sub-menu {
    display: none;
    list-style: none;
    position: absolute;
    text-align: center;
    top: 100%;
    left: 0;
    margin-top: 7px;
    background-color: #fff;
    width: 100%;
    min-width: 125px;
    padding-left: 10px;
    -webkit-box-shadow: 0px 13px 18.8px 1.2px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 13px 18.8px 1.2px rgba(0, 0, 0, 0.24);
    z-index: 30;
}

.sub-menu.open {
    display: block;
}

.sub-menu ul {
    list-style: none;
    padding: 0;
}

.sub-menu li {
    line-height: 3;
}

.sub-menu a {
    font-size: 15px;
    line-height: 27px;
}

.user-holder .sub-menu {
    position: static;
    display: block;
    margin-top: 20px;
    padding-top: 11px;
    border-top: 1px solid #a3adbb;
    margin-left: -26px;
    padding-left: 26px;
    min-width: 0;
    box-shadow: none;
}

.nav-item > * {
    vertical-align: middle;
}

.nav-item, .dropdown-menu > li > a {
    display: inline-block;
    position: relative;
    color: #a3adbb;
}

.nav-item.active, .nav-item:hover {
    color: #707e83;
}

.badge {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -7px;
    margin-right: 5px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
    padding: 2px;
    color: #fff;
    font-size: 10px;
    line-height: 10px;
}

.badge.brand-danger {
    background-color: var(--color-colorRed);
}

.badge:empty {
    display: block;
    width: 10px;
    height: 10px;
}

.history-badge {
    position: absolute;
    top: 35%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -7px;
    margin-right: 10px;
    min-width: 7px;
    min-height: 7px;
    border-radius: 50%;
    padding: 2px;
    color: #fff;
    font-size: 10px;
    line-height: 10px;
}

.history-badge.brand-unread {
    background-color: var(--color-colorOrange);
}

.history-badge:empty {
    display: block;
    width: 7px;
    height: 7px;
}

.dashboard {
    padding: 22px 0;
}

.dashboard .heading {
    margin-bottom: 17px;
}

.heading.decorated {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.heading.decorated h2 {
    margin: 0;
    letter-spacing: 0.5px;
}

.heading.decorated hr.decor {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0;
    border: 0;
    height: 1px;
    background: #e1e1e1;
    display: inline-block;
    margin-left: 18px;
}

.page-options {
    padding: 0;
    margin-left: -2px;
    margin-right: -5px;
}

.heading-settings-button {
    font-size: 24px;
    padding: 0;
    margin-left: 9px;

}

.heading-settings-button .icon-settings_icon-header {
    font-size: 21px;
}

.dashboard-table {
    padding: 15px 0 30px;
}

.dashboard-table .dashboard-title h1, .dashboard-table .dashboard-title h2, .dashboard-table .dashboard-title h3, .dashboard-table .dashboard-title h4 {
    display: inline-block;
    margin: 0;
    margin-right: 35px;
    font-size: 16px;
    vertical-align: middle;
}

.dashboard-table .dashboard-title .btn {
    padding: 0 4px;
}

.dashboard-table .dashboard-title .btn .icon-settings_icon2 {
    font-size: 18px;
}

.dashboard-table .dashboard-title .btn .icon-new-filter {
    font-size: 16px;
}

.dashboard-table .add-template {
    font-size: 16px;
    font-weight: 200;
}

.dashboard-table .add-template i {
    display: inline-block;
    margin-right: 14px;
}

.table-view .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: auto;
    max-width: 200px;
}

.table-view .bootstrap-select.btn-group > .dropdown-toggle {
    padding-right: 24px;
    border-bottom: 0;
}

.table-view .bootstrap-select.btn-group > .dropdown-toggle .caret {
    margin-top: -4px;
}

.serial-number {
    overflow: hidden;
    text-overflow: ellipsis;
    direction: rtl;
}

.form-search {
    width: 100%;
}

.form-search .form-group {
    margin: 0;
}

.form-search .search {
    position: relative;
}

.form-search .search:before {
    content: "\e902";
    font-family: 'icomoon-new';
    position: absolute;
    top: 5px;
    left: -3px;
    font-size: 22px;
    line-height: 1;
    color: #a3adbb;
}

.form-search .form-control.pictured {
    padding-left: 30px;
}

.form-search input {
    width: 100%;
}

input[type="search"]::-webkit-input-placeholder {
    font-style: italic;
    font-weight: 200;
    font-size: 15px;
}

input[type="search"]:-moz-placeholder {
    font-style: italic;
    font-weight: 200;
    font-size: 15px;
}

input[type="search"]::-moz-placeholder {
    font-style: italic;
    font-weight: 200;
    font-size: 15px;
}

input[type="search"]:-ms-input-placeholder {
    font-style: italic;
    font-weight: 200;
    font-size: 15px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: transparent;
}

.table-striped > tbody > tr:nth-of-type(even) {
    background-color: transparent;
}

.table-striped > tbody > tr > td:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-striped > tbody > tr > td:nth-of-type(even) {
    background-color: transparent;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    border: 0;
    white-space: nowrap;
}

.table-view > thead > tr > th {
    border-bottom: 1px solid #ebebeb;
}

.table-view > thead > tr > th:last-child {
    text-align: right;
}

.table-view thead {
    display: none;
}

.table-view tbody > tr {
    position: relative;
    margin-top: 49px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.table-view tbody > tr td {
    padding: 0 5px;
    font-size: 14px;
    line-height: 34px;
    vertical-align: middle;
}

.table-view tbody > tr td:before {
    content: attr(data-title);
    display: inline-block;
    width: 50%;
    padding-left: 12px;
    margin-right: 20px;
    vertical-align: middle;
    border-right: 1px solid #ebebeb;
    color: #000;
}

.table-view tbody > tr td .connection {
    display: inline-block;
    font-size: 14px;
}

.table-view td.button-holder {
    position: absolute;
    bottom: 100%;
    right: 0;
}

.table-view td.button-holder:before {
    display: none;
}

.table-view td.button-holder .btn {
    padding: 0 0 14px 8px;
}

.table-view td.name {
    font-weight: 500;
}

.table-view td.name-underlined {
    text-decoration: underline;
}

.table-view td > i {
    vertical-align: middle;
}

.table-view .icon-settings_icon-header {
    font-size: 16px;
}

.table-view .icon-new-trash {
    font-size: 16px;
}

.table-view .icon-arrow-temperature {
    display: inline-block;
    margin: 0 5px;
    font-size: 12px;
}

.table-view .icon-warm-icon.warm {
    color: #ff8a2a;
}

.table-view .icon-warm-icon.off {
    vertical-align: middle;
    color: #a3adbb;
}

.table-view .icon-new-hand {
    font-size: 22px;
}

.table-view .icon-clock-icon,
.table-view .icon-new-hand,
.table-view .icon-cold-icon {
    color: #1ca9fb;
}

.table-view td:nth-of-type(5) {
    font-size: 12px;
}

.table-zone {
    max-width: 350px;
    margin-bottom: 16px;
    border-bottom: 1px solid #ebebeb;
}

.table-zone.no-border {
    border: 0;
}

.table-zone th {
    width: 22%;
    font-size: 13px;
    font-weight: 400;
}

.table-zone td {
    width: 22%;
    font-size: 14px;
}

.table-zone > tbody > tr > td {
    padding: 7px 0;
}

.table-zone > thead > tr > th {
    padding: 7px 0 13px 0;
}

.table-zone th,
.table-zone td:not(:first-child) {
    text-align: center;
}

.table-zone > tbody > tr:last-child > td {
    padding-bottom: 9px;
}

.table-zone .color-blue {
    color: #37aeff;
}

.table-zone .color-darkblue {
    color: #000079;
}

.table-zone .color-purple {
    color: #910266;
}

.table-zone .color-green {
    color: #16c53e;
}

.table-zone .t-heading {
    color: #929292;
}

.table-zone > tbody > tr:last-of-type {
    font-weight: 500;
}

.login-page, .register-page {
    background: url(../img/bg-login.png) repeat;
}

.login-panel {
    margin: 0 auto;
    margin-top: 10vh;
    text-align: center;
}

.login-panel.fixed-width {
    width: 290px;
}

.login-panel .close {
    margin-top: 8px;
    margin-right: 4px;
}

.login-panel .panel {
    margin-bottom: 26px;
    padding: 35px 5px 3px;
    border: 0;
    border-radius: 0;
    box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
}

.login-panel .panel-body {
    padding: 19px 15px 17px 15px;
}

.login-panel .colorDarkGreen {
    font-size: 16px;
}

.login-panel .social-block > * {
    margin-bottom: 12px;
}

.login-panel .social-block p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
}

.login-panel .social-block [class^="icon-"], .login-panel .social-block [class^="icon-new-"] {
    font-size: 40px;
}

.login-panel .social-block .icon {
    margin: 0 10px;
}

.login-panel .social-block .colorDarkGreen {
    font-size: 16px;
    line-height: 29px;
}

.login-panel .link-holder {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.login-panel .link-holder a + a {
    margin-top: 20px;
}

.login-panel .more-inform {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #1a2923;
    margin-left: -9px;
}

.login-panel .more-inform:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: -4px;
    background-color: #1a2923;
}

.login-panel .with-icon .icon-copy {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-left: 14px;
    margin-top: -5px;
    background-image: url(../img/copy2.png);
}

.login-panel .button-holder {
    margin-top: 25px;
    text-align: right;
}

.login-panel .button-holder .btn {
    min-width: 110px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.login-panel .button-holder .btn-primary {
    width: auto;
}

.login-panel .button-holder .btn + .btn {
    margin-left: 15px;
}

.login-title {
    width: 210px;
    display: block;
    margin: 0 auto;
    color: var(--color-brand-primary);
    font-size: 45px;
    line-height: 0.7;
    letter-spacing: 2px;
}

.login-title img {
    display: block;
}

.login-subtitle {
    font-size: 26px;
    line-height: 24px;
    text-align: center;
    margin-top: 1px;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}

.login-information {
    max-width: 75%;
    margin: 0 auto 15px;
    font-size: 16px;
    line-height: 24px;
}

.login-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.login-form .form-group.email:before {
    content: "\e915";
    font-family: 'icomoon';
    position: absolute;
    top: 7px;
    left: 1px;
    font-size: 22px;
    line-height: 1;
    color: #a3adbb;
}

.login-form .form-group.password:before {
    content: "\e91e";
    font-family: 'icomoon';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 22px;
    color: #a3adbb;
}

.login-form .form-group .colorDarkGreen {
    margin-left: 0;
}

.login-form button {
    margin-bottom: 26px;
}

.register-page .form-group.password {
    margin-bottom: 23px;
}

.register-page .login-form button {
    margin: -16px 0 23px 14px;
}

.setup-panel.fixed-width {
    width: 290px;
}

.setup-panel {
    margin: 0 auto;
    margin-top: 10vh;
    text-align: center;
}

.setup-panel .close {
    margin-top: 8px;
    margin-right: 4px;
}

.setup-panel .panel {
    margin-bottom: 26px;
    padding: 35px 5px 3px;
    border: 0;
    border-radius: 0;
    box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
}

.setup-panel .panel-body {
    padding: 27px 20px;
}

.setup-panel .colorDarkGreen {
    margin-left: 34px;
    font-size: 16px;
}

.setup-panel .social-block > * {
    margin-bottom: 12px;
}

.setup-panel .social-block p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
}

.setup-panel .social-block [class^="icon-"], .setup-panel .social-block [class^="icon-new-"] {
    font-size: 40px;
}

.setup-panel .social-block .icon {
    margin-left: 17px;
}

.setup-panel .social-block .colorDarkGreen {
    font-size: 16px;
    line-height: 29px;
    margin-left: -12px;
}

.setup-panel .link-holder {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.setup-panel .link-holder a + a {
    margin-top: 20px;
}

.setup-panel .more-inform {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #1a2923;
    margin-left: -9px;
}

.setup-panel .more-inform:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: -4px;
    background-color: #1a2923;
}

.setup-panel .with-icon .icon-copy {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-left: 14px;
    margin-top: -5px;
    background-image: url(../img/copy2.png);
}

.setup-panel .button-holder {
    margin-right: 5px;
    margin-top: 87px;
    text-align: right;
}

.setup-panel .button-holder .btn {
    min-width: 110px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.setup-panel .button-holder .btn-primary {
    width: auto;
}

.setup-panel .button-holder .btn + .btn {
    margin-left: 15px;
}

.setup-panel .login-subtitle {
    margin-bottom: 26px;
}

.setup-page p {
    margin-bottom: 23px;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 24px;
}

.setup-page p span {
    display: inline-block;
    margin: 0 5px;
}

.setup-page .loader {
    margin: 0 auto;
}

.form-group.required {
    position: relative;
}

.form-group.required:after {
    content: '\002A';
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 15px;
    color: var(--color-brand-primary);
}

.setup-form {
    margin-top: 20px;
}

.setup-form .form-control {
    padding: 6px;
    padding-right: 50px;
    font-size: 16px;
}

.setup-form .form-group {
    margin-bottom: 30px;
}

.setup-form .form-group:last-of-type {
    margin-bottom: 20px;
}

.setup-form .bootstrap-select.btn-group > .dropdown-toggle {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}

.setup-page p.footnote {
    text-align: left;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: #929292;
}

.setup-page p.footnote:before {
    content: '\002A';
    display: inline-block;
    margin-right: 7px;
    font-size: 15px;
    color: var(--color-brand-primary);
}

.page-device-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 5px 5px 0 9px;
    background-color: transparent;
}

.page-device-header img {
    width: 100%;
    max-width: 36px;
}

.page-device-header > *, .page-device-header i {
    display: inline-block;
    vertical-align: middle;
}

.page-device-header .icon-holder {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 13px;
}

.page-device-header .title {
    margin: 0;
    padding: 0 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.page-device-header .title span:not(:first-of-type) {
    display: block;
    font-size: 14px;
    color: #939393;
}

.page-device-header .icon-clock-icon {
    margin: 0 3px;
    color: #03a0fc;
}

.page-device-header .icon-warning {
    margin: 1px 0;
    width: 21px;
    height: 21px;
    font-size: 18px;
}

.page-device-header .icon-holder i {
    margin: 0 9px;
}

.page-device .temperature {
    font-size: 24px;
}

.page-device .temperature:before {
    margin-right: -8px;
    margin-left: 8px;
}

.page-device-settings {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 7px 16px 0 9px;
    background-color: transparent;
}

.page-device-settings .connection {
    font-size: 14px;
    margin-left: 12px;
}

.page-device-settings .connection:before {
    margin-right: 10px;
    font-size: 21px;
    line-height: 1;
    vertical-align: bottom;
}

.page-device-icons {
    float: right;
    margin-right: 6px;
}

.page-device .degrees > * {
    display: inline-block;
    vertical-align: middle;
}

.page-device .degrees sup {
    font-size: 50%;
    top: -9px;
    left: 7px;
    margin-right: 7px;
}

.page-device .degrees .font-large {
    font-size: 24px;
    font-weight: 200;
}

.page-device .degrees .font-small {
    font-size: 16px;
    font-weight: 200;
}

.page-device .degrees .font-small sup {
    top: -5px;
    left: 5px;
    margin-right: 7px;
}

.page-device .degrees .icon-arrow-temperature {
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
}

.tab-page {
    background-color: transparent;
}

.tab-page [class^="icon-"], .tab-page [class^="icon-new-"], .tab-page .settings, .tab-page .holiday, .tab-page .eyes {
    font-size: 22px;
    line-height: 28px;
}

.tab-page .graph {
    font-size: 28px;
}

.info-table {
    margin-bottom: 13px;
    font-size: 13px;
    line-height: 39px;
}

.info-table .item {
    padding: 0 15px;
    border-bottom: 1px solid #ebebeb;
}

.info-table .item:after {
    content: '';
    display: block;
    clear: both;
}

.info-table .item.no-border {
    border: 0;
    line-height: 16px;
}

.info-table .item.no-border span {
    line-height: 39px;
}

.info-table .item > span, .info-table .item > div {
    width: 50%;
    float: left;
}

.info-table .item .tab-title {
    line-height: 1;
    margin-bottom: 0;
}

.info-table .item .title {
    font-size: 13px;
    color: #888;
}

.info-table .item > div span + span {
    margin-left: 8px;
}

.form-holiday .checkbox-holder {
    margin: -5px -5px 0 0;
}

.form-holiday .slider.slider-horizontal {
    width: calc(100% - 70px);
    margin-top: 19px;
}

.form-holiday .SliderVal {
    margin: 4px 19px 0 0;
    line-height: 31px;
}

.form-holiday .period-holder .btn {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    margin: 10px 0 0 0;
}

.form-holiday .input-daterange {
    margin-bottom: 13px;
}

.tab-pane#scheduler > .button-holder {
    margin: 10px 0;
}

.tab-pane#scheduler > .button-holder .btn + .btn {
    margin-left: 10px;
    margin-right: 0;
}

.tab-pane#scheduler .btn-gray, .tab-pane#scheduler .ajax-button, .tab-pane#scheduler .btn-primary, .tab-pane#scheduler .btn-reset, .tab-pane#scheduler .btn-default {
    width: auto;
    min-width: 119px;
    padding: 0 19px;
}

.scheduler-header .btn, .scheduler-content .btn {
    padding: 5px 2.5px;
}

.scheduler-header .btn + .btn, .scheduler-content .btn + .btn {
    margin-left: 10px;
}

.scheduler-header [class^="icon-"], .scheduler-header [class^="icon-new-"], .scheduler-content [class^="icon-"], .scheduler-content [class^="icon-new-"] {
    font-size: 16px;
    line-height: 1;
}

.scheduler-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.scheduler-content {
    margin: 10px 0 50px 0;
}

.scheduler-holder {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.scheduler-holder .weekDay {
    font-size: 14px;
    text-transform: uppercase;
}

.scheduler-row {
    display: table;
    width: calc(100% - 61px);
    margin: 0 10px;
}

.scheduler-row .item {
    position: relative;
    display: inline-block;
    display: table-cell;
    height: 16px;
    background-color: #a3adbb;
    text-align: center;
    color: #fff;
}

.scheduler-row .item.bg-color1 {
    background-color: var(--color-colorBlue);
}

.scheduler-row .item.bg-color2 {
    background-color: var(--color-colorOrange);
}

.scheduler-row .item.bg-color3 {
    background-color: var(--color-colorYellow);
}

.scheduler-row .item.bg-color4 {
    background-color: var(--color-colorRed);
}

.scheduler-row .item.bg-color5 {
    background-color: #4caf50;
}

.scheduler-row .item.timeDown:after {
    bottom: auto;
    top: 100%;
}

.scheduler-row .item + .item {
    border-left: 1px solid #fff;
}

.scheduler-row .item:first-child:before {
    content: attr(data-timeStart);
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-left: -10px;
    font-size: 12px;
    color: #6a6a6a;
}

.scheduler-row .item:last-child:before {
    content: attr(data-timeEnd);
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-right: -10px;
    font-size: 12px;
    color: #6a6a6a;
}

.hiddenBlock {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 50px;
    z-index: 100;
}

.form-scheduler .color {
    display: inline-block;
    width: 15px;
    height: 15px;
}

.form-scheduler .input-inline {
    display: inline-block;
    width: 70px;
    text-align: center;
}

.form-scheduler .btn i {
    font-size: 23px;
}

.form-scheduler .form-group {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-scheduler .dayHeading {
    display: inline-block;
    margin: 0 -7px 0 30px;
}

.dayHeading {
    font-size: 12px;
    font-weight: 500;
    color: #9b9b9b;
}

#graph .tab-title {
    display: inline;
    padding: 5px 0;
}

#graph .page-options {
    margin-left: 3px;
    margin-right: 0;
}

#graph .period-holder {
    margin-bottom: 15px;
}

#graph .period-holder .btn {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    padding: 4px 14px;
    margin-right: 2px;
}

#graph .icon-settings_icon-header {
    font-size: 19px;
}

#graph .form-group {
    margin-bottom: 0;
}

.graph-axes {
    font-size: smaller;
    color: #545454;
    margin: 10px 0;
}

.graph-axes-x {
    text-align: right;
}

.tab-pane#help {
    padding: 15px;
}

.tab-pane#help .help-panel {
    margin-left: -15px;
    margin-right: -15px;
}

.form-report textarea.form-control {
    padding-top: 0;
    padding-left: 34px;
    border: 0;
    border-bottom: 1px solid #ebebeb;
    border-radius: 0;
    margin-bottom: 10px;
    box-shadow: none;
    resize: none;
    min-height: 175px;
    font-size: 16px;
    font-weight: 200;
}

.form-report .button-holder {
    margin-top: 22px;
    padding-right: 15px;
    text-align: right;
}

.form-report .button-holder .btn {
    min-width: 110px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.form-report .button-holder .btn-primary {
    width: auto;
}

.form-report .button-holder .btn + .btn {
    margin-left: 15px;
}

.form-report p {
    font-size: 13px;
    font-weight: 200;
    padding-left: 19px;
    line-height: 1.3;
}

#options .icon-inform {
    font-size: 11px;
    line-height: 12px;
}

.title-colored {
    color: #598b93;
    border-bottom: 1px dashed #598b93;
    line-height: 1.5;
}

.attention-holder {
    padding-top: 25px;
    padding-bottom: 15px;
    border: 1px solid #ebebeb;
    text-align: center;
}

.attention-holder p {
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.3;
    color: #9b9b9b;
    font-size: 14px;
    font-weight: 600;
}

.attention-holder p.colorRed {
    color: var(--color-colorRed);
}

.form-options label .icon {
    margin-left: 5px;
    font-size: 18px;
}

.form-options label .icon-cold-icon {
    margin-left: 0;
    font-size: 16px;
    vertical-align: middle;
    color: #bac1cc;
}

.form-options .flex-justify {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.form-options .flex-justify label:first-child {
    width: 80%;
}

.form-options .flex-align {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.page-title {
    display: inline-block;
    margin-top: 0;
    line-height: 2;
    font-size: 16px;
}

label.page-title {
    color: #000;
    font-weight: 500;
}

.icon-new-filter {
    font-size: 16px;
}

.delete-btn {
    font-size: 15px;
    color: #a3adbb;
}

.delete-btn .icon-new-trash {
    font-size: 17px;
    vertical-align: top;
}

.notification-date,
.notification-time {
    font-size: 14px;
    font-weight: 400;
    color: #626262;
}

.notification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-list .notification-time {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: -16px;
    opacity: 0;
}

.notification-list [data-toggle="popover"] {
    color: #000;
    text-align: left;
    /*padding: 0;*/
}

.notification-list li {
    position: relative;
    margin-bottom: 10px;
    /*padding: 10px 15px;*/
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
    font-size: 14px;
    font-weight: 600;
    color: #000;
    transition: 0.3s;
}

.notification-list li .icon {
    margin-right: 15px;
    font-size: 16px;
    color: #a3adbb;
}

.notification-list li p {
    display: inline-block;
    width: 80%;
    vertical-align: top;
}

.notification-list li:hover {
    margin-bottom: 29px;
    transition: 0.3s;
}

.notification-list li:hover .notification-time {
    margin-top: 7px;
    opacity: 1;
    transition: margin-top 0.3s;
    transition: opacity 0.3s 0.3s;
}

.notification-list .popover {
    width: 455px;
    max-width: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 200;
}

.notification-list .popover.right {
    margin-left: 30px;
}

.notification-list .popover-title {
    position: relative;
    padding: 20px 15px;
    background-color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.notification-list .popover-content {
    height: 400px;
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
    overflow-y: auto;
}

.not-clicable {
    pointer-events: none;
}

.notification-menu-footer {
    display: flex;
    justify-content: center;
    text-align: center;
}

.limited-notification-count {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 20em;
}

#notifications-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

#notifications-menu::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

#notifications-menu::-webkit-scrollbar-thumb {
    background-color: #fec107;
}

.goUp {
    position: fixed;
    bottom: 0px;
    right: 0px;
    display: none;
    margin: 50px 18px 10px auto;
    font-size: 16px;
    color: #a3adbb;
}

.goUp span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 17px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #a3adbb;
}

.goUp span:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.5px 7px 6.5px;
    border-color: transparent transparent #f4f4f4 transparent;
}

.goUp:hover {
    color: #707e83;
}

.goUp:hover span {
    background-color: #707e83;
}

.goUp:hover span:before {
    border-color: transparent transparent #fff transparent;
}

.notification .modal-content {
    background-color: #fff;
}

hr.borderBottom {
    border-color: #ddd;
}

.currency {
    font-size: 14px;
    font-weight: 500;
    color: #acacac;
    white-space: nowrap;
}

.btn-attention {
    background-color: var(--color-colorRed);
    color: #fff;
}

.btn-attention:hover,
.btn-attention:active,
.btn-attention.active,
.btn-attention:active:hover,
.btn-attention:active:focus,
.btn-attention:focus,
.btn-attention.focus {
    background-color: #dc0909;
    box-shadow: inset 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
}

.form-profile input {
    width: 100%;
    font-size: 14px;
}

.form-profile .buttonSave {
    display: block;
    width: 113px;
    margin-left: auto;
    text-transform: uppercase;
}

.form-profile hr {
    margin-left: -15px;
    margin-right: -15px;
}

.form-profile label.switcher-holder {
    display: inline-block;
}

.form-profile label.switcher-holder + label {
    display: inline-block;
    margin-left: 15px;
}

.form-profile .btn {
    width: auto;
    text-transform: uppercase;
    font-weight: 500;
}

.form-profile .btn + .btn {
    margin-left: 10px;
}

.form-profile .dropdown-toggle {
    width: 100%;
}

.form-profile .page-title {
    font-size: 20px;
    font-weight: 500;
}

.profile-scheduler {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.profile-scheduler > .form-group {
    width: 100%;
}

.profile-scheduler .checkbox-brand + label {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.profile-scheduler .scheduler-buttons > .btn {
    padding: 6px 4px;
}

.profile-scheduler .scheduler-row .item:only-child:before {
    content: attr(data-timeStart);
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-left: -10px;
    right: auto;
    font-size: 12px;
    color: #6a6a6a;
}

.profile-scheduler .scheduler-row .item:only-child:after {
    content: attr(data-timeEnd);
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-right: -10px;
    font-size: 12px;
    color: #6a6a6a;
}

.profile-scheduler .scheduler-row .item:not(:only-child):after {
    content: attr(data-time);
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-left: -10px;
    font-size: 12px;
    color: #6a6a6a;
}

.profile-scheduler .scheduler-header .tab-title {
    margin: 0;
}

.profile-scheduler .modal-scheduler {
    min-width: 290px;
    padding: 15px;
    text-align: center;
}

.profile-scheduler .modal-scheduler .label {
    font-size: 12px;
    font-weight: 500;
    color: #000;
}

.profile-scheduler .modal-scheduler .input-inline {
    width: 50px;
    font-size: 12px;
}

.profile-scheduler .modal-scheduler .button-holder {
    text-align: right;
}

.profile-scheduler .modal-scheduler .button-holder .buttonSubmit {
    width: 73px;
}

.profile-scheduler .modal-scheduler .button-holder .buttonReset {
    padding: 6px 10px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
}

.profile-scheduler .modal-scheduler .currency {
    font-size: 12px;
}

.graph-holder {
    position: relative;
}

#graphite_chart {
    min-width: 260px;
    margin: 20px 0;
}

.legendLabel {
    padding: 10px;
}

.has-error .form-control {
    box-shadow: none;
}

.has-error .form-control:focus {
    box-shadow: none;
}

.datepicker.dropdown-menu {
    width: 227px;
}

.datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active[disabled], .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active.disabled:hover[disabled] {
    background-color: var(--color-brand-primary);
    background-image: none;
    border-radius: 50%;
    padding: 0;
    width: 32px;
    height: 32px;
}

#profile-timezone-modal {
    position: fixed;
    overflow: hidden;
}

.footer__inner {
    padding: 10px 0;
    font-size: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer__inner > * {
    margin: 5px;
}

#profile-timezone-modal .modal-dialog {
    max-width: 95% !important;
}

.material-icons.delete-button {
    font-size: 20px;
}

