html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

h2 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
}

button, input, optgroup, select, textarea {
    margin: 0;
    margin-left: 0px;
    font-family: inherit;
    font-size: inherit;
    line-height: initial;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-6 {
    width: 50%;
}

.col-9 {
    width: 75%;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.alert.alert-block {
    border-radius: 50px;
    font-weight: 600;
}

ul {
    margin: 0px;
    padding-left: 0px;
}

ul li {
    list-style: none;
}

/* Login Page */
#main-login {
    display: flex;
    flex-wrap: wrap;
}

#main-login .col-6 {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

#main-login .col-6.column-login-info .login-info-card {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url("../img/testcable.jpg");
    background-size: cover;
    background-position: center right;

    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
}

#main-login .col-6.column-login-info::after {
    display: block;
    content: '';
    position: absolute;
    right: -29.5%;
    bottom: 0px;
    width: 50%;
    height: 100%;
    clip-path: polygon(15% 0, 0 0, 40.8% 100%);
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 114, 255, .5) 0%, rgba(255, 255, 255, 0) 100%);
}

#main-login .col-6.column-login-info .login-info-card .info {
    padding: 0px 150px 0px 80px;
    padding-right: 25%;
    width: 100%;
}

#main-login .col-6.column-login-info .login-info-card .info h2 {
    font-size: 32px;
    font-weight: 400;
}

#main-login .col-6.column-login-info .login-info-card .info h2,
#main-login .col-6.column-login-info .login-info-card .info p {
    color: #fff;
}

/**/
@media (max-width: 768px) and (min-width: 0px) {

}

/**/
.login-form-logo {
    padding: 40px 80px 15px 0px;
    width: calc(100% - 80px);
    text-align: right;
}

.login-form-logo img {
    width: 150px;
}

.login-form-content {
    margin-top: auto;
    margin-bottom: auto;
    min-width: 400px;
}

.label-row {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.login-form-content h2 {
    margin: 0px;
    font-size: 32px;
    color: #0089e8;
}

.login-form-content p {
    color: #777;
}

.login-form-content form {
    margin-top: 32px;
}

label {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #0089e8;
}

.login-form-content input {
    padding: 12px 12px;
    border: 2px solid #f2f1f6;
    border-radius: 20px;
}

.login-form-content button {
    padding: 12px 12px;
    border-radius: 20px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg, #0072ff 0%, #00d4ff 100%);
    cursor: pointer;
}

/**/


/* Breadcrumb */
.breadcrumb {
    margin-bottom: 0px;
}

.breadcrumb ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb ul li {
    list-style: none;
}

.breadcrumb ul li:last-child {
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
}

.breadcrumb ul li:last-child::before {
    display: block;
    content: '';
    width: 2px;
    height: 18px;
    background: #ddd;
    position: absolute;
    top: 3px;
    left: 0px;
}

.breadcrumb ul li a i {
    margin-right: 5px;
    display: inline-block;
    width: 25px;
    height: 25px;
    background: linear-gradient(90deg, #0072ff 0%, #00d4ff 100%);
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 25px;
}

/* Main Page */

.mobile-header,
#burger-nav-icon,
.close-menu {
    display: none;
}

#burger-nav-icon {
    width: 30px;
    height: 30px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#burger-nav-icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #333;
    border-radius: 12px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#burger-nav-icon span:nth-child(1) {
    top: 9px;
}

#burger-nav-icon span:nth-child(2), #burger-nav-icon span:nth-child(3) {
    top: 19px;
}

#burger-nav-icon span:nth-child(4) {
    top: 29px;
}

#burger-nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#burger-nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#burger-nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#burger-nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* ------ */
#main {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    background-color: #f2f5fa;
}

/* Main Page | Sidebar */
.sidebar-left .sidebar-logo {
    padding: 15px 25px;
}

.sidebar-left .sidebar-logo img {
    width: 150px;
}

.sidebar-left .sidebar-menu {
    padding: 25px 25px 0px 25px;
}

/* Main Page | Header */
.main-header {
    padding-left: 45px;
    padding-right: 110px;
    display: flex;
    align-items: center;
    position: relative;
    height: 64px;
}

.main-header .block.logout {
    margin-left: auto;
    padding: 0px 15px;

}

.main-header .block.logout a {
    font-weight: 500;
    font-size: 14px;
    color: #222;
    background: transparent;
}

.main-header .block.logout a i {
    margin-left: 8px;
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0072ff 0%, #00d4ff 100%);
    text-align: center;
    line-height: 27px;
    color: #fff;
}

.main-header .block.logo-user img {
    width: 22px;
}

/* Main Page | Left Menu */
.sidebar-menu ul,
.mobile-header ul {
    margin: 0px;
    padding-left: 0px;
}

.sidebar-menu ul > li,
.mobile-header ul > li {
    list-style: none;
    padding: 15px 0px 15px 28px;
    position: relative;
}

.sidebar-menu ul > li a,
.mobile-header ul > li a {
    display: flex;
    align-items: center;
    position: relative;
    color: #333;
    font-weight: 500;
    transition: .3s;
}

