/*-- SYMPHONICA CUSTOM STYLES --*/

* {
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'Fira Sans', sans-serif;
}

body {
    overflow-x: hidden;
}

.relative {
    position: relative;
}

.hidden {
    display: none;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #aaa !important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #aaa !important;
}

::placeholder {
    color: #aaa !important;
}

.width5 {
    width: 5%;
}

.width10 {
    width: 10%;
}

.width20 {
    width: 20%;
}

.width30 {
    width: 30%;
}

.width40 {
    width: 40%;
}

.width50 {
    width: 50%;
}

.width60 {
    width: 60%;
}

.width70 {
    width: 70%;
}

.width80 {
    width: 80%;
}

.width90 {
    width: 90%;
}

.width100 {
    width: 100%;
}

.primary-color {
    color: #83874e;
}

.primary-background {
    background-color: #83874e;
}

.gold-color {
    color: #E38B29;
}

.green-color {
    color: #31b54b;
}

.scalemin {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.grey-color {
    color: grey;
}

.pr-0 {
    padding-right: 0;
}

.pl-0 {
    padding-left: 0;
}

.transition {
    transition: all ease 0.15s;
}


/* LINKS  */

a {
    color: #1597E5;
    text-decoration: none;
    transition: all ease 0.25s;
    cursor: pointer;
}

a:active {
    border: 0;
    outline: 0;
}

a:visited {
    border: 0;
    outline: 0;
    text-decoration: none;
}

a:hover {
    color: #cacaca;
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

.info-icon {
    color: #919191;
}

.info-icon:hover {
    color: #31b54b;
}

.inverse-link {
    color: #4b4b4b;
}

.inverse-link:hover {
    color: #1597E5;
}

.required:after {
    content: " *";
    color: red;
    position: absolute;
    top: 10px;
    left: -3px;
    color: #f44336;
}

/* BUTTONS */

button {
    background: #1597E5;
    font-size: 15px;
    color: white;
    border-radius: 10px;
    padding: 15px 25px;
    border: 1px solid #1597E5;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

button:hover {
    color: #1597E5;
    background: transparent;
    cursor: pointer !important;
}

a:hover {
    cursor: pointer;
}

button a {
    color: #fff;
}

button a:hover {
    color: #fff;
}

.box {
    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    -webkit-box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    -moz-box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}

.box-nopad {
    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    -webkit-box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    -moz-box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    background-color: #fff;
    border-radius: 5px;
}


/* INPUTS */

input,
textarea {
    margin-bottom: 5px;
    color: black;
    transition: all 0.3s ease;
    padding: 5px;
    border: 1px solid #d1d1d1;
    border-radius: 3px;
}

textarea:focus,
input:focus {
    outline: none;
    border: 1px solid #1597E5;
    background: #f7f7f7;
}


/* CUSTOM CHECKBOX */

.check-boxes {
    display: block;
    position: relative;
    padding-left: 27px;
    margin-bottom: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    line-height: 25px;
    padding-bottom: 5px;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: normal;
}

.check-boxes:last-child {
    margin-bottom: 0px;
}


/* Hide the browser's default checkbox */

.check-boxes input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.check-mark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 10px;
}


/* On mouse-over, add a grey background color */

.check-boxes:hover input~.check-mark {
    background-color: #ccc;
}


/* When the checkbox is checked, add a blue background */

.check-boxes input:checked~.check-mark {
    background-color: #01c5c4;
}


/* Create the checkmark/indicator (hidden when not checked) */

.check-mark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.check-boxes input:checked~.check-mark:after {
    display: block;
}


/* Style the checkmark/indicator */

.check-boxes .check-mark:after {
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* FILE UPLOAD */

.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px;
    border: 1px dashed rgba(166, 166, 166, 0.5);
    border-radius: 3px;
    transition: 0.2s;
    color: #4b4b4b;
}

.file-drop-area:is-active {
    background-color: rgba(255, 255, 255, 0.05);
}

.fake-btn {
    flex-shrink: 0;
    background-color: #8febbd;
    border-radius: 3px;
    padding: 10px 15px;
    margin-right: 10px;
    font-size: 14px;
}

.file-msg {
    font-size: small;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}

.file-input:focus {
    outline: none;
}


/* CUSTOM RADIO BUTTON */


/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 2px;
    left: -25px;
    height: 16px;
    width: 16px;
    background-color: #eee;
    border-radius: 50%;
}


/* On mouse-over, add a grey background color */

.answer:hover input~.checkmark {
    background-color: #ccc;
}


/* When the radio button is checked, add a blue background */

.answer input:checked~.checkmark {
    background-color: #1597E5;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the indicator (dot/circle) when checked */

.answer input:checked~.checkmark:after {
    display: block;
}


/* Style the indicator (dot/circle) */

.answer .checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.brand-link {
    text-align: center;
}

.brand-link img {
    height: 50px;
}

.ew-grid .ew-table .ew-table-row {
    background-color: #fff;
    color: inherit;
    border-top: 1px solid #ebe9f1;
}

.ew-grid .ew-table .ew-table-alt-row {
    background-color: #f7f7f7;
    color: inherit;
    border-top: 1px solid #ebe9f1;
}

.ew-grid .ew-table>thead>tr>td,
.ew-grid .ew-table>thead>tr>th {
    background-color: #fff;
    border-color: #ebe9f1;
    vertical-align: middle;
    font-weight: bold;
    border-top: 1px solid #ebe9f1;
    color: #495057;
}

.ew-grid .ew-table>tbody>tr>td,
.ew-grid .ew-table>tfoot>tr>td {
    border-color: #ebe9f1;
    transition: all ease 0.15s;
    border-right: 0;
    vertical-align: middle;
}

.ew-grid .ew-table .ew-table-select-row>td {
    background-color: rgba(49, 181, 75, 0.7);
    color: #fff;
}

.custom-control-label::after,
.custom-control-label::before {
    top: 0.31625rem;
    left: -1.1rem;
}

.ew-grid-lower-panel.card-footer,
.ew-grid-upper-panel.card-header {
    background-color: transparent;
}

.ew-grid {
    border: 1px solid #ebe9f1;
}

.ew-grid .ew-grid-lower-panel {
    border: 1px solid #ebe9f1;
}

.table td,
.table th {
    vertical-align: top;
}

.ew-nav-tabs .tab-content>.active {
    max-width: 1500px;
}

.navbar-warning {
    background-color: #1597E5;
    color: #fff;
}

.sidebar-dark-warning .nav-sidebar>.nav-item>.nav-link.active,
.sidebar-light-warning .nav-sidebar>.nav-item>.nav-link.active {
    color: #fff;
    background-color: #1597E5;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #1597E5;
    background-color: #1597E5;
}

.btn-group-sm>.btn,
.btn-sm {
    line-height: 1;
}

.btn-primary {
    background-color: #1597E5;
    border-color: #1597E5;
}

.content-header h1 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 500 !important;
}


/* .sidebar-collapse .main-sidebar, .sidebar-collapse .main-sidebar::before {
    width: 40px;
}
.sidebar-collapse .wrapper {
    margin-left: 40px;
} */

.form-control:focus {
    box-shadow: 0 0 0 0.05rem rgb(0 123 255 / 25%);
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
}

.ew-grid {
    border: 0;
}

.ew-grid .ew-grid-lower-panel {
    border: 0;
    margin-top: 15px;
    padding-left: 0;
}

.bi-trash.panel-buttons {
    -webkit-text-stroke: 0;
}

/* Added 07.01.2022 */

.nav-tabs {
    text-transform: uppercase;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 3px solid #1597E5;
    font-weight: bold;
}

.nav-tabs .nav-link {
    color: #aaa;
    font-weight: 500;
    padding: 10px 40px;
    transition: none;
}

.nav-tabs .nav-link:hover {
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 3px solid #aaa;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 18px;
}

.form-section h2 {
    margin-bottom: 20px;
}

.tab-content {
    padding: 5px;
}

.content-wrapper .content-header {
    padding: 10px 1rem 5px 1rem;
}

.background-grey {
    background-color: #f7f7f7;
}

select {
    width: 100%;
    padding: 7px;
    border-color: #ccc;
    border-radius: 3px;
    margin-bottom: 5px;
}

.ew-select,
.select2-container {
    min-width: 180px !important;
}

.form-group {
    margin-bottom: 20px;
}

.form-section {
    margin-bottom: 20px;
}

.form-section-title {
    background: #1597E5;
    padding: 10px 20px 10px 20px;
    color: #fff;
    border-radius: 5px 5px 0 0;
}

.form-section-title h2 {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
}

.form-section-content {
    padding: 20px 20px 10px 20px;
}

label {
    font-weight: 500;
}

textarea {
    width: 100%;
    margin-bottom: 3px;
}

.heading-after {
    text-align: left;
    margin-bottom: 60px;
    position: relative;
}

.heading-after:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    border: 1px solid #1597E5;
    display: block;
    background-color: #1597E5;
    margin-top: 10px;
    left: 0;
    transform: translate(0%);
    border-radius: 4px;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

button {
    text-transform: inherit;
    letter-spacing: inherit;
}

.icon-left {
    margin-left: 5px;
}

.icon-right {
    margin-right: 5px;
}

.left-button {
    margin-right: 20px;
}

.prev-next {
    margin-top: 10px;
    margin-bottom: 10px;
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #aaa;
    border-color: #aaa;
}

.submit-button {
    background: #31b54b;
    border-color: #31b54b;
}

.submit-button:hover {
    background: transparent;
    border-color: #31b54b;
    color: #31b54b;
}

.criteria-table {
    width: 100%;
}

.criteria-table .head {
    border-bottom: 1px solid #ccc;
    padding: 2px 5px;
    font-weight: 500;
    margin-bottom: 10px;
}

.delete-icon {
    color: #f44336;
    font-size: 20px;
    cursor: pointer;
}

.copy-icon {
    font-size: 20px;
    cursor: pointer;
}

.plus-icon {
    color: #1597E5;
    font-size: 20px;
    cursor: pointer;
}

h3 {
    font-size: 18px;
    font-weight: 500;
}

.specifications-content {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 5px;
}

.specifications-content .plus-icon {
    margin-left: 3px !important;
    margin-top: 5px;
    display: block;
}

.cancel-button {
    background-color: transparent;
    color: #000;
}

.reject-button {
    background-color: #f44336;
    border-color: #f44336;
    color: #fff;
}

.reject-button:hover {
    background-color: transparent;
    border-color: #f44336;
    color: #f44336;
}

.nav-pills,
.nav-tabs {
    margin-bottom: 0;
}

.submit-form-buttons {
    margin-bottom: 20px;
}

#submit-form-buttons .btn {
    opacity: 0;
}

.validation-box .form-section-title {
    background: #f44336;
}

.validation-box i {
    color: #f44336;
}

.validation-color {
    color: #f44336;
}

.invalid-feedback {
    margin-top: -4px;
    position: absolute;
    color: #f44336;
    font-size: 13px;
}

table.specifikacija_stavki input[type=password]:not([size]),
table.specifikacija_stavki input[type=text]:not([size]):not([name=pageno]):not(.cke_dialog_ui_input_text):not(.form-control-plaintext),
table.specifikacija_stavki select {
    min-width: 40px;
    padding: 0px 3px;
    margin: 0px;
    width: 100%;
}

.view-module label {
    padding-top: 0;
}

.criteria-row {
    margin-bottom: 10px;
    padding-left: 5px;
}

.modal-title {
    font-family: 'Fira Sans';
}

.modal-body {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.previous-button {
    background: transparent;
    color: #343a40;
    border: 0;
}

.previous-button:disabled {
    background: transparent;
    color: #aaa;
    border: 0;
}

.document-icon {
    font-size: 20px;
}

.chart {
    padding: 20px;
    border: 1px solid #eee;
    text-align: center;
    overflow: hidden;
    background: #fff;
    transition: all ease 0.25s;
    margin-bottom: 30px;
}

.chart h1 {
    font-size: 60px;
    line-height: 60px;
    margin: 0;
    text-align: center;
    color: #343a40;
    transform: all ease 0.25s;
}

.chart:hover {
    background: #f9f9f9 !important;
}

.chart h2 {
    margin-top: 0;
    text-align: center;
}

.chart h3 {
    margin: 0;
    color: #98a6ad;
    font-size: 14px;
}

.number-info {
    position: relative;
    padding: 30px 20px;
    margin-bottom: 30px;
    cursor: pointer;
}

.number-info img {
    height: 65px;
    margin-top: 5px;
}

.dashboard-table {
    height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.dashboard-table h4 {
    font-size: 15px;
    color: #343a40;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.dashboard-table-data {
    color: #aaa;
    font-size: 13px;
}

.dashboard-table-row {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.dashboard-table-data i {
    color: #343a40;
}

.dashboard-table-link {
    font-size: 20px;
    line-height: 40px;
    color: #1597E5;
    transition: all ease 0.25s;
}

.dashboard-table-link:hover {
    padding-left: 7px;
    color: #343a40;
}

.pie-charts {
    height: 300px;
}

.dashboard-table::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.dashboard-table-simpler h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: break-spaces;
    margin-bottom: 0px;
    font-weight: 400;
}

.dashboard-value-data {
    font-size: 15px;
    line-height: 35px;
    font-weight: 500;
}


/* Track */

.dashboard-table::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #ccc;
    border-radius: 10px;
}


/* Handle */

.dashboard-table::-webkit-scrollbar-thumb {
    background: #1597E5;
    border-radius: 10px;
}


/* Handle on hover */

.dashboard-table::-webkit-scrollbar-thumb:hover {
    background: #1d81be;
}

.dashobaord-table-simpler {
    overflow: hidden;
    margin-bottom: 15px;
}

.dashboard-table-simpler::-webkit-scrollbar {
    width: 0;
}

.ew-grid .ew-grid-upper-panel {
    margin-bottom: 15px;
    border-bottom: 0;
    padding-left: 0;
}

.ew-grid .ew-table {
    border-left: 1px solid #ebe9f1;
    border-right: 1px solid #ebe9f1;
}

.login-left {
    height: 100vh;
    padding: 100px;
    background: url('../images/pattern2.jpg');
    background-size: cover;
    background-repeat: repeat;
    text-align: center;
    overflow: hidden;
    position: relative
}

.login-left-content {
    position: absolute;
    left: 50%;
    margin-left: -308px;
    top: 50%;
    margin-top: -280px;
}

.login-coat {
    width: 100%;
    margin: 0 auto;
    color: #fff;
}

.login-coat h1 {
    margin-top: 20px;
    font-size: 24px;
}

.login-coat h2 {
    font-size: 30px;
}

.login-coat img {
    width: 300px;
}

.login-right {
    height: 100vh;
    position: relative;
    background: #f7f7f7;
}

.login-right form {
    position: absolute;
    top: 50%;
    margin-top: -203px;
}

.login-title {
    margin-top: 100px;
    color: #fff;
}

.login-title h3 {
    font-size: 30px;
    text-transform: uppercase;
}

.login-title .heading-after {
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

.login-title .heading-after:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    border: 1px solid #fff;
    display: block;
    background-color: #fff;
    margin-top: 15px;
    left: 50%;
    margin-left: -30px;
    transform: translate(0%);
    border-radius: 4px;
}

.login-right .card {
    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    -webkit-box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    -moz-box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    background-color: #fff;
    border-radius: 5px;
    padding: 40px;
    border: 0;
}

.social-auth-links {
    margin: 0;
    display: none;
}

.login-right button.ew-btn {
    margin-left: -7px;
    padding: 8px 30px;
    margin-top: 10px;
}

.login-right input {
    padding: 20px 15px;
}

.login-right input:-webkit-autofill {
    background-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.login-box-msg,
.register-box-msg {
    margin: 0;
    padding: 0 20px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.login-logo,
.register-logo {
    display: none;
}

.login-right .invalid-feedback {
    position: inherit;
}

#contract-specification {
    border-top: 0;
    padding-top: 0;
}

.rating {
    display: inline-block;
    position: relative;
    height: 50px;
    line-height: 50px;
    font-size: 50px;
}

.rating label {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.rating label:last-child {
    position: static;
}

.rating label:nth-child(1) {
    z-index: 5;
}

.rating label:nth-child(2) {
    z-index: 4;
}

.rating label:nth-child(3) {
    z-index: 3;
}

.rating label:nth-child(4) {
    z-index: 2;
}

.rating label:nth-child(5) {
    z-index: 1;
}

.rating label input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.rating label .icon {
    float: left;
    color: transparent;
    font-size: 30px;
    margin-top: -8px;
}

.rating label:last-child .icon {
    color: grey;
}

.rating:not(:hover) label input:checked~.icon,
.rating:hover label:hover input~.icon {
    color: gold;
}

.rating label input:focus:not(:checked)~.icon:last-child {
    color: #000;
    text-shadow: 0 0 5px gold;
}

.dashboard-table-main .col-9 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.ew-grid .ew-table .ew-table-edit-row>td {
    background-color: transparent;
    color: inherit;
}

.nav-sidebar .nav-item a:before {
    display: inline-block;
    content: '';
    vertical-align: -2px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
    margin-right: 3px;
}


/* Почетна */

.nav-sidebar [id='1'] a:before {
    background-image: url(../images/menu-icons/house.svg);
}


/* Планови за јавни набавки */

.nav-sidebar [id='16'] a:before {
    background-image: url(../images/menu-icons/folder2-open.svg);
}


/* Реферати */

.nav-sidebar [id='5'] a:before {
    background-image: url(../images/menu-icons/check2-circle.svg);
}


/* Јавни набавки */

.nav-sidebar [id='15'] a:before {
    background-image: url(../images/menu-icons/cart2.svg);
}


/* Испораки */

.nav-sidebar [id='13'] a:before {
    background-image: url(../images/menu-icons/box-seam.svg);
}


/* Корисници */

.nav-sidebar [id='4'] a:before {
    background-image: url(../images/menu-icons/people.svg);
}


/* Сектори */

.nav-sidebar [id='6'] a:before {
    background-image: url(../images/menu-icons/boxes.svg);
}


/* Темплејти */

.nav-sidebar [id='17'] a:before {
    background-image: url(../images/menu-icons/file-break.svg);
}

/* Рамковни спогодби */

.nav-sidebar [id='47'] a:before {
    background-image: url(../images/menu-icons/collection.svg);
}


/* Договори */

.nav-sidebar [id='11'] a:before {
    background-image: url(../images/menu-icons/file-earmark-medical.svg);
}


/* Нарачки */

.nav-sidebar [id='37'] a:before,
.nav-sidebar [id='39'] a:before {
    background-image: url(../images/menu-icons/order.svg);
}


/* Контрола на квалитет */

.nav-sidebar [id='38'] a:before {
    background-image: url(../images/menu-icons/quality.svg);
}


/* Артикли */

.nav-sidebar [id='8'] a:before {
    background-image: url(../images/menu-icons/tag.svg);
}


/* Добавувачи */

.nav-sidebar [id='9'] a:before {
    background-image: url(../images/menu-icons/record-circle.svg);
}


/* Документи */

.nav-sidebar [id='29'] a:before {
    background-image: url(../images/menu-icons/file-earmark.svg);
}

[class*=sidebar-dark-] .nav-sidebar>.nav-item>.nav-link:active,
[class*=sidebar-dark-] .sidebar a {
    color: #fff;
}

[class*=sidebar-dark-] .nav-treeview>.nav-item>.nav-link {
    color: #fff;
}

.brand-link .brand-image {
    filter: brightness(0) invert(1);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: -4px;
}

.footer-logos {
    text-align: center;
}

.footer-logos img {
    height: 42px;
    margin-right: 10px;
    margin-left: 10px;
}

.footer-disclaimer {
    line-height: normal;
    padding-top: 2px;
}

.footer-disclaimer span {
    font-size: 10px;
    line-height: 11px;
}

.content-header .m-0 {
    text-align: left;
    margin-bottom: 12px !important;
    margin-top: 7px !important;
    position: relative;
    font-weight: normal;
}

.content-header .m-0:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    border: 1px solid #1597E5;
    display: block;
    background-color: #1597E5;
    margin-top: 5px;
    left: 0;
    transform: translate(0%);
    border-radius: 4px;
}

.counter-value {
    opacity: 0;
}

td .select2-container {
    margin-bottom: 8px;
}

select:disabled,
textarea:disabled {
    background-color: #e9ecef;
    opacity: 1;
    color: #495057;
}

.delivery-table {
    height: 500px;
    overflow-y: scroll;
    overflow-x: scroll;
    display: block;
}


/* .table-wrap {
    max-height: 150px;
    overflow-y: scroll;
} */

.custom-scroll::-webkit-scrollbar {
    width: 5px;
}

.custom-scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #ccc;
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #1597E5;
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #1d81be;
}

.button-default {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: #fff;
    content: 'Преземи ексел';
}

.no-input-group {
    margin-bottom: 12px;
}

.table thead th {
    vertical-align: middle;
    border: 0;
    background: #f5f5f5;
    color: #212529;
}

.table td,
.table th {
    border-top: 0;
    border-bottom: 1px solid #f3f3f3;
}

label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 500;
}

