@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    padding: 0px;
    margin: 0px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    height: 100%;
    color: #656565;
    background: #EEEEF3;
}

img, form {
    padding: 0px;
    margin: 0px;
}
a {
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #656565;
    text-decoration: none;
}
.black_link {
    cursor: pointer;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #000;
}
.black_link:hover {
    text-decoration: underline;
}
a.blue {
    color: #1E6FB8;
}
a.blue:hover {
    text-decoration: underline;
}
* {
    box-sizing: border-box;
}

h1, h2, h3 {
    color: #000;
    margin:0px;
    padding:0px;
}
.page {
    width:100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.container {
    width:100%;
    padding:0px 30px;
}
.page-header {
    padding:17px 0px;
}
.page-header .title {
    color:#000;
    font-size: 18px;
    font-weight: 500;
}
.page-header .descr {
    padding-top: 4px;
}
.page-body {
    padding-bottom: 50px;
}
.page-footer {
    margin-top: auto;
    background: #2C3537;
    color: #fff;
    padding: 5px 0px;
}
.logo {
    color:#f17000;
    font-weight: 700;
    font-size: 50px;
    display: flex;
    align-items: center;
}
.logo span {
    color:#404A4D;
}
.orange_bold {
    color: #f17000;
    font-weight: 600;
}
.box_cont {
    display: flex;
    gap: 30px;
    padding-top: 15px;
}
.box_cont .box {
    display: flex;
    flex-direction: column;
    width: 300px;
    background: #fff;
    box-shadow: 0px 1px 1px rgba(113, 112, 118, 0.2), 0px 0px 4px rgba(0, 0, 0, 0.06), 0px 0px 0px #758892;
    border-radius: 2px;
}

.box_cont .box .title {
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #E3E3E3;
    padding:15px;
    color: #f17000;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;

}
.box_cont .box .descr {
    padding: 30px 15px;
    padding-top: 15px;
    text-align: center;
}
.box_cont .box .buttons {
    padding: 30px;
    padding-top:15px;
    margin-top: auto;
}
.box_cont .box .inputs {
    padding:0px 30px;
    padding-top: 30px;
}
.status_green {
    color:green;
}
.status_red {
    color:red;
}
.popup_cont {
    padding: 35px 20px!important;
}
.popup_cont .title {
    font-size: 18px;
    font-weight: 500;
    color: #404A4D;
    text-transform: uppercase;
    padding-bottom: 5px;
}
.popup_cont .sub-title {
    padding-bottom: 15px;
    color: #1E6FB8;
}
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    background: #404A4D;
    color: #fff;
    overflow-y: auto;
    transition: width 0.3s;
}
.close_sidebar {
    width: 47px;
}
.content {
    height: 100%;
    margin-left: 300px;
    transition: all 0.3s;
}
.content.close_menu {
    margin-left: 47px;
}
.logout_user.close_menu .login_user_name {
    display: none;
}
.sidebar .top_items .logo {
    font-size: 20px;
}
.close_sidebar .logo {
    display: none;
}
.sidebar .top_items {
    display: flex;
    align-items: center;
    padding: 15px;
    padding-left: 10px;
    border-bottom: 1px solid #555;
    font-size: 15px;
}
.sidebar .top_items #gamburger {
    margin-left: auto;
    font-size: 20px;
    cursor: pointer;
}
.sidebar .menu_item {
    display: flex;
    align-items: center;
    padding: 15px 0px;
    border-bottom: 1px solid #555;
    cursor: pointer;
}
.sidebar .menu_item.active {
    color: #f17000;
}
.close_sidebar .menu_item .title {
    display: none;
}
.sidebar .menu_item:hover {
    background: #3B4446;
}
.sidebar .menu_item:hover .fa.icon_menu {
    color: #f17000;
}
.sidebar .sub_menu_cont {
    display: none;
    align-items: center;
    width: 100%;
    cursor: pointer;
}
.sidebar .sub_menu_item {
    display: flex;
    background: #2C3537;
    padding: 10px 0px;
    color: #b9b9b9;
    font-size: 14px;
    font-weight: 300;
    border-bottom: 1px solid #555;
}
.sidebar .sub_menu_item:hover {
    color: #fff;
}
.sidebar .fa.icon_menu {
    margin: 0px 15px;
}
.sidebar .fa.ico_down {
    margin-left: auto;
    margin-right: 10px;
    font-size: 12px;
}
.sub_menu_item .fa.icon_menu {
    margin-left: 22px;
}
.close_sidebar .fa.ico_down {
    display: none;
}

 .bookmarks {
    display: flex;
    align-items: center;
    gap: 1px;
}
.submit_btn {
    width: 200px;
    padding-top: 15px;
}
.bookmarks_cont .bookmarks .bookmark {
    display: flex;
    min-width: 200px;
    justify-content: center;
    padding: 12px;
    color: #888;
    font-weight: 400;
    font-size: 14px;
}
.bookmarks_cont .bookmarks .bookmark i {
    margin-right: 10px;
}
.bookmarks_cont .bookmarks .bookmark:hover {
    color: #000;
}

.bookmarks_cont .bookmarks .bookmark.active {
    background: #fff;
    color: #000;
    font-weight: 600;
}
.bookmarks_cont .bookmark_content {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    background: #fff;
    box-shadow: 0px 1px 1px rgba(113, 112, 118, 0.2), 0px 0px 4px rgba(0, 0, 0, 0.06), 0px 0px 0px #758892;
}
.bookmarks_cont .bookmark_content .blocks {
    padding: 15px;
    width: 33%;
}


.datatable_cont {
    padding:30px;
    box-shadow: 0px 1px 1px rgba(113, 112, 118, 0.2), 0px 0px 4px rgba(0, 0, 0, 0.06), 0px 0px 0px #758892;
    border-radius: 2px;
    background: #fff;
}
.filters_cont {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom:15px;
}
.buttons_cont {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom:15px;
}

.checkbox_cont {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
}
.checkbox_cont .item {
    padding-bottom: 5px;
    color: #000;
    width: 50%;
    gap: 30px;
}
.logout_user {
    display: flex;
    padding: 15px;
    color: #ccc;
    font-size: 12px;
    align-items: center;
}
.popup_two_cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.popup_two_cols .left {
    width: 49%;
}
.popup_two_cols .right {
    width: 49%;
}
.login_user_name {
    padding-left: 10px;
    font-size: 11px;
}

.logout_user a {
    color: #fff;
}
.logout_user:hover a{
    color: #f17000;
}
.proizv_status {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 10px;
    height: 100%;
}
.red_span {
    color: red;
    font-weight: 400;
}
.green_span {
    color: green;
    font-weight: 400;
}

.parallel_oper .time {
    display: flex;
    align-items: center;
    color: #aeaeae;
    font-weight: 300;
    font-size: 12px;
    padding-bottom: 10px;
}
.parallel_oper .mini_timeline {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
}
.parallel_oper .oper_cont {
    position: relative;
    border-bottom: 1px solid #eee;
    height: 25px;
    margin-bottom: 2px;
}
.parallel_oper .oper_item {
    position: absolute;
    background: #6ea9ff;
    border-radius: 5px;
    padding: 4px;
    color: #fff;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
