﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/*#headerLogo {
    background-image: url('../images/logo-allscripts.svg');
    width: 250px;
    height: 22px;
    margin: 0 2px 0 2px;
}*/

a#headerLogo {
    display: block;
    width: 140px;
    height: 40px;
    background-image: url('../images/veradigm-logo-2023-ALT.svg');
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    text-indent: 220px;
    white-space: nowrap;
    vertical-align: text-bottom;
}

.headerSiteName {
    color: white;
    font-weight: bold;
    padding-left: 10px;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-tabs .nav-link.active,
.nav-tabs .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-tabs .nav-link {
    border: 1px solid #1861ac;
    color: #1b6ec2;
    background-color: transparent;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
    transition: 0.2s;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

.containedform {
    margin-bottom:40px;
}

.mainheader {
    background-color: #0C203D;
}
    .header a {
        color: #446e91;
    }
        .header a:hover {
            color: #f2704c;
        }

.subheader {
    background-color: #e6e6e6;
}

.allscriptsgreen {
    color: #73C92D;
}

.bold {
    font-weight: bold;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
    background-color: #0C203D;
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

    .footer a {
        color: #446e91;
    }

        .footer a:hover {
            color: #f2704c;
        }

.badge-small {
    display: inline-block;
    padding: 0.32em 0.9em;
    font-size: 55%;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .badge-small {
        transition: none;
    }
}
/* Table styles-------------------------------------------------- */
.table-fixed {        
    width: 100%;
    table-layout: fixed;
    overflow-wrap: break-word;
}

.table-v2-scopes {
    display: table !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    table-layout: auto;
    min-width: 1250px;
}

.word-wrap {
    word-break: break-all;
    hyphens: auto;
    display: block;
    -ms-hyphens: auto;
    -moz-hyphens: auto
}

.longtext-wrap {
    word-break: break-all;
}

.scope-item {
    display: flex;
    align-items: center;
    gap: 5px; /* reduce horizontal space between checkbox & label */
    margin-bottom: 2px;
    flex-wrap: wrap;
}

.scope-item.granular-scope {
    margin-left: 15px;
}
.scope-label {
    white-space: normal;
    vertical-align: middle;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: inline;
    max-width: 100%;
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    animation: spin 1s linear infinite;
}
 
@keyframes spin {
    0% { 
        transform: rotate(0deg);

    }
    100% {
        transform: rotate(360deg);
    }
}