#contract-specification .ew-grid .ew-table td.ew-table-last-row,
#contract-specification .ew-grid .ew-table>tbody:last-child>tr:last-child>td,
.ew-grid .ew-table>tfoot>tr:last-child>td {
    background: #fff;
    border-right: 0;
}

#contract-specification .ew-grid .ew-table>thead>tr>td,
.ew-grid .ew-table>thead>tr>th {
    border-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #32b54b;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    font-size: 13px;
}

.ew-grid .ew-table td.ew-table-last-row,
.ew-grid .ew-table>tbody:last-child>tr:last-child>td,
.ew-grid .ew-table>tfoot>tr:last-child>td {
    border-bottom: 1px solid #ebe9f1;
}

.dropdown-menu .text-nowrap.p-3 {
    display: none;
}

.ew-select,
.select2-container {
    width: 100% !important;
}

#el1_tochki_javni_nabavki_tocka_tip input,
#el1_tochki_javni_nabavki_predmet_dogovor input {
    min-width: 200px;
}


/* ::-webkit-scrollbar:horizontal {
    width: 5px !important;
    height: 5px !important;
}
table::-webkit-scrollbar-thumb {
    background: #1597E5 !important;
    border-radius: 10px;
}
table::-webkit-scrollbar-thumb:hover {
    background: #1d81be;
} */

