html {
    height: 100%;
}
body {
    background-image: url("images/background.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#logo-img {
    height: 40px;
}

.navbar-header.navbar-right.pull-right {
    margin-right: 15px;
}

.navbar-right > li {
    float: left;
}

.small-dropzone {
    min-height: 100px;    
}

.report .center {
    text-align: center
}

.report .right {
    text-align: right
}

.report-table {
    padding: 4px;
}

    .report-table > tbody > tr > th {
        border: 1px solid #999;
    }

.report-table-Header2 {
    background-color: #CCC;
}

.report-table-Footer1 {
    background-color: #BBB;
}

.report-table-Footer2 {
    background-color: #CCC;
}

.report-table-Detaliu1 {
    background-color: #CCC;
}

.report-table-Detaliu2 {
}

.report-table-DetaliuBold{
    background-color: #CCC;
    font-weight: bold; 
}

.report-table-DetaliuBold2 {
    font-weight: bold;
}

.report-table-Detaliu3 {
}

#viewDocumentDiv span {
    white-space: nowrap;
    overflow: hidden;
}



.approve-reject-div {
    max-height: 625px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.table-cap td input {
    border: none;
    width: 100%;
    background-color: transparent;
    text-align: right;
}

.table-cap .header-table {
    padding: 5px !important;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}

.table-cap .table-cap-cell-disabled {
    background-color: whitesmoke;
}

.document-denum-doc {
    width: 80px
}

.document-data-doc {
    width: 80px
}

.document-data-file-name {
    min-width: 100px
}
.dtDate > label > span {
    float: left;
    margin: .5rem .83333rem;    
}
.dtDate input {
    outline: 0;
    width: 12.5rem;
    padding: .4375rem .875rem;
    padding-right: 2rem;
    font-size: .8125rem;
    line-height: 1.5385;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: .1875rem;
}
.column_search {
    display: block;
    width: 100%;
    height: 2.25003rem;
    padding: .4375rem .875rem;
    font-size: .8125rem;
    line-height: 1.5385;
    color: #333;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ddd;
    border-radius: .1875rem;
    box-shadow: 0 0 0 0 transparent;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


col-md-5th {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}

.col-md-5th {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}


.datatable-footer > div:first-child {
    margin-left: 20px;
}

div.datatable-scroll-wrap {
    overflow-x:auto;
}


/*//style1*/
/*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}*/


/*//style2*/
/*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #0ae;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.5, transparent), to(transparent));
}*/


/*//style3*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #26A69A;
}


.dataTables_length {
    margin-right: 20px;
}

.c-hover:hover {
    /*-webkit-box-shadow: inset 0 0 10px #b5b5b5;
    -moz-box-shadow: inset 0 0 10px #b5b5b5;
    box-shadow: inset 0 0 10px #b5b5b5;*/
    filter: brightness(120%);
}

.b-hover:hover {
    /*-webkit-box-shadow: inset 0 0 10px #b5b5b5;
    -moz-box-shadow: inset 0 0 10px #b5b5b5;
    box-shadow: inset 0 0 10px #b5b5b5;*/
    filter: brightness(98%);
}

.shake:hover {
    animation: shake 75ms infinite;
    animation-timing-function: linear;
}

@keyframes shake {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }

    100% {
        transform: scale(1);
    }
}

.zoom:hover {
    transform: scale(1.1);
    transition: all ease 500ms;
}


.shrink:hover {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.text-custom-400 {
    color: #046e64;
}

/* Icon Drop */
@-webkit-keyframes hvr-icon-drop {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    51%, 100% {
        opacity: 1;
    }
}

@keyframes hvr-icon-drop {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    51%, 100% {
        opacity: 1;
    }
}
/* Icon Drop */
.hvr-icon-drop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

    .hvr-icon-drop .hvr-icon {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .hvr-icon-drop:hover .hvr-icon, .hvr-icon-drop:focus .hvr-icon, .hvr-icon-drop:active .hvr-icon {
        opacity: 0;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-animation-name: hvr-icon-drop;
        animation-name: hvr-icon-drop;
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
        animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    }




/* Underline Reveal */
.hvr-underline-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

    .hvr-underline-reveal:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: 0;
        right: 0;
        bottom: 0;
        background: #2098D1;
        height: 4px;
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }



