html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.loader_frame {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(188, 188, 188, 0.97);
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #fff90b;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    display: none;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.big_loader {
    width: 200px;
    height: 200px;
    border-width: 30px;
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.small_loader {
    width: 50px;
    height: 50px;
    border-width: 5px;
    display: none;
    left: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.image_thumb {
    width: 80px;
    height: auto;
    border-radius: 15px;
}

.carrousel_image_big {
    width: 800px;
    height: 600px;
}

.big_logo_img {
    width: 250px;
    height: auto;
}

.red_border {
    border-color: red !important;
}

.form_input_error {
    color: red;
    font-size: 12px;
    margin-bottom: 0px;
}


.var_tabs {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: rgb(221, 221, 221);
    border-bottom-color: transparent;
    margin: 3px;
    padding: 3px;
}

.table_scrollable {
    overflow-y: auto;
    max-height: 70vh;
    overflow-x: auto;
}

    .table_scrollable thead th {
        position: sticky;
        top: 0;
        background-color: white;
        border: 1px solid #ddd;
    }

.table_scrollable_small {
    overflow-y: auto;
    height: 30vh;
    overflow-x: auto;
}

    .table_scrollable_small thead th {
        position: sticky;
        top: 0;
        background-color: white;
        border: 1px solid #ddd;
    }

.text_red {
    color: red;
}

.text_green {
    color: green;
}

.text_bold_marked {
    font-weight: bold;
}

.form_control_inline {
    display: inline;
    height: 34px;
    padding: 6px 12px;
    font-size: 11px;
    height: 25px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}


.thumbnail-card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    min-width: 25%;
    border-width: 1px;
    border-radius: 5px;
    min-height: 300px;
    height: 300px;
}

.thumbnail-description {
    min-height: 40px;
}

.thumbnail:hover {
    cursor: pointer;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 1);
}

.thumbnail .caption {
    padding: 0px;
    color: #333;
}

.panel-purple > .panel-heading {
    color: #fff;
    background-color: #8686bf;
    border-color: #7777af;
}

.btn-purple {
    color: #fff;
    background: #8686bf;
}

    .btn-purple:hover {
        color: #fff;
        background: #7777af;
    }

    .btn-purple:active {
        color: #fff;
        background: #56567e;
    }

.alert-purple {
    color: #33334c;
    background-color: #dbdbfa;
    border-color: #9c9ce6;
}

.oee-container {
    border-radius: 60px;
    border-color: transparent;
    background-color: #ccc;
    padding: 5px;
    margin: 5px;
}

.gray-box {
    border-radius: 5px;
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
}

.list-group-item-small {
    height: 30px;
    padding: 5px;
}

.tableFixHead {
    overflow-y: scroll;
    max-height: 70vh;
}

.tableFixHead thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: lightgrey;
}


.tableFixHeadSmall {
    overflow-y: scroll;
    max-height: 50vh;
}

.tableFixHeadSmall thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: lightgrey;
}