td .input-group.date {
    margin-bottom: 8px;
}

.ew-search-operator,
.ew-search-operator2 {
    display: none;
}

.plus-icon-item {
    margin-left: 0px !important;
    margin-top: 0px;
}

.specifications-content .plus-icon-item {
    right: 0px;
    top: -10px;
    font-size: 21px;
    padding-top: 4px;
    margin-left: 0px !important;
}

.modal .form-group {
    margin-bottom: 10px;
}

.modal-form .modal-header,
.modal-form .modal-body,
.modal-form .modal-footer {
    padding-left: 30px;
    padding-right: 30px;
}

.artikl-title-input {
    padding-left: 0 !important;
}

.artikl-increment {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.nav-link {
    padding: 0.5rem 0.5rem;
}

.panel-buttons {
    font-size: 16px;
    -webkit-text-stroke: 0.5px;
}

.btn-default {
    border-color: #ccc !important;
}

.bi-semi-bold {
    -webkit-text-stroke: 0.5px;
}

.bi-bold {
    -webkit-text-stroke: 1.2px;
}

.top-panel-icons {
    font-size: 20px;
    line-height: 1;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

table input[type=number] {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    width: 100%;
}

.tooltip-inner {
    background-color: #31b54b !important;
    opacity: 1 !important;
}

/* .tooltip.bs-tooltip-right .arrow:before, .tooltip.bs-tooltip-left .arrow:before, .tooltip.bs-tooltip-bottom .arrow:before, .tooltip.bs-tooltip-top .arrow:before {
    border-right-color: #E38B29 !important;
} */
.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
    border-top-color: #31b54b;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #31b54b;
}

.tooltip.show {
    opacity: 1;
}

.fix-submit-form-buttons {
    padding: 10px 0px 10px 10px;
    position: fixed;
    bottom: 0;
    right: 28px;
    width: 100%;
    background: white;
    z-index: 10;
    margin-bottom: 0;
    border-top: 1px solid #ddd;
}

.toast .close {
    font-weight: normal;
    font-size: 28px;
    margin-bottom: 0px !important;
}

.toasts-top-right {
    border: 0;
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
    ;
}

.toast.bg-danger {
    background-color: rgb(220, 53, 69) !important;
}

.toast.bg-success .toast-header {
    background-color: #31b54b;
}

.toast-body {
    border-bottom-left-radius: calc(0.25rem - 1px);
    border-bottom-right-radius: calc(0.25rem - 1px);
    border: 0;
}

.form-section-divider {
    padding-top: 15px;
    border-bottom: 1px solid;
    border-color: #ddd;
    margin-bottom: 15px;
}

.form-section-divider label {
    margin-bottom: 0.2rem;
}

.form-section-divider h2 {
    margin-bottom: 15px;
    font-size: 16px;
    margin-left: 8px;
    color: #1597E5;
}

.right-danger {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    display: block;
}

.collapse-del {
    position: absolute;
    right: 10px;
    top: 5px;
    color: #fff;
    font-size: 20px;
}

.toast-header {
    padding-left: 55px;
    border: 0 !important;
    position: relative;
    padding-top: 15px;
}

.toast-body {
    padding-left: 55px;
    padding-top: 0;
    padding-bottom: 14px;
}

.toast.bg-success {
    background-color: #31B54B !important;
}

.toast-header::before {
    position: absolute;
    top: 8px;
    left: 17px;
    font-size: 23px;
    font-family: 'bootstrap-icons';
}

.toast.bg-danger .toast-header::before {
    content: "\F332";
}

.toast.bg-success .toast-header::before {
    content: "\F26A";
}

.toast.bg-warning .toast-header::before {
    content: "\F332";
}

.ml-2.mb-1.close {
    color: white;
    text-shadow: 0 0 black;
    opacity: 1;
    position: absolute;
    top: 9px;
    right: 12px;
    font-weight: 300;
}

.custom-control-label::after,
.custom-control-label::before {
    border-radius: 100% !important;

}

.icon-expand {
    color: #1597E5;
    padding-top: 6px;
}

.toast.bg-warning {
    display: none;
}

.select2-container--bootstrap4 .select2-selection__clear {
    padding-top: 0.1em;
    background-color: #1597E5;
    margin-right: 0;
    margin-left: 0.3em;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: -2px;
    border: 0 !important;
    padding: 0 4px;
    position: absolute;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding-left: 11px;
}

#contracts-expiring-chart {
    height: 600px;
}