.sidebar-menu ul li a i,
.mobile-header ul li a i {
    margin-right: 25px;
    width: 40px;
    font-size: 22px;
}

.sidebar-menu ul li a:hover span,
.mobile-header ul li a:hover span {
    color: #0089e8;
}

.sidebar-menu ul li.active::before,
.mobile-header ul li.active::before {
    display: block;
    content: '';
    width: 4px;
    height: 28px;
    background: #0089e8;
    position: absolute;
    top: 16px;
    left: 0;
}

.sidebar-menu ul li.has-submenu ul li.active::before,
.mobile-header ul li.has-submenu ul li.active::before {
    display: none;
}

.sidebar-menu ul li.has-submenu ul li.active a,
.mobile-header ul li.has-submenu ul li.active a {
    color: #0089e8;
}

/* Main Page | Left Menu | Submenu */
.sidebar-menu ul li.has-submenu,
.mobile-header ul li.has-submenu {
    padding-right: 50px;
}

.sidebar-menu ul li.has-submenu a i:last-child,
.mobile-header ul li.has-submenu a i:last-child {
    font-size: 16px;
    position: absolute;
    top: 5px;
    right: -20px;
    margin-right: 0px;
}

.sidebar-menu ul li.has-submenu ul,
.mobile-header ul li.has-submenu ul {
    display: none;
    margin: 15px 0px 0px 62px;
}

.sidebar-menu ul li.has-submenu.show ul,
.mobile-header ul li.has-submenu.show ul {
    display: block;
}

.sidebar-menu ul li.has-submenu ul li,
.mobile-header ul li.has-submenu ul li {
    padding: 10px 0px 10px 0px;
}

.sidebar-menu ul li.has-submenu ul li a,
.mobile-header ul li.has-submenu ul li a {
    font-size: 14px;
    transition: .3s;
}

.sidebar-menu ul li.has-submenu ul li a:hover,
.mobile-header ul li.has-submenu ul li a:hover {
    color: #0089e8;
}

/* Main Page | Content */
.main-content {
    padding: 25px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: calc(100% - 120px);
    width: calc(100% - 85px);
    background-color: #fff;
    border-radius: 50px;
}

.block.date-of-day {
    font-weight: 500;
    color: #0072ff;
}

