button,hr,input{overflow:visible}
progress,sub,sup{vertical-align:baseline}
[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}
html{line-height:1.15;-webkit-text-size-adjust:100%}
body{margin:0}
details,main{display:block}
h1{font-size:2em;margin:.67em 0}
hr{box-sizing:content-box;height:0}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}
a{background-color:transparent}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
b,strong{font-weight:bolder}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative}
sub{bottom:-.25em}
sup{top:-.5em}
img{border-style:none}
button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}
button,select{text-transform:none}
[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}
[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}
[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}
fieldset{padding:.35em .75em .625em}
legend{color:inherit;display:table;max-width:100%;white-space:normal}
textarea{overflow:auto}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
summary{display:list-item}
[hidden],template{display:none}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}



body {
    /*font-family: 'Open Sans', sans-serif;*/
    font-family: 'Fira Sans', Geneva, Arial, sans-serif;
    color: #545454;
    /*757575*/
    background: #fff;
    user-select: none
}

#loader {
    transition: all 0.2s;
    position: fixed;
    bottom: -60px;
    right: 10px;
    background: url(/assets/images/loader.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    color: #585858;
    background-position: 5px 5px;
    border-radius: 4px;
    padding-right: 5px;
    padding-left: 25px;
    line-height: 25px;
    height: 25px;
}

#loader.show {
    bottom: 10px;
}

#prism {
    overflow: hidden;
    height: 100vh;
}

.header {
    position: relative;
    box-sizing: border-box;
    border-bottom: 1px solid #c3c3c3;
    height: 50px;
    background: #fff;
    transition: 0.2s;
    top: -100%;
}

.header.show {
    top: 0
}

.header>* {
    position: relative;
    vertical-align: top;
}

.wrapper>div {
    float: left;
}

#nav.show {
    left: 0;
}

#nav {
    transition: all .3s;
    left: -100%;
    background: #303952;
    max-width: 70px;
    width: 70px;
    height: calc(100vh - 50px);
    position: relative;
}

#content {
    transition: all 0.2s;
    transform: translateZ(0);
    overflow: auto;
    width: calc(100% - 70px);
    height: calc(100% - 50px);
    position: fixed;
    top: 50px;
    right: 0;
    padding: 18px;
    overflow-y: scroll;
    box-sizing: border-box;
    background: #f3f3f3;
}

#logo {
    width: 70px;
    height: 50px;
    background: url("/assets/images/logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    display: inline-block;
    background-color: #303952
}

.self_title {
    box-shadow: 0 0 5px rgba(0,0,0,.1);
    display: inline-block;
    line-height: 50px;
    font-size: 20px;
    width: 100%;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1;
    position: absolute;
    padding: 0 10px;
    color: #4a6076;
    font-weight: 300;
}

#menu {
    width: 100%
}

#menu a {
    transition: all 0.2s;
    color: #fff;
    padding: 10px 0;
    display: block;
    text-align: center;
}

#menu a img {
    width: 37px;
}

#menu a:hover {
    background: #596275;
}

#menu a i {
    line-height: 31px
}

#menu .active {
    background: #596275;
}

#page {
    height: 100%;
}

h1 {
    display: inline-block;
    color: #4a6076;
    font-weight: 600;
    font-size: 20px;
    margin: 16px 0;
}

h2 {
    display: inline-block;
    color: #4a6076;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0;
}

.fixcenter {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%)
}

.loader {
    line-height: 20px;
}

.loader img {
    vertical-align: top;
}

.fullframe {
    width: 100%!important;
    background: #fff!important;
}

#loginform {
    text-align: center;
    width: 400px;
    padding: 10px;
    border-radius: 5px;
    /*background: #1d2939;*/
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-244px)
}

label {
    font-size: 12px;
}

textarea {
    min-height: 200px
}

option {
    color: #444;
}

select {
    padding: 8px 5px;
}

input[type='color'], input[type='checkbox'] {
    display: inline-block;
    height: 15px;
    width: 15px;
    vertical-align: top;
    border: 0;
    outline: none;
    border-radius: 100px;
    background: transparent
}

