*,
*::before,
*::after {
    box-sizing: border-box;
}

:root{

    --blue: #158df7;
    --green: #3F9726;
    --red: #f44455;
    --yellow: #fcc100;
    --orange: orange;
    --grey: #6c757d;
    --light_grey: #f5f5f5;
    --dark_grey: #333;


}
html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
body{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    /*background-color:#f2f2f2;*/
    background: #ebebeb;
    line-height: 1.5;
    color: #222;
}
input, button, select, textarea {
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    border: 1px solid #c5c5c5;
}
input:focus, button:focus, select:focus, textarea:focus{
    border: 1px solid var(--blue);
    outline: 0;
}
.content{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    background: #fff;
    margin-top: 48px;
}
.main{
    width: 100%;
    padding: 15px;
}
.row{
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col{
    padding-left: 15px;
    padding-right: 15px;
}
.col-1,.col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    width: 100%;
}

.header{display: none;}
.sidebar{display: none;}


.top-menu{
    display: flex;
    position: fixed;
    width: 100%;
    height: 50px;
    z-index: 1000;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    background: #fff;
    justify-content: space-between;
    align-items: center;
}
.top-menu-logo{
    display: flex;
    margin-left: 15px;
}
.top-menu-logo__link{
    font-weight: 700;
    font-size: 24px;
    color: #222;
    text-decoration: none;
    color: #222;
    border-bottom: 3px solid var(--blue);
}
.top-menu-button{
    display: flex;
    margin-right: 15px;
    margin-left: auto;
    justify-content: flex-end;
}

.burger-menu__button{
    padding: 5px;
    background: #e6e6e6;
    border-radius: 3px;
}

/* Mobile menu */
.mobile-menu__wrapper{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 80%;
    height: 100vh;
    background: #293042;
    box-shadow: 0 12px 6px rgba(0,0,0,.6);
    padding-top: 30px;
}

.mobile-menu{
    list-style: none;
    padding: 0;
}
.mobile-menu__item{
    width: 100%;
}
.mobile-menu-link{
    text-decoration: none;
    display: block;
    line-height: 50px;
    color: #fff;
    padding: 0 30px;
}
.mobile-menu-link:hover{
    color: #fff;
}
.mobile-menu-link_selected{
    color: #333;
    background: #fff;
}
.mobile-menu__user{
    border-top: 1px solid #ddd;
}


/* Links */
.link{
    color: var(--blue);
    text-decoration: none;
}
.link:hover{
    color: #ee2455;
    cursor: pointer;
    text-decoration: underline;
}
.link_bold{
    font-weight: 600;
}
.link_dashed{
    text-decoration: none;
    border-bottom: 1px dashed;
}
.link_dashed:hover{
    text-decoration: none;
    border-bottom: 1px dashed #005BD1;
}
.link_underline_off{
    text-decoration: none;
}
.link_underline_off:hover{
    text-decoration: none;
}

/* Button */
.button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    color: #222;
    box-sizing: border-box;
    margin-right: 3px;
    line-height: 1.5;
    padding: 5px 10px;
    position: relative;
    font-size: 14px;
    height: 32px;
    box-shadow: 0 0.05rem 0.1rem rgb(0 0 0 / 15%);
    white-space: nowrap;
}
.button:hover{text-decoration: none; transition: .3s;}
/*.button:last-child{margin: 0;}*/
.button:disabled{cursor: default; opacity: .8;}

.button__icon{display: inline-block; padding-right: 5px;}
.button__text{display: inline-block;}

.button_size_min{padding: 4px 8px; font-size: 12px; height: 24px;}

.button_bg_blue{
    color: #fff;
    background: #007bff;
    border: 1px solid #007bff;
}
.button_bg_blue:hover{
    color: #fff;
    background: #0062cc;
    border: 1px solid #0062cc;
}

.button_bg_grey{
    color: #222;
    background: #efefef;
    border: 1px solid #efefef;
}
.button_bg_grey:hover{
    background: #d3d3d3;
    border-color: #d3d3d3;
}

.button_bg_green{
    color: #fff;
    background: #4caf50;
    border: 1px solid #4caf50;
}
.button_bg_green:hover{
    color: #fff;
    background: #429e46;}
.button_bg_green:disabled{opacity: .8;}

.button_bg_red{
    color: #fff;
    background: #db482c;
    border: 1px solid #db482c;
}
.button_bg_red:hover{background: red; border-color: red;}

.button_width_160{width: 160px;}

.button-link{
    background: transparent;
    border-color: transparent;
    color: #222;
}
.button-link:hover{
    cursor: pointer;
    background: #efefef;
    border-color: #efefef;
}

/* Label */
.label{
    display: block;
    padding-top: 5px;
    color: var(--grey);
}

/* Input */
.input{
    box-sizing: border-box;
    line-height: 1.5;
    height: 32px;
    font-size: 14px;
    padding: 0 7.5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    width: auto;
}
.input:disabled{background: #dedede;}
.input:-moz-read-only {background: #dedede;}
.input:read-only {background: #dedede;}

.input_width_80{width: 80px;}
.input_width_120{width: 120px;}
.input_width_160{width: 160px;}
.input_width_240{width: 240px;}
.input_width_320{width: 320px;}
.input_width_full{width: 100%;}

.input_border-color_red{border: 1px solid var(--red);}
.input_border-color_green{border: 1px solid var(--green);}

/* Input group */
.input-group{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.input-group-append{
    display: flex;
    margin-left: -1px;
}
.input-group__item{
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
    margin-left: -1px;
}
.input-group__item:first-child{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group__item:last-child{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
}


/* Textarea */
.textarea{
    width: 100%;
    padding: 5px;
    /*border-radius: 3px;*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*border: 1px solid #c5c5c5;*/
    /*background-color: #fff;*/
}
.textarea_br-color_red{
    border: 1px solid red;
}


/*
* Select
*/
.select {
    line-height: 1.5;
    width: auto;
    padding: 0 7.5px;
    padding-right: 20px;
    -webkit-appearance: none;
    background-color: rgb(255, 255, 255);
    background-image: url(/images/icons/select-arrow.png);
    cursor: pointer;
    border-radius: 2px;
    border: 1px solid #c5c5c5;
    -o-border-image: initial;
    border-image: initial;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
    width: auto;
    font-size: 14px;
    height: 32px;
}

.select_width_full{ width: 100%;}
.select_width_80{ width: 80px;}
.select_width_120{ width: 120px;}
.select_width_160{ width: 160px;}
.select_width_240{ width: 240px;}
.select_width_320{ width: 320px;}

.select_disabled{opacity: .8;}
.select_br-color_red{ border: 1px solid var(--red);}
.select_br-color_green{ border: 1px solid var(--green);}


/* Breadcrumb */
.breadcrumb{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    margin-bottom: 15px;
}
.breadcrumb__item{display: flex; list-style: none; padding: 0 3px;}
.breadcrumb__item:first-child{padding-left: 0;}
.breadcrumb__item:after{display: inline-block; padding-left: 7.5px;  color: #6c757d;    content: '\203A';}
.breadcrumb__item:last-child:after{content: '';}


/* Card */
.card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}
.card__inner{
    display: block;
    width: 100%;
    margin: 0;
    padding: 15px;
}

/* Tab */
.tab{
    list-style: none;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 0;
    list-style: none;
}
.tab__item{
    margin-bottom: -1px;
}
.tab__link{
    color: #000;
    text-decoration: none;
    display: block;
    padding: .5rem 1rem;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.tab__link:hover{
    text-decoration: none;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}
.tab__link_active{
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

/* РўР°Р±Р»РёС†С‹ */
.table{
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border: none;
}
.table__head{
    vertical-align: bottom;
    border: 1px solid #c8c9cb;
    border-bottom: 2px solid #c8c9cb;
    background: #ddd;
}
.table td, .table th{
    padding: 5px;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.table thead th {
    vertical-align: bottom;
    border: none;
    border-bottom: 2px solid #c8c9cb;
}
.table_bg_yellow { background: #FFEE58;}
.table_hover_grey tbody tr:hover{ background: #efefef; color: black;}
.table_hover_yellow tbody tr:hover{ background: #FFEE58; color: black; cursor: pointer;}
.table-bordered td{border: 1px solid #dee2e6;}
.table-bordered th{border: 1px solid #dee2e6;}

/* Alert */
.alert{

}
.alert__inner{
    width: 100%;
    padding: 15px 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.alert__icon{
    margin-right: 15px;
}
.alert__text{

}
.alert_bg_blue{
    background-color: #cce5ff;
    border-color: #b8daff;
    color: #000;
}
.alert_bg_yellow{
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert_bg_green{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert_bg_grey{
    color: #222;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}
.alert_bg_red{
    border: 1px solid var(--red);
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-link{
    color: #fff;
    text-decoration: underline;
}

/* Invoice card */
.invoice-card{

}
.invoice-card__inner{
    display: flex;
    flex-wrap: nowrap;
    padding: 15px;
    margin-left: 5px;
    border: 1px solid #ddd;
    background: #fff;
}

/* Comment Message */
.comment{

}
.comment__inner{
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 30px;
}
.comment__author{
    width: 300px;
    padding: 15px 0;
}
.comment__text{
    border-radius: 10px 10px 10px 0;
    padding: 15px;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    margin-left: 30px;
}

.data-delimeter {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Live search by text */
.live-search{

}
.live-search__inner{
    position: relative;
}
.live-search__dropmenu{
    display: none;
    width: 100%;
    padding: 5px;
    position: absolute;
    z-index: 1000;
    background: #fff;
    border: 1px solid #c5c5c5;
    margin-top: 0;
}

/* Переключатель */
.switcher{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.switcher__item{
    display: flex;
    border: 1px solid rgba(0,0,0,0.12);
    margin-left: -1px;
}
.switcher__item:first-child{
    margin-left: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.switcher__item:last-child{
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.switcher-link{
    width: 100%;
    text-decoration: none;
    color: #000;
    padding: 5px 7.5px;
    background: #f6f6f6;
}
.switcher-link:hover{
    background: #ddd;
    box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, 0.04);
    cursor: pointer;
}
.switcher-link_selected{
    background: #ddd;
    box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, 0.04);
    cursor: default;
}
.switcher-link_selected:hover{
    cursor: default;
    background: #ddd;
}

/* List A */
.list-a{width: inherit; margin: 0; padding: 0;}

.list-a-leaders-ol {
    margin: 0;
    padding: 0;
    list-style-position: inside;
    /*    -moz-column-count: 2;  Firefox
        -webkit-column-count: 2;  Safari and Chrome
        column-count: 2;*/
    list-style-type: decimal;
    column-fill: balance;
    column-gap: 30px;
}

.list-a-leaders__li {padding: 5px 0; clear: both; list-style-type: none;}
.list-a-leaders__li span:first-child {
    float: left;
    padding: 0 .3em 0 0;
    margin: 0;
}
.list-a-leaders__li span + span {
    float: right;
    padding: 0 0 0 .1em;
    margin: 0;
}
.list-a-leaders__li:after {
    content: ".........................................................................";
    display: block;
    overflow: hidden;
    height: 1rem;
    padding-top: 3px;
    font-size: .7rem;
    letter-spacing: 3px;
    color: #ccc;
}
.list-a-leaders__title{color: var(--grey);}


.create-object__map{
    position: relative; display: block; width: 100%; height: 400px; margin-top: 15px;
}
.create-object__map-mask{
    display: block;
    width: 100%;
    height: 400px;
    margin-top: 15px;
    background: white;
    z-index: 20;
    position: absolute;
    opacity: .8;
}
.create-object__map-mask-text{
    margin-top: 180px;
    z-index: 21;
    font-size: 14px;
    text-align: center;
}

/* Modal window */
.modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: 0;
    z-index: 1072;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(50,50,50,.2);
}
.modal_is-open{
    display: block;
}


.body-modal-open{
    overflow: hidden;
}
.modal__window{
    margin: 0 auto;
    width: 400px;
    padding: 0;
    margin-top: 150px;
    margin-bottom: 50px;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}
.modal_w_720{    width: 90%;}
.window_w_600{
    width: 90%;
}

.modal__content{
    background: #fff;
}
.modal__header{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}
.modal__section{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.modal__section-item{
    display: block;
}
.modal__title{
    font-size: 100%;
    padding: 0 15px;
    font-weight: 600;
}
.modal__close{
    padding: 15px;
    opacity: .6;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
.modal__body{
    position: relative;
    flex: 1 1 auto;
    padding: 15px;
}
.modal__footer{
    position: relative;
    padding: 15px;
    border-top: 1px solid #ddd;
}
.modal-footer{
    width: 100%;
    height: 100%;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    padding: 15px;
    border-top: 1px solid #ddd;
}
.modal_scroll{width: 100%; height: 400px; overflow-y: auto;}

/* Toast */
.toast{
    display: none;
    width: 280px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    position: fixed; bottom: 50px; right: 50px; z-index: 10000;

}
.toast_left-green{
    border-left: 5px solid green;
}
.toast_left-red{
    border-left: 5px solid red;
}
.toast_bg-green{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.toast_bg-red{
    border: 1px solid var(--red);
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}


.toast__body{
    padding: 15px;
}


/* Модификаторы */
.text_right{text-align: right;}
.text_left{text-align: left;}
.text_center{text-align: center;}

.text_color_green{color: var(--green);}
.text_color_grey{color: var(--grey);}
.text_color_darkgrey{color: var(--dark_grey);}
.text_color_orange{color: var(--orange);}
.text_color_red{color: var(--red);}
.text_color_black{color:#222;}

.text_weight-1{font-weight: 100;}
.text_weight-2{font-weight: 200;}
.text_weight-3{font-weight: 300;}
.text_weight-4{font-weight: 400;}
.text_weight-5{font-weight: 500;}
.text_weight-6{font-weight: 600;}
.text_weight-7{font-weight: 700;}
.text_weight-8{font-weight: 800;}

.bg_blue{background: #007bff;}
.bg_green{background: var(--green);}
.bg_grey{background: var(--grey);}
.bg_litegrey{background: var(--light_grey);}
.bg_dark-grey{background: var(--dark_grey);}
.bg_white{background: #fff;}

.br_0{border-radius: 0;}
.br_3{border-radius: 3px;}
.br_6{border-radius: 6px;}
.br_12{border-radius: 12px;}

.border-color_grey{ border: 1px solid var(--grey);}
.border-color_lightgrey{ border: 1px solid var(--light_grey);}

.mt_0{margin-top: 0;}
.mt_1{margin-top: 15px;}
.mt_2{margin-top: 30px;}
.mt_3{margin-top: 45px;}
.mb_0{margin-bottom: 0;}
.mb_1{margin-bottom: 15px;}
.mb_2{margin-bottom: 30px;}
.mb_3{margin-bottom: 45px;}
.ml_1{margin-left: 15px;}
.mr_1{margin-right: 15px;}

.shadow_sm{box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);}

/* text header */
.h1{font-weight: 600; font-size: 32px; line-height: 16px;}
.h2{font-weight: 600; font-size: 28px; line-height: 14px;}
.h3{font-weight: 600; font-size: 24px; line-height: 12px;}
.h4{font-weight: 600; font-size: 18px; line-height: 9px;}
.h5{font-weight: 600; font-size: 14px; line-height: 7px;}
.h6{font-weight: 600; font-size: 10px; line-height: 5px;}

/* РџР°РіРёРЅР°С†РёСЏ! РџРµСЂРµРґРµР»Р°С‚СЊ!!! */
.pagination {
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
    list-style: none;
    border-radius: .25rem;
    list-style: none;
}
.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    text-decoration: none;
}

/* Candidate events */
.candidate-events{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    background: #fff;
}
.candidate-event{
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    border-top: 1px solid #efefef;
}
.candidate-event:first-child{ border-top: none;}
.candidate-event:hover{ background: #efefef; color: black; cursor: pointer;}
.candidate-event__event-date{
    width: 140px;
    padding-left: 15px;
    padding-right: 15px;
}
.candidate-event__event-manager{
    width: 200px;
    padding-left: 15px;
    padding-right: 15px;
}
.candidate-event__event-name{
    width: 200px;
    padding-left: 15px;
    padding-right: 15px;
}
.candidate-event__event-description{
    width: 524px;
    padding-left: 15px;
    padding-right: 15px;
}
.candidate-event__event-status{
    width: 46px;
    padding-left: 15px;
    padding-right: 15px;
}

.list{
    margin: 0;
    padding: 0;
    list-style: none;
}
.list__item{}

/* Deal list */
.deals-list{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.deals-list-title{
    display: none;
}
.deals-list__item{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    border-top: 1px solid #ddd;
    padding-top: 5px;
    padding-bottom: 5px;
}
.deals-list__item:hover{background: #FFEE58; cursor: pointer;}
.deals-list__id{width: 20%; padding:5px;}
.deals-list__client{width: 80%; padding:5px;}
.deals-list__user{width: 80%; padding: 5px; margin-left: 20%;}
.deals-list__segment{width: 80%; padding: 5px; margin-left: 20%;}
.deals-list__invoice-sum{width: 80%; padding: 5px; margin-left: 20%;}
.deals-list__open-date{width: 80%; padding: 5px; margin-left: 20%;}


/* h-menu */
.h-menu{
    display: flex;
    width: 100%;
    list-style: none;
    padding: 7.5px 15px;
    margin: 0;
    background: var(--light_grey);
}
.h-menu__item{    
    display: flex;
    list-style: none;
    margin-left: 15px;
}
.h-menu__item:first-child{
    margin: 0;
}


.icon{
    display: inline-block;
}
.icon-white{filter: invert(100%) sepia(97%) saturate(13%) hue-rotate(237deg) brightness(104%) contrast(104%);}
.icon-green{filter: invert(59%) sepia(78%) saturate(339%) hue-rotate(64deg) brightness(94%) contrast(89%);}
.icon-grey{filter: invert(49%) sepia(2%) saturate(1723%) hue-rotate(169deg) brightness(91%) contrast(87%);}
.icon-red{filter: invert(36%) sepia(34%) saturate(2866%) hue-rotate(324deg) brightness(98%) contrast(95%);}
.icon-red:hover{filter: invert(25%) sepia(96%) saturate(1987%) hue-rotate(336deg) brightness(74%) contrast(103%);}

.icon-w16{
    width: 16px;
    height: 16px;
}
.icon-w12{
    width: 12px;
    height: 12px;
}

/**

**/
.icon-edit{background: url(/images/icons/svg/pencil.svg);}
.icon-left-arrow{background: url(/images/icons/svg/left-arrow.svg);}
.icon-delete{
    background: url(/images/icons/svg/delete.svg);
    width: 12px;
    height: 12px;
}
.icon-cancel{background: url(/images/icons/svg/cancel.svg);}
.icon-check{background: url(/images/icons/svg/check.svg);}

@media (min-width: 1160px) {
    .col-1 {
        width: 8.333333%;
    }
    .col-2 {
        width: 16.666667%;
    }
    .col-3 {
        width: 25%;
    }
    .col-4 {
        width: 33.3333333333%;
    }
    .col-5 {
        width: 41.666667%;
    }
    .col-6 {
        width: 50%;
    }
    .col-7 {
        width: 58.333333%;
    }
    .col-8 {
        width: 66.6666666667%;
    }
    .col-9 {
        width: 75%;
    }
    .col-10 {
        width: 83.333333%;
    }
    .col-11 {
        width: 91.666667%;
    }
    .col-12 {
        width: 100%;
    }

    .content{
        display: flex;
        flex-wrap: wrap;
        width: 1160px;
    }
    .main{
        width: calc(100% - 200px);
        margin-left: 200px;
        padding: 15px;
    }

    .top-menu{display: none;}

    /* Header */
    .header{
        display: flex;
        width: 100%;
        height: 48px;
        background: #fff;
        position: fixed;
        z-index: 10000;
        box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    }
    .header__inner{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 1160px;
        margin: 0 auto;
    }

    .header-logo{
        display: flex;
        align-items: center;
        padding: 0 15px;
    }
    .header-logo__link{
        font-weight: 700;
        font-size: 22px;
        color: #222;
        text-decoration: none;
        /*color: var(--blue);*/
        color: #222;
        border-bottom: 3px solid var(--blue);
    }
    .header-logo__link:hover{
        color: #444;
    }

    .header-profile{
        display: flex;
        padding: 0 15px;
        align-items: center;
    }

    /* Sidebar */
    .sidebar{
        display: flex;
        flex-wrap: wrap;
        width: 200px;
        height: 100vh;
        position: fixed;
        overflow-y: auto;
        background: #ebebeb;
    }
    .sidebar__inner{
        display: block;
        width: 100%;
        height: 100vh;
    }

    .sidebar-menu{
        position: relative;
        width: 100%;
        padding: 0;
        margin: 0;
        padding-top: 15px;
    }
    .sidebar-menu__item{
        width: 100%;
        list-style: none;
    }

    .sidebar-menu__link {
        position: relative;
        display: block;
        color: #40403F;
        padding: 7.5px 15px;
        text-decoration: none;
        font-weight: 500;
    }
    .sidebar-menu__link:hover {
        color: var(--blue);
    }
    .sidebar-menu__link-active {
        background: #fff;
        color: var(--blue);
    }

    /* Modal window */
    .modal_w_720{width: 720px;}

    /* Deal list */
    .deals-list{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .deals-list-title{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        background: #f5f5f5; 
        font-weight: 700; 
        border-top: 1px solid #ddd; 
        align-items: center;
    }
    .deals-list__item{
        padding: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        border-top: 1px solid #ddd;
    }
    .deals-list__item:hover{background: #FFEE58; cursor: pointer;}
    .deals-list__id{width: 56px; padding-left: 5px; padding-right: 5px; margin: 0;}
    .deals-list__client{width: 262px; padding-left: 5px; padding-right: 5px; margin: 0;}
    .deals-list__user{width: 262px; padding-left: 5px; padding-right: 5px; margin: 0;}
    .deals-list__segment{width: 170px; padding-left: 5px; padding-right: 5px; margin: 0;}
    .deals-list__invoice-sum{width: 90px;  padding-left: 5px; padding-right: 5px; margin: 0;}
    .deals-list__open-date{width: 90px; padding-left: 5px; padding-right: 5px; margin: 0;}


}

@media (min-width: 1280px) {

    .header__inner{
        width: 1280px;
    }
    .content{
        width: 1280px;
    }

    /* Deals list */
    .deals-list__id{width: 56px;}
    .deals-list__client{width: 322px;}
    .deals-list__user{width: 322px;}
    .deals-list__segment{width: 170px;}
    .deals-list__invoice-sum{width: 90px;}
    .deals-list__open-date{width: 90px;}

}


@media (min-width: 1366px) {

    .header__inner{
        width: 1366px;
    }
    .content{
        width: 1366px;
    }

    /* Deals list */
    .deals-list__id{width: 56px;}
    .deals-list__client{width: 365px;}
    .deals-list__user{width: 365px;}
    .deals-list__segment{width: 170px;}
    .deals-list__invoice-sum{width: 90px;}
    .deals-list__open-date{width: 90px;}

}