/* START Customer Specific CSS */


/* END Customer Specfic CSS */
@media screen and (max-width: 767px) {
    div.dt-buttons {
        width: auto !important;
    }
}

@media print {
    #toPrint {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }

    #modalPrintSvg {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
}

label {
    margin-right: 7px;
}

.label-amber {
    background-color: #ffbf00;
}

.label-red {
    background-color: #891522;
}

#rearranged-container {
    width: 100%;
    padding: 10px 10px 0 15px;
    margin: 0;
    background: #ffffff;
}

#box-body-fix {
    padding: 0;
}

.search-col {
    display: inline-block;
    margin-right: 15px;
}

.search-col-input {
    width: 20vw;
    min-width: 200px;
}

.select-2-force-full-width {
    width: 100% !important;
}

.form-group .select2-container {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
    display: table;
    table-layout: fixed;
}

.new-spinner {
    margin: auto;
    margin-top: 200px;
    width: 58px;
    height: 50px;
    animation: spin 2s linear infinite;
    background-image: url(../images/crosscheckX.png);
    background-repeat: no-repeat;
    background-position: center top;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}


.content {
    min-height: 0;
    padding: 0;
    margin: 0;
}

.last-content {
    padding-bottom: 15px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    margin-left: 0;
    padding: 0;
    border: 0;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
        border: 0;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        margin-left: 0;
        padding: 0;
        border: 0;
        border-radius: 2px;
    }

.pagination > li > a:hover, .pagination > li > span:hover {
    border: 1px solid black;
}

.btn-group, .btn-group-vertical {
    float: right;
}



@media print {
    html, body {
        margin: 0;
        padding: 0;
        border: 0;
    }

    #printable {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 14px;
    }

        #printable ~ * {
            display: none;
        }
}

.overlay-result {
    width: 100%;
    height: 100%;
}

.overlay-error {
    position: absolute;
    top: calc(50% - 8px);
    width: 100%;
    text-align: center;
    color: white
}

danger {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

warning {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

dangeranim {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    animation-name: danger-animation;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

@keyframes danger-animation {
    from {
        background-color: #CC004B;
    }

    to {
        background-color: darkred;
    }
}


warninganim {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    animation-name: warning-animation;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

@keyframes warning-animation {
    from {
        background-color: #E86000;
    }

    to {
        background-color: #F28700;
    }
}