.fade-enter-active, .fade-leave-active {
    transition: opacity .5s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

.tofloor {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.person_photo {
    left: 50%;
    top: 50%;
    width: 202px;
    height: 202px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transition: all 0.2s;
    transform: translateX(-50%) translateY(-50%);
}

.line:hover .person_photo {
    transform: translateX(-50%) translateY(-50%) scale(1.2)
}

.grid {
    transform: translateZ(1);
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: center;
}

.grid .line {
    transform: translateZ(0);
    height: 200px;
    position: relative;
    display: block;
    width: 200px;
    margin: 5px;
    background-color: #ffffff;
    font-size: 11px;
    border: 1px solid #d8d8d8;
    overflow: hidden;
    color: #fff;
    line-height: 20px;
    border-radius: 2px;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .05);
}

.grid>div.grid-clearfix {
    opacity: 0;
    visibility: hidden;
    box-shadow: none;
    height: 0px!important;
    padding: 0;
    overflow: hidden;
}

.grid .line img {
    max-height: 302px;
}

.grid .line>div {
    width: 100%;
    background-color: rgba(44, 62, 80, 0.88);
    position: absolute;
    padding: 5px;
    bottom: 0;
    box-sizing: border-box;
    display: block;
}

.person_image {
    display: inline-block;
    width: 100px;
    height: 100px;
    background-image: url('/assets/images/man.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

#waiter {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #f3f3f2
}

.switch {
    cursor: pointer;
    transition: all 0.5s;
    height: 25px!important;
    width: 50px!important;
    background: #1d2939!important;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    box-shadow: 0 0 1px 1px rgba(29, 41, 57, 0.3);
}

.switch:checked {
    background: #a01f21!important;
    box-shadow: 0 0 1px 1px rgba(160, 31, 33, 0.3);
}

.switch::before {
    transition: all 0.2s;
    content: '1';
    color: transparent;
    width: 23px;
    display: block;
    height: 23px;
    background: #fff;
    border-radius: 100px;
    position: relative;
    left: 1px;
    top: 1px;
}

.switch:checked::before {
    left: 26px;
}

.grid2 {
    width: 100%;
    display: table;
}

.grid2>div {
    display: table-row;
}

.grid2>div>div {
    width: 50%;
    text-align: right;
    display: table-cell;
}

.grname {
    color: #757575;
    font-size: 25px;
    display: block!important;
}

.gdesc {
    word-break: break-word;
    color: #bbb;
    margin-top: 5px;
    font-size: 10px;
    text-overflow: ellipsis;
    max-height: 70px;
    overflow: hidden;
}

.alert {
    border-radius: 0!important;
    border: 1px solid #c55!important;
    background-image: url('/assets/images/alert.png');
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: auto 80%;
}

.telegram {
    border-radius: 0!important;
    border: 1px solid #179cde!important;
    background-image: url('/assets/images/t_logo.png');
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: auto 80%;
}

.viber {
    border-radius: 0!important;
    border: 1px solid #7b519c!important;
    background-image: url('/assets/images/v_logo.png');
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: auto 80%;
}

.whatsapp {
    border-radius: 0!important;
    border: 1px solid #4ac659!important;
    background-image: url('/assets/images/w_logo.png');
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: auto 80%;
}

.vkontakte {
    border-radius: 0!important;
    border: 1px solid #4680c2!important;
    background-image: url('/assets/images/vk_logo.png');
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: auto 80%;
}

.webhook {
    border-radius: 0!important;
    border: 1px solid transparent!important;
    background-image: url('/assets/images/wh_logo.png');
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: auto 80%;
}

.email {
    border-radius: 0!important;
    border: 1px solid #005b8d!important;
    background-image: url('/assets/images/e_logo.png');
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: auto 80%;
}

.addform {
    /*width: 800px;*/
    /*min-height: 300px;*/
    margin: auto
}

[center] {
    text-align: center;
}

.right {
    float: right;
}

.info_page {
    display: table;
    width: 100%;
}

.info_page>div {
    vertical-align: top;
    display: table-cell;
}

.info_page>div:first-child {
    width: 300px;
}

.info_photo {
    width: 300px;
    background-size: cover;
    background-position: center top;
}

.info_name {
    font-size: 1.2em;
}

.info_name_desc {
    font-size: 0.7em;
}

.editor_btn {
    font-size: 15px;
    position: absolute;
    top: 2px;
    right: 2px;
}

.info_desc {
    border-radius: 0 0 4px 4px;
    position: relative;
    background: #596275;
    padding: 10px;
    color: #fff;
}

.info_desc>div {
    margin-bottom: 5px;
}

.info_action {
    color: #fff;
    background: #596275;
    border: 1px solid #596275;
    margin-top: 5px;
    border-radius: 4px;
    padding: 4px;
    font-size: 10px;
}

.info_action h6 {
    padding: 0;
    margin: 10px 0;
    font-size: 1.5em;
}

.info_action>a, .info_action i {
    display: inline-block;
    /* padding: 15px 10px; */
    font-size: 1em;
    margin-top: 10px;
    border-bottom: 1px solid gainsboro;
    cursor: pointer;
    vertical-align: bottom;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.list-complete-item {
    transition: all 1s;
}

.list-complete-enter, .list-complete-leave-to {
    opacity: 0;
    transform: translateY(-500px);
}

#info_doc {
    position: relative;
}

.editor {
    outline: none;
}

.editor[contenteditable] {
    border-bottom: 1px solid #999
}

.point {
    cursor: pointer;
}

.group_desc {
    margin: 5px 0;
    font-size: 13px;
    color: #999
}

.group_name {
    font-size: 20px;
    font-weight: 700;
}

.card {
    padding: 15px;
    position: relative;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .05);
    margin-bottom: 30px;
}


.card-block {
    overflow: auto;
}

.card-block p {
    margin: 10px;
}

.subtitle {
    display: block!important;
    font-size: 11px;
    padding: 0 5px!important;
    color: #bbb;
}

#notify_alert_back {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#notify_close {
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 20px;
}

