/* Header */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

@media (max-width: 768px) {	
    .header {
        position: static;
    }
}

/* Content, Subcontent and ContentBox */

.loading-bar {
    height: 6px;
    line-height: 2 !important;
    --base-color: transparent !important;
    top: -14px;
}

.content {
    height: 100%;
    position: absolute;
    display: table;
}

.subcontent {
    display: table-cell;
    vertical-align: middle;
}

.content-box {
    background-color: #FFF;
    border: 1px solid #dee2e6;
}

@media (max-width: 768px) {	
    .content {
        height: auto;
        position: static;
        display: block;
    }

    .subcontent {
        display: block;
    }

    .content-box {
        border: 0px;
    }
}

/* User footer */
.user-footer {
    background-color: #eee;
    border: 1px solid #dee2e6;
    border-top: 0px !important;
}

@media (max-width: 768px) {	
    .user-footer {
        background-color: transparent !important;
        border: 0px;
        text-align: center !important;
    }
}

/* Footer */
.footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

@media (max-width: 768px) {	
    .footer {
        /* This is really not needed, this class is a placeholder for future use */
        position: fixed; 
    }
}

/* Admin dialog */
.admin-modal .modal-dialog
{
    max-width: 97%;
    margin-left: 2%;
}

.admin-modal .modal-content
{
    position: static;
}

.admin-modal .modal-close
{
    position: absolute;
    right: -15px;
    top: -15px;
    cursor: pointer;
}

/* Image Uploader */
.image-uploader .dzu-previewContainer
{
    display: none;
}

/* Overrides for portal.css */
@media (max-width: 768px) {	
	.navbar {
	    padding-left: 0rem !important;
	}
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: inherit;
}

.mfa-container {
    padding-bottom: 15px;
    padding-top: 7px;
    text-align: center;
}
  
.mfa-input {
    width: 45px;
    height: 45px;
    padding: 0;
    font-size: 24px;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    text-transform: uppercase;
    color: #494949;
    font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: #fff;
    background-clip: padding-box;
  }