/*
    Header
*/

.navbarContainer {
    background-color: #324252;
    height: 100px;
    position: relative;
}

.titleContainer {
    width: 100%;
    height: 100%;
    justify-content: center;
    position: absolute;
}

.logo {
    background-color: white;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-height: 75px;
}

@media only screen and (max-width: 900px) {
    .titleContainer {
        width: auto;
        height: auto;
        position: unset;
    }
}

@media only screen and (max-width: 500px) {
    .titleContainer {
        width: 100%;
    }

    .logo {
        display: none;
    }

    .navbarColor {
        justify-content: center;
    }
}

/*
    Body
*/

body {
    background-color: #f4f7f8;
}

.shadow {
    -webkit-box-shadow: 3px 3px 5px 6px #ccc; /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 3px 3px 5px 6px #ccc; /* Firefox 3.5 - 3.6 */
    box-shadow: 3px 3px 5px 6px #ccc; /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

.border-radius {
    border-radius: 25px;
}

.max-width-500 {
    max-width: 500px;
}

.containerWidth {
    width: 90%;
}
@media only screen and (max-width: 1000px) {
    .containerWidth {
        width: 100%;
    }
}

/* 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;
}

/*
    Auto Complete
*/

.ui-autocomplete {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}

/*
    BootStrap Table
*/
.table .thead-custom th {
    color: white;
    background-color: #2F4E6F;
    font-weight: bold;
}

.header-width {
    width: 80px !important;
}

@media (min-width: 768px) {
    .header-width {
        width: 150px !important;
    }
}


/*
    Table
*/

.td-right{
    text-align: right;
    padding-right: 2.5rem!important;
}
@media (max-width: 700px) {
    .td-right {
        padding-right: 0.5rem !important;
    }
}

.td-text-right > tr > td {
    text-align: right;
    padding-right: 1rem!important;
}


.row-space {
    height: 50px;
    vertical-align: bottom;
    border-bottom: double;
}

.table-header {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
    white-space: nowrap !important;
}

@media (max-width: 900px) {
    .table-header {
        white-space: normal !important;
        text-align: center;
    }
}