#notify_alert {
    position: relative;
    top: 100px;
    padding: 10px;
    font-size: 0;
    margin: auto;
    width: 620px;
    background: #fff;
    box-shadow: 0 0 20px 3px rgba(207, 0, 15, 1);
    border-radius: 2px;
}

.alert_photo {
    max-width: 90%;
    max-height: 42vw;
    max-width: 42vw;
    margin: 5px;
    display: inline-block;
    height: 300px;
    width: 300px;
    background-size: cover
}

.notify_alert_title {
    font-size: 16px;
    font-weight: 700;
    margin: 10px 5px;
    margin-top: 0;
    text-align: center;
}

.notify_alert_text {
    font-size: 12.8px;
    padding: 10px 0;
}

#restarter.show {
    display: block;
}

#restarter {
    display: none;
    z-index: 1000;
    background: red;
    position: fixed;
    bottom: 40px;
    right: 40px;
    padding: 5px;
    opacity: 1;
    cursor: pointer;
    color: #000;
    transition: all 0.2s;
    border-radius: 5px;
}

#restarter:hover {
    opacity: 1;
}

.backbutton:hover {
    color: #999;
}

.backbutton {
    z-index: 2;
    text-transform: uppercase;
    transition: all 0.2s;
    line-height: 50px;
    font-size: 20px;
    padding: 0 18px;
    color: #bbb;
    font-weight: 300;
    text-decoration: none;
    vertical-align: middle;
}

.backbutton i {
    margin-bottom: 3px;
    margin-right: -5px;
}

.btn.lite {
    display: none;
}

