html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.loaderbody {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    position: absolute;
    background-color: rgba(128,128,128,0.2);
    z-index: 2147483647;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 45%;
    left: 40%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide {
    display: none;
}

.disable {
    pointer-events: none;
    background: #dcdcdc;
}

a.glyphicon {
    cursor:pointer;
    text-decoration:none;
}

.order-status-added {
    color: green;
}

.order-status-veryfication {
    color: yellow;
}

.order-status-accepted {
    color: darkgreen;
}

.order-status-rejected {
    color: red;
}

.order-status-assigned {
    color: blue;
}

.order-status-inprogres {
    color: yellowgreen;
}

.order-status-presentation {
    color: green;
}

.order-status-clientaccepted {
    color: green;
}

.order-status-clientrejected {
    color: darkred;
}

.order-status-settled {
color:green;
}

.order-status-shared {
    color: green;
}

.orderarea-status-pending{
    color: darkorange
}

.orderarea-status-accepted {
    color: green
}

.orderarea-status-rejected {
    color: red
}

.dropdown-menu {
    min-width: 200px;
}

    .dropdown-menu.columns-2 {
        min-width: 400px;
    }

    .dropdown-menu.columns-3 {
        min-width: 600px;
    }

    .dropdown-menu li a {
        padding: 5px 15px;
        /*font-weight: 300;*/
    }

.multi-column-dropdown {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

    .multi-column-dropdown li a {
        display: block;
        clear: both;
        line-height: 1.428571429;
        color: #333;
        white-space: normal;
    }

        /*.multi-column-dropdown li a:hover {
            text-decoration: none;
            color: #262626;
            background-color: #999;
        }*/

@media (max-width: 767px) {
    .dropdown-menu.multi-column {
        min-width: 240px !important;
        overflow-x: hidden;
    }
}

.toggle-vis:link {
    display: inline-block;
    background-color: green;
    color: white;
    margin: 1px 1px 3px 1px;
    padding: 3px 4px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.toggle-vis:hover {
    background-color: green;
    text-decoration: none;
    cursor: pointer;
}

.toggle-vis:visited {
    background-color: green;
    color: white;
    cursor: pointer;
}

.toggle-vis:active {
    background-color: green;
    cursor: pointer;
}

.error {
    border: 2px solid red;
}

input:invalid {
    border: 2px solid red;
    animation: shake 0.2s 2;
}
@keyframes shake {
    25% {
        translate: 6px 0;
    }

    50% {
        translate: -6px 0;
    }

    25% {
        translate: 6px 0;
    }
}

.szukaj + .select2-container .select2-selection {
    height: 38px;
    border: 1px solid lightgrey;
}

.szukaj + .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: black;
    line-height: 34px;
}