.main-title-block {
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    height: max-content;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.main-title-block h2 {
    margin: 0px;
    font-weight: 500;
    font-size: 18px;
}

.btn-style,
.btn-second-style,
.main-title-block .btn-style {
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    text-align: center;
    background: linear-gradient(90deg, #0072ff 0%, #00d4ff 100%);
    cursor: pointer;
}

.btn-second-style {
    background: linear-gradient(90deg, #00d4ff 0%, #0072ff 100%);
}

.main-title-block .btn-style.btn-title {
    margin-left: auto;
}

/* Main Page | Content | Table */
.main-tabel-block,
.main-form {
    padding-top: 40px;
}

.main-tabel-block table,
.modal-order .modal-dialog table {
    width: 100%;
    text-align: left;
}

.main-tabel-block.lista-operatori table thead tr th:last-child,
.main-tabel-block.lista-operatori table tbody tr td:last-child {
    text-align: left;
}

.main-tabel-block.lista-operatori table tbody tr td:last-child {
    font-weight: 500;
}

.main-tabel-block table thead th,
.modal-order .modal-dialog table thead th {
    padding: 0px 5px 15px 5px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.title-row {
    font-weight: 600;
}

.main-tabel-block table tbody td,
.modal-order .modal-dialog table tbody td {
    padding: 15px 5px 15px 5px;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

.modal-order .modal-dialog table tbody td {
    font-size: 12px;
}

.modal-order .modal-dialog table tbody tr.order-top td {
    font-weight: 600;
    color: #373737;
}

.main-tabel-block table thead tr th:last-child,
.main-tabel-block table tbody tr td:last-child {
    text-align: center;
}

.main-tabel-block table .action-btn,
button.view-order-btn {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #0072ff;
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 25px;
}

button.view-order-btn {
    border: none;
}

.main-tabel-block .active {
    color: #3a9811;
    font-weight: 500;
}

/* Main Page | Content | Modal Order */
.modal-order .modal-header h5 {
    padding: 0px 8px;
    display: inline-block;
    border-radius: 25px;
    background: #3a9811;
    font-size: 16px;
    color: #fff;
}

.order-date td {
    padding-left: 8px !important;
    background: #3a9811;
    font-weight: 700;
    color: #fff !important;
}

.modal-order .modal-dialog,
.modal-create-user .modal-dialog {
    max-width: 1200px;
}

.modal-create-code .modal-dialog {
    max-width: 768px;
}

h2.modal-title,
.title-modal h2 {
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
}

.modal-create-user button {
    margin-top: 21px;
}

.form-upload-file {
    padding: 0px 40px;
}

.form-upload-file .label-row {
    align-items: center;
}

.form-upload-file .label-row button {
    width: max-content;
}

.form-upload-file .box {
    position: relative;
    text-align: center;
}

.form-upload-file .inputfile {
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    cursor: pointer;
}

.inputfile + label {
    max-width: 100%;
    font-size: 1.25rem;
    ! *20px *!
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    margin-right: 0.25em;
}

.inputfile-4 + label {
    color: #0072ff;
}

.inputfile-4:focus + label,
.inputfile-4.has-focus + label,
.inputfile-4 + label:hover {
    color: #00d4ff;
}

.inputfile-4 + label figure {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0072ff 0%, #00d4ff 100%);
    display: block;
    padding: 20px;
    margin: 0 auto 10px;
}

.inputfile-4:focus + label figure,
.inputfile-4.has-focus + label figure,
.inputfile-4 + label:hover figure {
    background-color: #722040;
}

.inputfile-4 + label svg {
    width: 100%;
    height: 100%;
    fill: #f1e5e6;
}

/*---Switch styles---*/
.switch input {
    cursor: pointer;
    height: 100%;
    opacity: 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.switch {
    margin: 0;
    height: 38px;
    width: 90px;
    position: relative;
}

.switch label {
    background: #ddd;
    color: #c72f18;
    border-radius: 20px;
    display: block;
    height: 100%;
    position: relative;
    transition: all .1s ease;
    width: 100%;
    -moz-box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.3);
    border-bottom: 2px white solid;
}

.switch label div {
    background: #fff;
    border-radius: 50%;
    display: block;
    height: 40px;
    left: -1px;
    position: absolute;
    top: -2px;
    transition: all .1s ease;
    width: 42px;
    z-index: 3;
    border-top: 2px white solid;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.switch label div:before {
    background: #d3d3d3;
    bottom: 0;
    box-shadow: -6px 0 0 0 #d3d3d3,
    6px 0 0 0 #d3d3d3;
    content: '';
    display: block;
    height: 15px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .1s ease;
    width: 3px;
}

.switch .fontawesome-ok {
    font-size: 28px;
    color: white;
    left: 19px;
    position: relative;
    top: 12px;
    z-index: 2;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
}

.switch .fontawesome-remove {
    font-size: 29px;
    left: 51px;
    position: relative;
    top: 12px;
    z-index: 2;

}

.switch input:checked ~ label {
    background: #2fca6c;
    color: #13ad4f;
}

.switch input:checked ~ label div {
    left: 67px;
}

/* ------------------------ */
/* Button File Custom Style */
.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.custom-file-input::before {
    content: 'Select some files';
    display: inline-block;
    background: linear-gradient(top, #f9f9f9, #e3e3e3);
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
}

.custom-file-input:hover::before {
    border-color: black;
}

.custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

/* Main Page | Content | Filter */
.block-filter {
    margin-left: auto;
}

.block-filter form {
    display: flex;
    align-items: center;
}

.block-filter .btn-style {
    margin-left: 15px;
}

.block-filter span {
    margin: 0px 15px;
}

.block-filter input {
    padding: 6px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
}

.group-input.group-date {
    position: relative;
}

.form-row.date-start {
    margin-bottom: 15px;
}

.group-input.group-date::after {
    display: block;
    content: '\f073';
    font-family: "Font Awesome 5 Free";
    color: #6c6c6c;
    width: 16px;
    height: 26px;
    position: absolute;
    top: 5px;
    right: 14px;
}

.datepicker.datepicker-dropdown {
    padding: 15px 15px;
}

.datepicker.datepicker-dropdown .datepicker-days table th {
    font-size: 14px;
    font-weight: 600;
}

.datepicker.datepicker-dropdown .datepicker-days table th.prev,
.datepicker.datepicker-dropdown .datepicker-days table th.next {
    background: #eee;
}

.datepicker.datepicker-dropdown .datepicker-days table thead th.dow {
    padding: 10px 0px;
}

.datepicker.datepicker-dropdown .datepicker-days table tbody td {
    padding: 8px 10px;
    font-size: 14px;
}

.datepicker table tr td.active.active {
    background: linear-gradient(90deg, #0072ff 0%, #00d4ff 100%);
    border-radius: 25px;
}

/* Main Page | Content | Tabs */
.main-tabel-block.tabs {
    padding-top: 10px;
}

.main-tabel-block.tabs .nav.nav-tabs {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.main-tabel-block.tabs .tab-content {
    padding-top: 20px;
}

.main-tabel-block.tabs .nav.nav-tabs button {
    border: none !important;
}

.main-tabel-block.tabs .nav.nav-tabs button {
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
    cursor: pointer;
}

.main-tabel-block.tabs .nav.nav-tabs button.active {
    color: #fff;
    background: linear-gradient(90deg, #0072ff 0%, #00d4ff 100%);
}

/* Main Page | Content | Users */
.main-tabel-block table a {
    font-weight: 600;
}

.main-tabel-block table tbody tr td:first-child a i {
    margin-right: 8px;
}

/* Main Page | Content | User */
.form-row {
    margin: 0px -15px;
    display: flex;
}

.form-row .col-1,
.form-row .col-2,
.form-row .col-3,
.form-row .col-4,
.form-row .col-5,
.form-row .col-6,
.form-row .col-7,
.form-row .col-8,
.form-row .col-9,
.form-row .col-10,
.form-row .col-11,
.form-row .col-12 {
    padding: 0px 15px;
}

.form-row input,
.form-row select,
.form-row .select2-container-multi,
.form-row textarea,
.main-content.operator .btn-group.bootstrap-select {
    padding: 8px 12px;
    width: 100%;
    border: 1px solid #f2f1f6;
    border-radius: 20px;
    background: #fff;
    font-size: 14px;
    line-height: 18px;
}

.main-content.operator .btn-group.bootstrap-select {
    padding: 0px 0px;
    width: 100% !important;
}

.main-content.operator .btn-group.bootstrap-select .btn.dropdown-toggle.selectpicker.btn-default {
    padding-bottom: 0px !important;
}

.main-content.operator .btn-group.bootstrap-select .filter-option.pull-left {
    font-size: 14px;
}

.main-content.operator .btn-group.bootstrap-select .dropdown-toggle::after {

}

.dropdown-menu.inner.selectpicker {
    width: 270px !important;
}

.form-row .select2-container-multi {
    padding: 3px 12px;
}

.form-row .select2-container-multi .select2-choices {
    border: none;
    background-image: unset;
}

.form-row .row-checkbox {
    display: flex;
    flex-direction: row;
}

.form-row .row-checkbox .block-checkbox {
    width: 33.33%;
}

.form-row .row-checkbox .block-checkbox input,
.form-row .row-checkbox .block-checkbox label {
    width: auto;
    cursor: pointer;
}

.form-row.modal-user-create-footer .col-4 {
    margin-left: auto;
}

.modal-create-user .form-row.modal-user-create-footer button {
    margin-top: 0px;
}

.btn-action {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    transition: .3s;
}

.btn-action:hover {
    color: #fff;
}

.btn-delete {
    color: red;
}

.btn-delete:hover {
    background: red;
}

.btn-edit {
    color: green;
}

.btn-edit:hover {
    background: green;
}

.action-row {
    width: 40px;
}

/* Main Page | Content | Roles */
.roles-table {
    width: 100%;
}

.roles-table-head, .roles-table-row {
    display: flex;
    align-items: center;
}

.roles-table-head {
    padding: 0px 0px 15px 0px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.roles-table-row .col {
    flex: 1;
    padding: 15px 0px 15px 0px;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 14px;
    text-align: center;
}

.roles-table-row .col:first-child {
    text-align: left;
}

/* Operator Page */
.main-header.operator {
    padding: 22px 45px 0px 45px;
}

.main-content.operator {
    margin: 25px auto 0px auto;
    padding: 25px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: calc(100% - 135px);
    width: calc(100% - 90px);
    background-color: #fff;
    border-radius: 50px;
}

.main-content.operator .form-row {
    flex-wrap: wrap;
}

.message {
    text-align: center;
}

.message.welcome-message h2 {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    font-size: 16px;
}

.message.alert-message {
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #dbf8dc;
    border-radius: 25px;
}

.message.alert-message h4 {
    margin-bottom: 0px;
    font-size: 14px;
}

.main-content.operator .form-row .col-3,
.main-content.operator .form-row .col-12 {
    padding: 0px 15px;
}

.main-content.operator .form-input.input-file {
    padding: 5px 12px;
}

/* --- */
.modal.fade.modal-message {
    /*opacity: 1;
    display: block;*/
}

.modal.fade.modal-message .modal-header {
    border-bottom: none;
}

.modal.fade.modal-message .modal-body {
    text-align: center;
}

.modal.fade.modal-message .modal-body i {
    margin-bottom: 22px;
    font-size: 64px;
    color: green;
}

.modal.fade.modal-message .modal-body h2 {
    font-size: 18px;
    text-align: center;
}

/* Pagination */
.pagination-block {
    margin-top: 25px;
}

.pagination-block .flex .inline-flex:last-child {
    margin-left: auto;
}

/* Chart Canvas */
#chart_project_container, #chart_product_container {
    height: 400px;
    width: 100%;
}

/* Statistica section */
#chart_product_container {
    position: relative;
    flex-grow: 1;
    min-height: 0;
}

.stats-section.main-block {
    min-height: calc(100vh - 240px);
}

.defect-column {
    text-align: center;
}

.defect-column span {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: red;
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 25px;
}

/* Filter section */
.btn-filter span {
    margin: 0px;
}

.filter-block-stats {
    padding: 30px 5px 40px 20px;
    position: absolute;
    top: 100px;
    right: 40px;
    background: #f2f5fa;
    border-radius: 50px;
    width: 420px;
    height: calc(100% - 132px);
    overflow: hidden;
    display: none;
}

.btn-style.btn-filter-export {
    margin-top: 10px;
    background: linear-gradient(90deg, #28b494 0%, #28b494 100%);

}

.form-row.filtre-btn-bottom .btn-style.btn-filter-stats,
.form-row.filtre-btn-bottom .btn-style.btn-filter-export {
    width: 48%;
    display: inline-block;
    line-height: 16px;
}

.filter-block-stats.show {
    display: block;
}

.filter-block-stats form {
    padding-right: 5px;
    /*overflow: auto;*/
    height: 100%;
    position: relative;
}

.filter-form-stats {
    padding-right: 15px;
    overflow: auto;
    height: calc(100% - 55px);
    position: relative;
}

.filter-block-stats .form-group,
.filter-block-stats .form-group input,
.filter-block-stats .btn-group.bootstrap-select {
    width: 100% !important;
}

.filter-block-stats .form-row .btn.dropdown-toggle.selectpicker.btn-default {
    padding: 12px 25px 6px 12px;
    border: 1px solid #f2f1f6;
    border-radius: 20px;
    background: #fff;
    font-size: 14px;
    line-height: 18px;
}

.filter-block-stats h2 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.filter-block-stats .delimiter {
    height: 25px;
}

.form-group.checkbox-group ul {
    display: flex;
    flex-wrap: wrap;
}

/* Custom Checkbox like button */
.form-group.checkbox-group [type="radio"],
.form-group.checkbox-group [type="checkbox"] {
    opacity: 0;
    width: 0 !important;
    height: 0 !important;
    position: absolute;
}

.form-group.checkbox-group [type="radio"] + label,
.form-group.checkbox-group [type="checkbox"] + label {
    cursor: pointer;
    margin-right: 10px;
    display: inline-block;
    line-height: 1.3em;
}

.form-group.checkbox-group .radio-button + label,
.form-group.checkbox-group .check-button + label {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background: #fff;
}

.form-group.checkbox-group .check-button:checked + label,
.form-group.checkbox-group .radio-button:checked + label {
    background: green;
    border: 1px solid green;
    color: #fff;
}

.form-group.checkbox-group .check-button + label::before,
.form-group.checkbox-group .radio-button + label::before {
    display: none;
}

/* Phone (Portrait) and narrow screen */
@media only screen and (min-width: 320px) and (max-width: 812px) {
    .form-group.checkbox-group [type="radio"] + label::before,
    .form-group.checkbox-group [type="checkbox"] + label::before {
        margin-bottom: 0.2em;
    }

    .form-group.checkbox-group [type="checkbox"] + label.switch::before {
        margin-top: -0.2em;
    }
}

/*  Defect page */
.form-row.row-components {
    padding-bottom: 40px;
    margin-bottom: 40px;
    position: relative;
}

.form-row.row-components::after {
    content: '';
    display: block;
    width: calc(100% - 30px);
    height: 1px;
    background: #eee;
    position: absolute;
    left: 15px;
    bottom: 0px;
}

.product-img-main {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    float: left;
}

.product-img-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform .5s ease-out;
    transition: -webkit-transform .5s ease-out;
    transition: transform .5s ease-out;
    transition: transform .5s ease-out, -webkit-transform .5s ease-out;
}

.main-tabel-block .defect-description table tbody tr:nth-child(2n+1) td {
    background: #fdfdfd;
}

.main-tabel-block .defect-description table tbody tr td:first-child {
    padding-left: 5px;
    font-weight: 600;
}

.main-tabel-block .defect-description table tbody tr td:last-child {
    padding-right: 5px;
    text-align: right;
}

.main-tabel-block .defect-description ul.list-component-deffect li {
    padding: 10px 0px;
    font-size: 12px;
    line-height: 16px;
}

.main-tabel-block .defect-description ul.list-component-deffect li:nth-child(2n+1) {
    background: #f8f8f8;
}

/**/
.title-table-stats {
    text-align: left !important;
    background: linear-gradient(90deg, #0072ff 0%, #00d4ff 100%);
    color: #fff !important;
}

.main-tabel-block .defect-description table .td-no-padding {
    padding: 0px !important;
}

.main-tabel-block .defect-description table table th {
    padding: 15px 5px;
    background-color: #f2f5fa;
    text-transform: uppercase;
}

.main-tabel-block .defect-description table table td {
    font-size: 12px;
    font-weight: normal;
    text-align: left;
}

.main-tabel-block .defect-description table table tr td:last-child {
    padding-right: 5px;
    text-align: left;
}

/**/
.component-block {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f2f5fa;
    border-radius: 25px;
}

.component-block h2 {
    margin-bottom: 32px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 20px;
}

.main-tabel-block .component-block table thead tr th:last-child,
.main-tabel-block .component-block table tbody tr td:last-child {
    text-align: left;
}

.main-tabel-block .component-block table tbody td {
    border-bottom: none;
}

.filtre-btn-bottom {
    padding-top: 20px;
}

.filtre-btn-bottom button {
    width: 100%;
}

/* Chart Bar Section */
.stats-section-chart-bar {
    padding-top: 40px;
    display: none;
}

.stats-section-chart-bar #resizable {
    padding: 15px;
    height: 430px;
    border: 1px solid #eee;
}

.stats-modal .modal-content {
    min-height: 500px;
}

.chart-product,
.chart-project,
.canvasjs-chart-container .canvasjs-chart-credit {
    display: none;
}

.chart-product,
.chart-project {
    padding-top: 40px;
    position: relative;
}

.action-btn.show-chart-btn.active {
    background: green;
}

/* Select 2 */
.select2-results .select2-result {
    font-size: 12px;
    border-bottom: 1px solid #eee;
}

.select2-results .select2-result:last-child {
    border-bottom: none;
}

.select2-container-multi .select2-choices .select2-search-choice {
    line-height: 16px !important;
}

/* Data Tables */
table.dataTable,
table.dataTable thead th,
table.dataTable thead td {
    border-bottom: none !important;
}

#dataTable_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    margin-left: 8px;
    border-radius: 25px !important;
    border: 1px solid #eee !important;
}

.dataTables_wrapper .dataTables_length select {
    margin: 0 8px;
}

.dataTables_wrapper #dataTable_paginate {
    padding-top: 15px;
}

.dataTables_wrapper #dataTable_paginate span .paginate_button,
.dataTables_wrapper #dataTable_paginate span .paginate_button.current {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0px;
    text-align: center;
    line-height: 40px;
    border: none !important;
}

.dataTables_wrapper #dataTable_paginate .paginate_button.next,
.dataTables_wrapper #dataTable_paginate .paginate_button.previous {
    border-radius: 25px;
    border: none !important;
}

.dataTables_wrapper #dataTable_paginate span .paginate_button:hover,
.dataTables_wrapper #dataTable_paginate span .paginate_button.current,
.dataTables_wrapper #dataTable_paginate .paginate_button.next:hover {
    color: #fff !important;
    background: linear-gradient(90deg, #0072ff 0%, #00d4ff 100%);
}

/* Pagina - Statistica */
.statistics-section.main-block .chart-statistics {
    margin-bottom: 30px;
    padding: 15px;
    min-height: 450px;
    border-radius: 25px;
    border: 1px solid #eee;
}

/* Responsive */
@media (max-width: 1680px) and (min-width: 1400px) {
    #main > .col-3 {
        width: 22%;
    }

    #main > .col-9 {
        width: 78%;
    }

    .main-content {
        width: calc(100% - 60px);
    }

    .sidebar-menu ul li.has-submenu a i:last-child {
        font-size: 16px;
        top: 5px;
    }
}

@media (max-width: 1400px) and (min-width: 1201px) {
    .main-header {
        padding-right: 65px;
    }

    .main-content {
        padding: 25px 25px;
        width: calc(100% - 50px);
    }
}

@media (max-width: 1201px) and (min-width: 991px) {
    .login-form-content {
        min-width: 350px;
    }

    .main-content.operator .form-row .col-3 {
        width: 50%;
    }

    /**/
    .sidebar-left .sidebar-menu {
        padding: 25px 15px 0px 0px;
    }

    .sidebar-menu ul > li {
        padding: 15px 0px 15px 15px;
    }

    .sidebar-menu ul li.active::before {
        height: 23px;
        top: 15px;
    }

    .sidebar-menu ul > li a {
        font-size: 14px;
    }

    .sidebar-menu ul li a i {
        margin-right: 10px;
        width: 28px;
        font-size: 16px;
    }

    .sidebar-menu ul li.has-submenu {
        padding-right: 25px;
    }

    .sidebar-menu ul li.has-submenu a i:last-child {
        font-size: 16px;
        top: 4px;
        right: -28px;
    }

    .sidebar-menu ul li.has-submenu ul {
        margin: 15px 0px 0px 37px;
    }

    /**/
    .mobile-header ul > li {
        padding: 9px 0px 15px 28px;
    }

    /**/
    .main-tabel-block table thead th,
    .modal-order .modal-dialog table thead th,
    .main-tabel-block table tbody td,
    .modal-order .modal-dialog table tbody td {
        font-size: 12px;
    }
}

@media (max-width: 1200px) and (min-width: 0px) {
    #main {
        flex-direction: column;
    }

    #main > .col-3, .main-header {
        display: none;
    }

    #main > .col-9 {
        width: 100%;
        position: relative;
        z-index: 2000;
    }

    .main-content {
        margin-left: 30px;
        padding: 25px 25px;
        width: calc(100% - 60px);
    }

    /**/
    .mobile-header {
        padding: 20px 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .mobile-header .mobile-logo {
        padding-right: 30px;
        width: 150px;
    }

    .mobile-header .mobile-logo img {
        width: 100%;
        height: auto;
    }

    .mobile-header ul {
        margin: 0 auto;
        display: flex;
    }

    .sidebar-menu ul li.active::before,
    .mobile-header ul li.active::before {
        display: none;
    }

    .mobile-header ul li.active a,
    .has-submenu.show > a {
        color: #0072ff;
    }

    .mobile-header ul li a i {
        margin-right: 5px;
        width: 32px;
        font-size: 18px;
    }

    .mobile-header .block.logout a.dropdown-item {
        padding: 10px 15px;
        border-radius: 20px;
        border: none;
        font-size: 14px;
        font-weight: 500;
        color: #fff !important;
        text-align: center;
        background: linear-gradient(90deg, #0072ff 0%, #00d4ff 100%);
        cursor: pointer;
    }

    .mobile-header ul li.has-submenu a i:last-child {
        font-size: 16px;
        position: absolute;
        top: 16px;
        right: -35px;
        margin-right: 0px;
        rotate: 90deg;
    }

    .mobile-header ul li.has-submenu ul {
        display: none;
        margin: 15px 0px 0px 0px;
        position: absolute;
        background: #fff;
        z-index: 9998;
        padding: 15px 30px;
        border: 1px solid #eee;
        border-radius: 25px;
        box-shadow: 0px 7px 10px 2px rgba(0, 0, 0, .2);
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .login-form-content {
        min-width: 300px;
    }

    #main-login .col-6.column-login-info .login-info-card .info {
        padding: 0px 150px 0px 40px;
        padding-right: 15%;
    }

    .main-content.operator .form-row .col-3 {
        width: 50%;
    }

    /**/
    .btn-style, .btn-second-style, .main-title-block .btn-style {
        padding: 10px 15px;
    }

    /**/
    #main > .col-3,
    #main > .col-9 {
        width: 100%;
    }

    .sidebar-left {
        display: flex;
        align-items: center;
    }

    .sidebar-left .sidebar-logo {
        padding: 15px 15px;
    }

    .sidebar-left .sidebar-menu {
        padding: 0px 65px 0px 0px;
    }

    /* Menu */
    .sidebar-menu ul {
        display: flex;
    }

    .sidebar-menu ul > li {
        padding: 15px 15px 15px 15px;
    }

    .sidebar-menu ul li.active::before {
        height: 23px;
        top: 15px;
        display: none;
    }

    .sidebar-menu ul li.active a {
        color: #0089e8;
    }

    .sidebar-menu ul > li a {
        font-size: 14px;
    }

    .sidebar-menu ul li a i {
        margin-right: 0px;
        width: 28px;
        font-size: 16px;
    }

    .sidebar-menu ul li.has-submenu {
        padding-right: 25px;
    }

    .sidebar-menu ul li.has-submenu a i:last-child {
        font-size: 14px;
        top: 13px;
        right: -28px;
        rotate: 90deg;
    }

    .sidebar-menu ul li.has-submenu ul {
        margin: 0px;
        padding: 15px 25px;
        min-width: 155px;
        position: absolute;
        top: 50px;
        left: 15px;
        background: #fff;
        border-radius: 25px;
    }

    /**/
    .mobile-header ul li a i {
        display: none;
    }

    .mobile-header ul > li {
        padding: 8px 0px 8px 28px;
    }

    .mobile-header ul li.has-submenu ul {
        min-width: 182px;
    }

    /**/
    .modal-order .modal-dialog,
    .modal-create-user .modal-dialog {
        max-width: 98%;
    }

    .main-tabel-block,
    .modal-order .modal-dialog .modal-body,
    .modal-create-user .modal-dialog .modal-body,
    .component-block {
        overflow-x: auto;
    }

    .modal-chart-stats .form-row {
        flex-direction: column;
    }

    .modal-chart-stats .form-row .col-6:first-child {
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) and (min-width: 0px) {
    .mobile-header {
        padding: 20px 15px;
    }

    .mobile-header .mobile-logo {
        margin: 0 auto;
        padding-right: 0px;
        width: 115px;
    }

    .mobile-header ul {
        display: none;
    }

    .main-content {
        margin-left: 15px;
        padding: 25px 15px;
        width: calc(100% - 30px);
    }

    .mobile-header #burger-nav-icon {
        display: block;
    }

    .mobile-header ul.open {
        display: block;
        width: 80%;
        height: 100vh;
        background: #fff;
        box-shadow: 0px 0px 8px 30px rgba(0, 0, 0, .2);
        position: fixed;
        top: 0px;
        left: 0px;
        z-index: 9999;
    }

    .mobile-header ul li.has-submenu ul {
        margin: 0px 0px 0px 8px;
        border: none;
        box-shadow: none;
    }

    .mobile-header ul .close-menu {
        padding: 10px 15px;
        display: block;
        position: absolute;
        top: 0;
        right: -40px;
        background: #fff;
        cursor: pointer;
    }

    /**/
    #main-login .col-6.column-login-info {
        position: absolute;
        width: 70%;
        opacity: .02;
        display: none !important;
    }

    #main-login .col-6 {
        width: 100%;
        height: auto;
    }

    .login-form-content {
        padding-top: 100px;
        min-width: 80%;
    }

    .login-form-logo {
        padding: 40px 0px 15px 0px;
        width: 100%;
        text-align: center;
    }

    /* Operator Page */
    .main-header.operator {
        padding: 15px 15px 0px 15px;
    }

    .main-header .block.logout {
        padding: 0px 0px;
    }

    .main-content.operator {
        margin: 18px auto 0px auto;
        padding: 25px 15px;
        width: 100%;
        min-height: calc(100% - 82px);
        border-radius: 50px 50px 0px 0px;
    }

    .main-content.operator .form-row .col-3 {
        width: 100%;
    }

    /**/
    .main-tabel-block,
    .main-form {
        padding-top: 25px;
    }

    /**/
    .main-title-block {
        flex-direction: column;
        align-items: initial;
    }

    .main-title-block h2 {
        padding-bottom: 15px;
    }

    .main-title-block .block-filter .btn-style {
        margin-left: 0px;
        margin-bottom: 8px;
        display: inline-block;
        line-height: initial;
    }

    .main-title-block .block-filter .btn-style:nth-child(2) {
        margin-bottom: 0px;
    }

    .main-title-block .block-filter .btn-style i {
        display: none;
    }

    /**/
    .main-tabel-block .dataTables_wrapper,
    .main-tabel-block,
    .modal-order .modal-dialog .modal-body,
    .modal-create-user .modal-dialog .modal-body,
    .component-block {
        overflow-x: auto;
        position: relative;
        z-index: 7;
    }

    .main-tabel-block .dataTables_wrapper .dataTables_length,
    .main-tabel-block .dataTables_wrapper .dataTables_filter {
        text-align: left;
    }

    .main-tabel-block table tbody td {
        font-size: 12px;
    }

    .dataTables_wrapper #dataTable_paginate .paginate_button.next,
    .dataTables_wrapper #dataTable_paginate .paginate_button.previous {
        display: none;
    }

    /**/
    .block-filter {
        margin-left: 0;
        display: flex;
        flex-direction: column;
    }

    .main-title-block .block-filter form .btn-style {
        margin-left: 5px;
        margin-bottom: 0px;
    }

    .main-title-block .block-filter form span {
        margin: 0px 8px;
    }

    .main-tabel-block.tabs .nav.nav-tabs button {
        padding: 10px 10px;
    }

    /**/
    .breadcrumb ul li:last-child {
        margin-left: 0px;
        padding-top: 20px;
        padding-left: 0px;
    }

    .breadcrumb ul li:last-child::before,
    .form-row.row-components::after {
        display: none;
    }

    /**/
    .main-tabel-block.stats-show-section {
        overflow: hidden;
    }

    .filter-block-stats {
        top: 152px;
        right: 2%;
        width: 96%;
        height: calc(100% - 220px);
        z-index: 8;
    }

    .component-block {
        margin-bottom: 20px;
        padding: 15px;
        background-color: #f2f5fa;
        border-radius: 25px;
    }

    .component-block h2 {
        margin-bottom: 20px;
        padding-bottom: 10px;
        font-size: 18px;
    }

    .form-row.row-components {
        margin-bottom: 25px;
        padding-bottom: 25px;
        flex-direction: column;
    }

    .form-row.row-components .col-4,
    .form-row.row-components .col-8 {
        width: 100%;
    }

    /**/
    .modal-chart-stats .form-row {
        flex-direction: column;
    }

    .modal-chart-stats .form-row .col-6:first-child {
        padding-bottom: 40px;
    }

    /**/
    .modal-create-user .form-row,
    .user-form .form-row {
        flex-direction: column;
    }

    .modal-create-user .form-row .col-3,
    .modal-create-user .form-row .col-4,
    .user-form .form-row .col-4 {
        width: 100%;
    }

    .modal-create-user .form-row .col-4 .label-row {
        margin-bottom: 15px;
    }

    .form-row .row-checkbox .block-checkbox {
        flex-basis: max-content;
        padding-right: 25px;
    }

    /**/
    .main-title-block.users-show .breadcrumb li {
        width: 100%;
    }

    .main-title-block.users-show .breadcrumb ul li:last-child {
        margin-left: 0px;
        padding-top: 5px;
        padding-left: 35px;
        text-transform: capitalize;
        font-weight: 600;
    }

    .main-title-block.users-show .btn-style.btn-title {
        margin-top: 10px;
        margin-left: 0;
    }

    /**/
    .code-defect-action {
        margin-left: 0 !important;
        display: flex;
        flex-direction: column;
    }

    .main-title-block .code-defect-action .btn-style.btn-title {
        margin-left: 0;
    }

    .main-title-block .code-defect-action .btn-style:first-child {
        margin-bottom: 10px;
    }

    /**/
    .stats-modal .modal-body .form-row {
        flex-direction: column;
    }

    .stats-modal .modal-body .form-row .col-6 {
        width: 100%;
        min-height: 500px;
    }

    .stats-modal .modal-content {
        min-height: auto;
    }

    /**/
    .statistics-section.main-block .form-row {
        flex-direction: column;
    }

    .form-row .col-6 {
        width: 100%;
    }
}

.select2-container.form-control {
    padding: 4px 10px;
    border: 1px solid #f2f1f6 !important;
    border-radius: 20px !important;
}

.select2-container .select2-choice {
    border: none !important;
    background: transparent;
}

.select2-container .select2-choice span {
    font-size: 14px;
    color: #777;
}

.select2-container .select2-choice div {
    background: none;
    border: none;
    width: 12px;
}

.select2-container .select2-choice b {
    width: 0px !important;
    height: 0px !important;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #000000 transparent transparent transparent;
    transform: rotate(0deg);
    margin-top: 12px;
}