@media all and (max-width: 480px) {
    .sorters> * {
        float: initial;
    }
    .info_page>div:first-child,.info_photo{
        width: unset;
    }
    .info_photo img{
        width: 100%;
    }
    .person_history__line__text__header strong {
        max-width: 164px;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    #menu span {
        font-size: 8px!important;
    }
    .grid .line {
        width: 39vw;
        height: 39vw;
    }
    .btn.lite {    
        display: block;
        position: fixed;
        bottom: 10px;
        right: 10px;
        height: 50px;
        width: 50px;
        border-radius: 100px;
        z-index: 1;
        padding: 0;
        text-align: center;
        line-height: 50px;
        font-size: 37px;
        color: #fff!important;
        text-shadow: 1px 1px #6d6d6d;
    }
    .btn.full {
        display: none;
    }
    #content {
        width: calc(100% - 50px);
        padding: 0;
    }
    .person_history__line__image {
        text-align: center
    }
    .person_history__line__image>div {
        margin: 0 20px;
    }
    .person_history__line>div {
        display: block!important
    }
    .person_history__line__text__header, .person_history__line__text__body {
        left: 0!important;
    }
    .person_history__line__image.with_more {
        width: auto!important;
    }
    .lister .line>div span {
        padding: 8px
    }
    #page {
        margin: 0 2%;
    }
    .lister a {
        font-size: 0!important;
        padding: 0!important
    }
    .lister .line>div {
        float: left;
        margin: 0!important;
        font-size: 12px;
        width: calc(100%-100px);
    }
    .lister .line>div:first-child {
        width: 100px!important;
    }
    .lister .person_image {
        background-position: center;
        background-size: 100px;
        width: 100%;
    }
    /*.lister strong{
        display: none;
    }
    .lister .nnimv{
        display: none!important;
    }*/
}

@media all and (max-width: 1650px) {
    .person_history__line.trice {
        width: calc(50% - 16px)!important;
    }
}

@media all and (max-width: 1100px) {
    .person_history__line.trice {
        width: 100%!important;
    }
}

@media all and (max-width: 650px) {
    .person_block {
        margin-right: 0!important;
    }
    #logo, #nav {
        /*transform: rotateZ(-90deg) translateY(calc(-30px + 3vw));*/
        width: 50px!important;
    }
    .info_page {
        display: block;
    }
    .info_page>div {
        display: block;
    }
    .addform__table>div>div {
        display: block!important;
        text-align: left!important;
        width: auto!important;
    }
    .addform__table>div>div:first-child {
        text-align: left!important;
        padding: 0!important;
        line-height: 17px!important;
    }
    .addform__table {
        max-width: 100%;
        width: auto!important;
    }
}

#backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: #000000;
    opacity: .1;
    display: none;
}

.alertme {
    position: fixed;
    top: 100px;
    left: calc(50% - 150px);
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    min-width: 300px;
    background: #fff;
    z-index: 100;
}

.am_title {
    padding: 10px;
    font-weight: 600;
    text-align: center
}

.am_text {
    padding: 10px;
    text-align: center;
}

.am_buttons {
    border-top: 1px solid #d4d4d4;
    display: table;
    width: 100%;
}

.am_buttons>div {
    transition: all 0.1s;
    display: table-cell;
    text-align: center;
    padding: 10px;
    border-right: 1px dotted #ddd;
    cursor: pointer;
}

.am_buttons>div:hover {
    background: #fdfdfd;
}

.am_buttons>div:last-child {
    border-right: 0;
}

.red {
    background: #ff6e6e!important
}

.notHasPerson, .alreadyPerson {
    background: #eee;
    transition: all 0.1s;
    float: right;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px 20px;
    color: #484141;
    font-weight: 500;
}

.notHasPerson:hover, .alreadyPerson:hover {
    background: #ddd;
}

select, input, textarea, #pole_texta {
    display: block;
    margin-bottom: 10px;
    color: #000;
    width: 100%;
    height: 27px;
    box-sizing: border-box;
    padding: 0;
    border-radius: 2px;
    border: 1px solid #d4d4d4;
    background: #fff;
    padding: 4px;
    outline: none;
    font-size: 13px;
    font-weight: 300
}

.small {
    width: auto;
    display: inline-block;
}

#loginform input {
    padding: 20px!important;
    margin-bottom: 5px;
}

@keyframes loadet {
    0% {
        background-position: 0px;
    }
    50% {
        background-position: 100px;
    }
    100% {
        background-position: 200px;
    }
}

#percent {
    animation: loadet 5s linear infinite;
    background-color: #8a2123;
    background-size: 200px;
    width: 50%;
    height: 15px;
    ;
    transition: all 0.5s;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
}

#prog_text {
    position: absolute;
    display: block;
    top: 0;
    font-size: 13px;
    color: #fff;
    left: 0;
    width: 100%;
    z-index: 2
}

.grid2 a {
    text-decoration: none;
    color: #666;
}

table {
    background: #fff;
    width: 100%;
    border-radius: 5px;
}

table td {
    padding: 5px;
}

#test {
    position: fixed;
    border: 1px solid red;
    /*display: none;*/
    height: 400px;
    width: 400px;
}

.sort_active {
    font-weight: 600;
}

.field {
    max-width: 800px;
    margin: auto
}

[disabled] {
    background: #f3f4f6
}

.upbutton {
    background: #2c3e50;
    /* height: 100px; */
    color: #fff;
    box-sizing: border-box;
    width: 100%;
    /* width: 50px; */
    padding: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 2px;
    position: relative;
}

.podsk {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

input.new_checkbox~.indikator {
    display: inline-block;
    cursor: pointer;
    transition: all 0.4s;
    content: 'check';
    border: 1px solid #d4d4d4;
    /* box-shadow: 0 0 1px 0px #2c3e50; */
    border-radius: 3px;
    background: #fff;
    font-size: 18px;
    color: #fff;
    width: 18px;
    height: 18px;
    vertical-align: middle
}

input.new_checkbox~.indikator i {
    font-size: inherit!important;
}

input.new_checkbox:checked~.indikator {
    background: #2c3e50;
}

input[type='checkbox'] {
    display: none
}

label {
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
}

label.full {
    width: 100%
}

.person_history {
    position: relative;
    background: #f5f6f7;
    width: 100%;
}

.person_history__line {
    box-sizing: border-box;
    padding: 10px;
    text-decoration: none;
    display: inline-table;
    width: 100%;
    margin-right: 5px;
}

.person_history__line.trice {
    width: calc(33% - 16px);
}

.person_history__line>div {
    vertical-align: top;
    display: table-cell;
}

.person_history__line__image {
    position: relative;
    width: 87px;
}

.person_history__line__image.small {
    width: 72px;
}

.person_history__line__image.with_more {
    width: 180px;
}

.person_history__line__image.small>div {
    width: 72px;
    height: 72px;
}

.person_history__line__image>div {
    position: absolute;
    width: 87px;
    height: 87px;
    background-size: cover;
    /*ТАК СДЕЛАНО ПОТОМУ ЧТО СОТРУДНИКИ ФОТКАЮТСЯ В ПОЛНЫЙ РОСТ!!!!!*/
    background-position: top;
    border-radius: 4px;
    transition: all 0.2s;
}

.person_history__line:hover .person_history__line__image>div {
    border-radius: 3px!important;
}

.person_history__line__image.with_more>div {
    position: relative;
    display: inline-block;
    width: 87px;
    height: 87px;
    background-size: cover;
    border-radius: 4px;
    background-position: center;
}
.person_history__line__image.with_more>div:first-child {
    background-position: top;
}

.person_history__line__text__header {
    padding: 10px;
    font-size: 0.8em;
    border: 1px solid #e3e8ed;
    position: relative;
    left: 10px;
    ;
    border-radius: 3px 3px 0 0;
    background: #f7f8f9;
}

.person_history__line__text__body {
    line-height: 1.2;
    padding: 10px;
    font-size: 0.8em;
    border: 1px solid #e3e8ed;
    border-top: 0;
    position: relative;
    left: 10px;
    ;
    border-radius: 0 0 3px 3px;
    background: #fff;
}

.person_history__line__date {
    width: 107px;
    text-align: right;
    color: #919599;
    font-size: 0.7em;
}

.info_page__filter {
    font-size: 13px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.info_page__filter>div {
    margin-bottom: -1px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: 0;
    display: inline-block;
    padding: 10px;
}

.info_page__filter .active {
    border-color: #ddd;
    background: #f5f6f7;
}

.info_desc div {
    border-bottom: 1px solid transparent;
}

.info_desc div {
    outline: none;
    width: 100%;
    border-bottom: 1px solid transparent;
}

.info_desc div[contenteditable]:hover {
    outline: none;
    width: 100%;
    border-bottom: 1px solid #999;
}

.info_desc hr{
    border-top: 1px dotted rgba(255,255,255,.2);
    margin: 10px 0;
}

.info_page__statistic {
    width: 100%;
    display: table;
}

.info_page__statistic>div {
    padding: 20px;
    color: #fff;
    font-weight: 300;
    display: table-cell;
    font-size: 40px;
    width: calc(100% /3);
    text-shadow: 1px 1px rgba(109, 109, 109, 0.54);
}

.info_page__statistic span {
    display: block;
    font-size: 0.35em;
    font-weight: 600;
}

.info_page__statistic>div:nth-child(1) {
    background: #63cdda;
}

.info_page__statistic>div:nth-child(2) {
    background: #f5cd79;
}

.info_page__statistic>div:nth-child(3) {
    background: #e77f67;
}

.person_history__line__image {
    position: relative;
}

.person_history__line__type {
    border: 1px solid #fff;
    height: 10px;
    width: 10px;
    border-radius: 100px;
    position: absolute;
    bottom: 5px;
    right: 5px;
    ;
}

.person_history__line__type.exact {
    background: #63cdda;
}

.person_history__line__type.ha {
    background: #f5cd79;
}

.person_history__line__type.junk {
    background: #e77f67;
}

.person_history__line__image__square {
    font-size: 9px;
    display: inline;
    width: 18px;
    height: 10px;
    display: block;
    text-align: center;
    position: absolute;
    border-radius: 3px;
    right: 5px;
    background: rgba(0, 0, 0, 0.43);
    color: #fff;
    top: 5px;
}

[right] {
    float: right;
}

.btn i {
    font-size: 17px;
    vertical-align: top;
}

.person_block {
    z-index: 2;
    box-sizing: border-box;
    float: right;
    cursor: pointer;
    height: 50px;
    text-align: right;
    width: 200px;
    line-height: 50px;
    margin-right: 36px;
}

.person_block i {
    vertical-align: middle;
    margin-top: -3px;
}

.person_block__menu {
    position: absolute;
    background: #fff;
    z-index: 1;
    border: 1px solid #ddd;
    width: 100%;
    line-height: 1;
}

.person_block__menu a {
    text-align: left;
    display: block;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    font-size: 12px;
    transition: all 0.2s;
}

.person_block__menu a:hover {
    background: #fafafa
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    padding: 0;
    margin: 0;
}

.addform__table {
    margin: auto;
    max-width: 800px;
    width: 1000px;
    display: table;
}

.addform__table>div {
    display: table-row;
}

.addform__table>div>div {
    vertical-align: top;
    display: table-cell;
}

.addform__table div {
    vertical-align: top;
}

.addform__table>div>div:first-child {
    line-height: 27px;
    text-align: right;
    padding: 0 15px;
    width: 150px;
    font-size: 0.7em;
    font-weight: 600;
}

#preview {
    max-width: 100px;
    max-width: 100px;
    background-size: cover;
    background-position: center;
}

.btn {
    vertical-align: top;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    color: #232323;
    font-size: 12px;
    background: #a7b2be;
    position: relative;
    border-width: 0;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    font-weight: 400;
    padding: 7px 12px;
    transition: background .3s ease-in-out 0s;
}

.paginator{
    width: 13px;
    text-align: center;
}

.btn.info {
    color: #232323;
    background-color: #5191d1;
}

.btn.primary {
    color: #232323;
    background-color: #13c4a5;
}
.btn.alarm {
    color: #fff;
    background-color: #fd6262;
}

::placeholder {
    font-size: 13px;
    font-weight: 300
}

select, select[value=1] {
    font-size: 13px;
    font-weight: 300
}

.person_history a {
    text-decoration: none;
    color: inherit
}

.tr:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
}

