body {
    font-family: 'Carlito', sans-serif;
    letter-spacing: 1px;
    color: var(--font-color);
    background: #FFF;
    font-weight: 100;
}

.bi {
    display:inline;
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    fill: currentcolor;
}

.bi::before {
    vertical-align: 0;
}

a {
    color:inherit;
    text-decoration: inherit;
}

.center-center {
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
    overflow-y:auto;
    overflow-x:hidden;
}

#main-rhino svg {
    max-height:200px;
}

.nqv-w500 {
    min-width:500px;
}

.nqv-mw500 {
    max-width:500px;
}

.nqv-mw750 {
    max-width:750px;
}

.nqv-mw1250 {
    max-width:1250px;
}

.list-title {
    text-transform:uppercase;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.list-title .separator {
    font-size: 2.1rem;
    font-weight: lighter;
}

.list-title .title {
    font-size: 1.8rem;
    font-weight:bold;
}

.list-title .title a {
    text-decoration:inherit;
    color:inherit;
}

.list-title .subtitle {
    font-size: 1.3rem;
}

.disc-space {
    font-size: .7rem;
}

.list-title .button-new-item {
}

.list-title .button-new-item .btn{
    font-size: 20px;
    min-width:40px;
}

.modalized {
    cursor:pointer !important;
}

.nqv-search-form-container{
    flex:1;
    width: 100%;
}

#nqv-search-form {
    width: 750px;
    max-width:100%;
}

.table-container {
    height:100%;
    overflow:auto;
    margin-left: -2%;
    margin-right: -2%;
}

div.dt-container {
    width: 96%;
    margin: 0 auto;
}

label,
.label {
    margin-bottom:5px;
    text-transform:uppercase;
    font-size:.8rem;
    line-height:2rem;
    font-weight:bold;
}

label .required-mark {
    margin-left:10px;
    color:red;
}

.green {
    background-color: #090 !important;
}

.red {
    background-color: #900 !important;
}

.blue {
    background-color: #009 !important;
}

.yellow {
    background-color: rgb(247, 247, 5) !important;
}

.color-yellow {
    color: rgb(247, 247, 5) !important;
}

.color-green {
    color: #090 !important;
}

.action a {
    text-transform: uppercase;
    text-decoration: inherit;
    font-weight: bold;
    color: rgb(223, 223, 223);
    font-size: .8rem;
    display:inline-block;
    width:100px;
    height:30px;
    text-align:center;
    vertical-align:middle;
    line-height:28px;
}

#database-table .action-show a {
    background-color:rgb(17, 114, 49);
}

#database-table .action-edit a {
    background-color:rgb(17, 72, 114);
}

#database-table .action-delete a {
    background-color:rgb(119, 19, 19);
}

#database-table .action-edit a:hover {
    background-color:rgb(28, 106, 166);
}

#database-table .action-delete a:hover {
    background-color:rgb(171, 30, 30);
}

.alert:not(:last-of-type) {
    margin-bottom: 0 !important;
}

.main-image-field-container,
.main-image-field-container img {
    max-width:200px;
}

#banner-config .main-image-field-container,
#banner-config .main-image-field-container img {
    max-width:100%;
}

.modal-container {
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background: rgba(0,0,0,.8);
    z-index:100;
    display:none;
}

.nqv-modal-wrapper {
    position:relative;
    width:100vw;
    height:100vh;
    display:flex;
    justify-content: center;
    align-items: center;
}

.nqv-modal {
    background:white;
    border-radius:50px;
    border:4px solid black;
    width:90%;
    height:90%;
    max-width:1280px;
    overflow:hidden;
}

.nqv-modal .header {
    background:rgb(220, 220, 220);  
    height: 60px;
    width: 100%;
    position: relative;
    text-transform: uppercase;
    padding: 20px 50px;
    border-bottom: 4px solid #929292;
    display:flex;
    justify-content: space-between;
}

.nqv-modal .header .close {
    font-weight:bold;
    cursor:pointer;
}
.nqv-modal .body {
    width:100%;
    height:calc(100% - 60px);
    padding:20px;
}
.nqv-modal .footer {}



.btn.btn-default {
	border: 1px solid black;
}

.btn.btn-default:hover {
	background: var(--main-color);
	color:white;
}

.btn.nqv-hover-sucess:hover{
	background: var(--success-color) !important;
	border-color: var(--success-color) !important;
}

.btn.nqv-hover-danger:hover{
	background: var(--danger-color) !important;
	border-color: var(--danger-color) !important;
}

.btn {
    text-transform: uppercase;
    font-size:.8rem;
    line-height:2;
}

.btn-sm {
    font-size:.7rem;
}

.nqv-cursor-pointer {
    cursor: pointer !important;
}

#fileList .file-preview {
    position:relative;
}

#fileList .file-preview {
    padding:10px;
    border:rgb(159, 159, 159) 4px solid;
    border-radius:10px;
}

#fileList .file-preview:hover {
    border-color:#900;
}

#fileList .file-preview .delete-button {
    display:none;
}

#fileList .file-preview:hover .delete-button {
    color:white;
    font-weight:bold;
    background: #900;
    border-radius:50%;
    width:25px;
    height:25px;
    position:absolute;
    top:-13px;
    right:-13px;
    display:flex;
    justify-content: center;
    align-items: center;
    cursor:pointer;
}