﻿/* custom css*/
.text-danger {
    color: #dc3545;
}


.align-center {
    align-items: center;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #6c757d !important;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #6c757d !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #6c757d !important;
}

/* Style navbar */
.navbar {
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
    background: rgba(0, 0, 0, .05);
}

.nav-link {
    margin-left: 15pt;
    margin-right: 15pt;
    font-size: 1.3em;
}

/* custom styles */
.paging-selector {
    width: 220px;
}

.page-item.active .page-link {
    background-color: #000000;
    color: #fff;
    border-color: #007bff;
}

.page-link {
    color: #000000;
}

li.nav-item a:hover {
    background-color: #ededed !important;
    border-radius: 5px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #ededed;
}

.padding-l-r-0 {
    padding-left: 0px;
    padding-right: 0px
}

.padding-l-r-t-0-b3 {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 1rem
}

.badge-custom {
    display: inline-block;
    padding: 0.35em 0.7em;
    font-size: 80%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    color: #fff;
}

.badge-custom-2 {
    display: inline-block;
    padding: 0.0em 0.25em;
    font-weight: 700;
    line-height: 0.8;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.0rem;
}

.badge-custom-normal {
    color: #fff;
    background-color: #c9ccd0;
}

.bg-custom-normal {
    background-color: #c9ccd0 !important;
}

.custom-button-width {
    min-width: 150px;
}

.custom-hr {
    height: 2px;
    border-width: 0;
    color: darkgray;
    background-color: darkgray;
}

/* spinner */
.spinner-border {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0px 0px -50px;
    height: 4rem;
    width: 4rem;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.custom-dropdown {
    z-index: 1000000; /* to show before footer */
}
.custom-dropdown-item {
    display: block;
    padding: .25rem 0.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    background-color: transparent;
    border: 0;
}

/* footer styles */
html {
    height: 100%;
}

body {
    height: 100%;

}

main {
    padding-bottom: 40px;
}

.row{
    margin-right: 0px !important;
}

footer {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 20px; /* Vertically center the text there */
    background-color: dimgray;
}

/* spinner */
.spinner-border {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0px 0px -50px;
    height: 6rem;
    width: 6rem;
}