.tr {
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    ;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    background: #fff;
    width: 300px;
    margin: 10px;
    border-radius: 4px;
}

.grid_round {
    background-size: cover;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin: auto;
    text-align: center;
    color: white;
    border: 0!important;
}

.grid_round i {
    font-size: 44px;
    line-height: 100px;
}

.grid_name {
    text-align: center;
    line-height: 45px;
    text-transform: uppercase;
    font-size: 16px;
}

.grid_count {
    text-align: center;
    font-weight: 600;
    line-height: 45px;
}


.grid2_table{
    display: table;
    width: 100%;;
}
.grid2_table > div:first-child{
    width: 50px;
}

.grid2_table > div{
    vertical-align: top;
    display: table-cell;
}

.grid2_round {
    background-size: contain;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    margin: auto;
    text-align: center;
    color: white;
    border: 0!important;
}

.grid2_round i {
    font-size: 44px;
    line-height: 100px;
}

.grid2_name {
    text-align: right;
    line-height: 25px;
    text-transform: uppercase;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    max-width: 230px;
    white-space: nowrap;
}

.grid2_count {
    text-align: right;
    font-weight: 600;
    line-height: 25px;
    font-size: 0.95em;
}


.grid_follow {
    text-align: center;
    font-weight: 300;
    font-size: 12px;
}