.initial-hide {
    display: none !important;
}

/* .required+.col-md-5 input,
.required+.col-md-5 select,
.required+.col-md-5 textarea {
    border-color: rgba(220, 53, 69, 0.2);
}

.required input,
.required select,
.required textarea {
    border-color: rgba(220, 53, 69, 0.2);
} */

.multi-column-form-section label:not(.form-check-label):not(.custom-file-label) {
    padding: 0;
}

.form-group-one {
    margin-bottom: 20px;
    padding: 0 7px;
}

#multi-annual-values {
    margin-top: 23px;
}

.form-section-divider .form-group {
    margin-bottom: 5px;
}

.multi-column-form-section .required:after {
    top: 3px;
    left: 4px;
}

.user-dropdown {
    min-width: 240px;
    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 2%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 2%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    -webkit-box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 2%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 2%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    -moz-box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 2%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 2%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    border: 0;
}

.user-img-wrap {
    padding: 20px 0 20px 0;
}

.user-img-wrap img {
    width: 60px;
}

.user-img-wrap h3 {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 4px;
}

.user-img-wrap h4 {
    font-size: 12px;
    font-weight: normal;
    color: grey;
    margin-bottom: 0;
}

.user-options {
    padding: 15px;
}

.user-options .icon-right {
    margin-right: 8px;
}

.user-options a {
    display: block;
    margin: 10px 0;
    color: #000;
}

.user-options a:hover {
    color: grey;
}

#user-help-dropdown {
    min-width: 180px;
}

#user-help-dropdown .user-img-wrap {
    padding: 10px 0 10px 15px;
}

#user-help-dropdown .user-options {
    padding: 5px 15px;
}

.navbar-expand .navbar-nav .nav-link {
    padding-left: 0.7rem;
}

.add-item {
    font-size: 14px;
    vertical-align: middle;
    display: inline-flex;
    padding-bottom: 4px;
}

.custom-checkbox .custom-control-label::before {
    box-shadow: none;
    background: #fff;
}

.login-right .ew-login-box {
    width: 70%;
}

.ew-change-pwd-box .card {
    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 2%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 2%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    -webkit-box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 2%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 2%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    -moz-box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 2%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 2%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    border: 1px solid #f5f5f5;
}

.copy-delete-del {
    position: absolute;
    top: -8px;
    right: 8px;
}

.ew-table-row input:disabled {
    background: #ddd;
}

.specifications-content h3 {
    font-size: 16px;
}

.rotate {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
.disable-a {
    pointer-events:none;
    background-color: #4e9ac8;
    border-color:#4e9ac8;
}


/* qq Media-views */

@media only screen and (max-width: 1440px) {
    label:not(.form-check-label):not(.custom-file-label) {
        display: block;
    }

    .ew-row .ew-cell {
        display: block;
    }

    .footer-logos img {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 1280px) {
    .ew-login-box {
        padding: 0px;
    }
}

@media only screen and (max-width: 991px) {
    #login-left-wrap {
        display: none;
    }

    #login-right-wrap {
        min-width: 100%;
    }

    .login-box-title {
        display: block;
        text-transform: uppercase;
    }

    .ew-login-box {
        width: 480px;
    }
}

@media only screen and (max-width: 768px) {
    .ew-row {
        display: block !important;
    }

    .form-section-content {
        overflow-x: scroll;
    }

    #submit-form-buttons .btn {
        display: block;
        margin-bottom: 20px;
        width: 100%;
    }

    .fix-submit-form-buttons {
        padding: 10px 45px 10px 45px;
        right: 0 !important;
    }

}

@media only screen and (max-width: 576px) {
    .footer-logos img {
        margin-bottom: 10px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-sidebar .nav-item {
        text-align: left;
    }

    .login-right .ew-login-box {
        padding: 0px 15px;
        width: 100%;
    }

    .login-right .card {
        padding: 15px;
    }

    .login-box-msg,
    .register-box-msg {
        padding: 0 0 20px 0;
    }
}

@media (min-width: 576px) {

    /* .ew-grid {
        min-width: 100%;
    } */
    .form-control:not(textarea) {
        width: 100%;
    }
}

.selectOptionPopup {
    width: 100%;
    max-height: 200px;
    position: absolute;
    margin-top: -28px;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffffff;
    padding: 5px 3px;
    z-index: 1000000;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
}

.selectOptionPopup span {
    width: 100%;
    display: block;
    cursor: pointer;
    padding: 5px 4px;
    line-height: 15px;
    font-size: 12px;
}

.selectOptionPopup span:hover {
    background: #1597E5;
    color: #ffffff;
}

input.artiklStavka {
    cursor: pointer;
    /* width: 174px !important; */
}

.selectOptionPopup::-webkit-scrollbar {
    width: 6px;
    /* width of the entire scrollbar */
}

.selectOptionPopup::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
    /* color of the tracking area */
}

.selectOptionPopup::-webkit-scrollbar-thumb {
    background-color: #1597E5;
    /* color of the scroll thumb */
    border-radius: 10px;
    /* roundness of the scroll thumb */
    border: 1px solid #ffffff;
    /* creates padding around scroll thumb */
}

.ew-footer-text {
    display: inline-block;
    margin-right: 20px;
}

.donatorLogo {
    display: inline-block;
}

.donatorLogo img {
    height: 30px;
}

.form-inline table .form-control {
    width: 100%;
    min-width: 120px;
}

input[type=password]:not([size]),
input[type=text]:not([size]):not([name=pageno]):not(.cke_dialog_ui_input_text):not(.form-control-plaintext) {
    min-width: 120px;
}

.ew-btn:disabled {
    opacity: 0.7;
}