.patterns {
    display: block;
}

.patterns span {
    margin-bottom: 4px;
    display: inline-block;
    padding: 3px;
    border-radius: 4px;
    background: #848484;
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    cursor: pointer;
}

.notification_unactive {
    position: absolute;
    top: -11px;
    right: 5px;
    background: #fff;
    color: #ff7979;
    border-radius: 100px;
}

.cloud_group {
    color: #7979ff;
}

.group_color {
    margin-bottom: 6px;
    margin-right: 10px;
    width: 27px;
    display: inline-block;
    height: 27px;
    border-radius: 100px;
}

.color_list {
    z-index: 1;
    position: absolute;
    font-size: 0;
    width: 300px;
    padding: 5px;
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    box-shadow: 0 0 4px 0 #b7b7b7;
}

.color_list>span {
    display: inline-block;
    width: 20%;
    height: 30px;
    cursor: pointer;
}

.group_notify_list {
    background: #fff;
}

.group_notify_list_head {
    background: #13c4a5;
    padding: 10px 15px;
    color: #fff;
}

.group_notify_list_line {
    display: block;
    padding: 10px;
    margin-bottom: 0!important;
    border-bottom: 1px solid #d4d4d4;
}

.group_notify_list_line label {
    margin: 0
}

.notif_name {
    vertical-align: middle;
    font-size: 20px;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    max-width: 234px;
}

.notif_name span {
    font-size: 10px;
    display: block;
}

.halfer {
    display: table;
    width: 100%;
}

.halfer>div {
    vertical-align: top;
    width: 50%;
    display: table-cell
}

.group_notify_list_body {
    height: calc(100vh - 342px);
    height: calc(100vh - 342px);
    overflow: auto;
    ;
}

.group_notify_list_line .indikator {
    margin-right: 5px;
}

#menu span {
    font-size: 10px;
    display: block;
    font-weight: 300;
}

#menu a {
    text-decoration: none;
}

.rights label {
    margin: 5px 0;
}

.del_group {
    padding: 10px 30px;
    background: #fff;
    margin-top: 30px;
    color: #ff6868;
    font-size: 12px;
}

.del_group h3 {
    display: inline-block;
    margin: 10px 0;
}

.del_group button {
    vertical-align: top;
}

#pole_texta {
    word-break: break-word;
    display: inline-block
}

#pole_texta span {
    /*padding: 0px 1px;*/
    font-size: 0.9em;
    border-radius: 1px;
    background: #848484;
    color: #fff;
    /*margin: 0 4px;*/
    display: inline-block;
    border: 0;
}

#dash_content {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 23px;
    width: 300px;
    border-radius: 5px;
    opacity: .9;
}
#dash_content.show{
    display: block;
}
#dash_content>div {
    border: 1px solid #eee;
    background: #fff;
}

#dash_content>div>div:not(#progress) {
    font-size: 10px;
    display: inline-block;
    padding: 0 10px;
    vertical-align: top;
}

#dash_loader>span:first-child {
    margin: 10px;
    display: block;
}

#progress {
    overflow: hidden;
    margin: 10px;
    border-radius: 50px;
    background: #2c3e50;
    position: relative;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity .5s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

.attention {
    transition: all 0.5s;
    right: -200%;
    position: relative;
    border: 1px solid #eee;
    background: #fff;
    margin: 10px 0;
    padding: 10px;
}

.attention button {
    display: block;
    margin: auto;
}

.attention.active {
    right: 0;
}

.revert_image {
    height: 50px;
    width: 50px;
    background-size: cover;
    background-position: top;
}

.tips {
    line-height: 27px;
    font-size: 13px;
    padding: 0 10px;
}

#filter {
    padding: 0 10px;
}

.close {
    position: absolute;
    right: 0;
    top: 0;
    color: #b9b9b9;
    cursor: pointer;
}

.person_notify_list {
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4px;
    background: #fff;
}

.person_notify_list_head {
    background: #13c4a5;
    padding: 10px 15px;
    color: #fff;
}

.person_notify_list_line {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #d4d4d4;
}

.person_notify_list_line label {
    margin: 0
}

.simple_link {
    font-weight: 300;
    color: #333;
}

.copyright {
    position: fixed;
    bottom: 5px;
    font-size: 12px;
    right: 5px;
}

.help {
    width: 37px;
    padding: 0 5px;
}

.help i {
    transition: all 0.3s;
    color: #ccc;
    font-size: 15px;
    line-height: 25px;
}

.help i:hover {
    color: #999;
    cursor: pointer;
}

#loadbar {
    transition: 0.2s;
    height: 3px;
    width: 0;
    position: absolute;
    bottom: 0;
    background: #303952;
    left: 0;
}


.history_card {
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
    width: 150px;
    height: 150px;
    display: inline-block;
    background-size: cover;
    position: relative;
    margin: 5px;
}

.history_card > .datas{
    padding: 5px 0;
    background: rgba(100,100,100,.5);
    color: #fff;
    font-size: 10px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.history_card > .is_global{
    position: absolute;
    top: 5px;
    right: 5px;
    color: #303952
}

#signin{
    position: relative;
    background: #fff;
    border: 1px solid #d8d8d8;
    padding: 15px;
    padding-top: 51px;
    border-radius: 3px;
}

#signin input{
    padding: 15px!important;
}
#signin div{
    font-weight: 600;
    text-align: left;
    font-size: 13px;
    line-height: 20px;
}

#signin #signheader{
    font-weight: 300;
    box-sizing: border-box;
    padding: 11px;
    text-align: center;
    position: absolute;
    font-size: 20px;
    top: 0;
    left: 0;
    width: 100%;
    background: #e2e2e2;
}

.sorters{
    margin-bottom: 8px;
    height: 30px;;
}
.sorters> *{
    float:left;
}
.sorters > a,.sorters > input,.sorters > select,.sorters > label > *{
    border-radius: 0;
    margin-bottom: 0;
    border-left: 0;
    height: 28px;
    box-sizing: border-box;
    border: 0;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    border-right: 1px dotted #d4d4d4;
}
.sorters > label:first-child  > *{
    
    border-radius: 4px 0 0 4px;
    border-right: 1px dotted #d4d4d4;
}
.sorters > *:last-child{
    border-radius: 0 4px 4px 0;
}

.gray{
    color: #a7b2be
}

.group_selector{
    background: transparent;
    border: 0;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    width: 186px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.person_saver{
    text-align: right!important;
    height: 28px!important;
    position: absolute!important;
    bottom: 8px!important;
    width: auto!important;
    right: 9px!important;
    margin: 0!important;
}

img{
    vertical-align: top;
}

.blocked{
    cursor: not-allowed;
}

.sub_menu{
    position: absolute;
    right: 3px;
    bottom: 0;
    color: #d6d6d6;
}

.rotate{
    animation: 3s linear 0.5s  move_eye;
}

@keyframes move_eye { from { transform: rotateZ(0); } to { transform: rotateZ(-720deg); }   }