/* Miligram overrides */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
}
#header {
    background-color: #0B0D2A;
}
.top-nav-links,
.side-nav,
h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    color: #363637;
}

a {
    color:#2f85ae;
    -webkit-transition:all 0.2s linear;
    transition:all 0.2s linear;
}

a:hover,
a:focus,
a:active  {
    color:#2a6496;
    -webkit-transition:all 0.2s easeout;
    transition:all 0.2s ease-out;
}

.side-nav a,
.top-nav-links a,
th a,
.actions a {
    color: #606c76;
}

.side-nav a:hover,
.side-nav a:focus,
.actions a:hover,
.actions a:focus {
    color:#2f85ae;
}

/* Utility */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Main */
body {
    background: #f5f7fa;
}
.content {
    padding: 2rem;
    background: #ffffff;
    border-radius: 0.4rem;
    /* Thanks Stripe */
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
        0 3px 6px 0 rgba(0, 0, 0, 0.07);
}
.actions a {
    font-weight: bold;
    padding: 0 0.4rem;
}
th {
    white-space: nowrap;
}

/* Nav bar */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 112rem;
    padding: 2rem;
    margin: 0 auto 2rem;
}
.top-nav-title a {
    font-size: 2.4rem;
    color: #d33c43;
}
.top-nav-title span {
    color: #404041;
}
.top-nav-links a {
    margin: 0 0.5rem;
}
.top-nav-title a,
.top-nav-links a {
    font-weight: bold;
}

.side-nav-item {
    display: block;
    padding: 0.5rem 0;
}

/* View action */
.view.content .text {
    margin-top: 1.2rem;
}
.related {
    margin-top: 2rem;
}

/* Flash messages */
.message {
    padding: 1rem;

    background: #eff8ff;
    color: #2779bd;

    border-color: #6cb2eb;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    margin-bottom: 2rem;
}
.message.hidden {
    display: none;
}
.message.success {
    background: #e3fcec;
    color: #1f9d55;
    border-color: #51d88a;
}
.message.warning {
    background: #fffabc;
    color: #8d7b00;
    border-color: #d3b800;
}
.message.error {
    background: #fcebea;
    color: #cc1f1a;
    border-color: #ef5753;
}

/* Forms */
.input.radio,
.input.checkbox {
    margin-bottom: 2.0rem;
}
.input.radio input,
.input.checkbox input {
    margin: 0;
}
.input.radio label,
.input.checkbox label {
    margin: 0;
    display: flex;
    align-items: center;
}
.input.radio label > input,
.input.checkbox label > input {
    margin-right: 1.0rem;
}
/*
.input.radio label:first-of-type {
    margin-bottom: 2.0rem;
}
*/
/* Paginator */
.paginator {
    text-align: right;
}
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.pagination li {
    margin: 0 0.5rem;
}
.prev.disabled a,
.next.disabled a {
    cursor: not-allowed;
    color: #606c76;
}
.asc:after {
    content: " \2193";
}
.desc:after {
    content: " \2191";
}

/* Error */
.error-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

@media screen and (max-width: 640px) {
    .top-nav {
        margin: 0 auto;
    }
    .side-nav {
        margin-bottom: 1rem;
    }
    .heading {
        margin-bottom: 1rem;
    }
    .side-nav-item {
        display: inline;
        margin: 0 1.5rem 0 0;
    }
    .asc:after {
        content: " \2192";
    }
    .desc:after {
        content: " \2190";
    }
}
button, button, input[type='button'], input[type='reset'], input[type='submit'] {
    background-color: #1f5c66;
    border: 0.1rem solid #1f5c66;
    border-radius: 0.4rem;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    
    letter-spacing: .1rem;
    line-height: 3.8rem;
    padding: 0 3rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}  

.button {
    
    border: 1px solid #1f5c66;
    background-color: #1f5c66;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.container {
    margin: 0 auto;
    max-width: 95%;
    padding: 2rem 2rem;
    position: relative;
    width: 100%;
}
@media (min-width: 1400px)
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 95%;
}


/* Nav */


header {
    text-align: center;
    width: 100%;
    z-index: 999;
    padding: .4rem;
   /* position: fixed;*/
    background: #f4f5f6;
    border-bottom: 0.1rem solid #d1d1d1;
  }
  
  header input.menu-toggle {
    display: none;
  }
  
  nav {
    position: absolute;
    text-align: center;
    top: 100%;
    left: 0;
    background-color: #f4f5f6;
    width: 100%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transition: -webkit-transform 400ms ease-in-out;
    transition: -webkit-transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  
  nav ul {
    margin: 0;
    margin-top: 14%;
    padding: 0;
    height: 90vh;
  }
  
  nav li {
    margin-left: 1rem;
    height: 10%;
    list-style: none;
  }
  
  nav a { 
    opacity: 0;
    color:#fff;
    
  }
  
  nav a:hover { 
    color:#A9A9A9;
  }
  .nav-heading {
    font-size: 3rem;
  }
  
  .menu-toggle:checked ~ nav {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  
  .menu-toggle:checked ~ nav a {
    opacity: 1;
    -webkit-transition: opacity 200ms ease-in 100ms;
    transition: opacity 200ms ease-in 100ms;
  }
  
  .menu-nav-toggle {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 2rem;
  }
  
  .menu-nav-toggle:hover, .menu-nav-toggle:focus {
    cursor: pointer;
  }
  
  .menu-nav-toggle span, .menu-nav-toggle span:before, .menu-nav-toggle span:after {
    display: block;
    background: #333;
    width: 2rem;
    border-radius: 0.125rem;
    position: relative;
    height: 0.25rem;
  }
  
  .menu-nav-toggle span:before, .menu-nav-toggle span:after {
    content: '';
    position: absolute;
  }
  
  .menu-nav-toggle span:before {
    top: 0.8rem;
  }
  
  .menu-nav-toggle span:after {
    bottom: 0.8rem;
  }
  
  @media screen and (min-width: 50rem) {
    .menu-nav-toggle {
      display: none;
    }
    header {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr auto minmax(37.5rem, 3fr) 1fr;
          grid-template-columns: 1fr auto minmax(37.5rem, 3fr) 1fr;
    }
    .nav-brand {
        padding: 10px;
      -ms-grid-column: 2;
      -ms-grid-column-span: 1;
      grid-column: 1;
      
    }
    nav {
      all: unset;
      -ms-grid-column: 3;
      -ms-grid-column-span: 1;
      grid-column: 3/4;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              /* justify-content: flex-end; */
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
    nav ul {
      margin-top: 0;
      
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100px;
    }
    nav li {
      margin-bottom: 0;
      margin-left: 2rem;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: auto;
    }
    nav li {
      margin-bottom: 0;
      margin-left: 2rem;
    }
    nav a {
      opacity: 1;
    }
  }

  /* Button Custom size */
.button-small {
    font-size: .8rem;
    height: 2.8rem;
    line-height: 2.8rem;
    padding: 0 1.5rem;
  }
  
  .button-large {
    font-size: 1.4rem;
    height: 4.5rem;
    line-height: 4.5rem;
    padding: 0 2rem;
  }

  /* Button Custom color */
.button-theme {
    background-color: #1f5c66;
    border-color: #1f5c66;
  }
  .button-theme.button-clear,
  .button-theme.button-outline {
    background-color: transparent;
    color:#1f5c66;
  }
  .button-theme.button-clear {
    border-color: transparent;
  }
  

  .evidenceExplorerResults, .evidenceExplorers {
    margin-bottom:30px;
  }


  .form-signin {
    max-width: 330px;
    padding: 15px;
}
/* table top border rounded */
th:first-child {
    border-bottom-left-radius: 0.5rem !important;
    border-top-left-radius: 0.5rem !important;
}
th:last-child  {
    border-bottom-right-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}

/** Paging **/
.paging {
	background:#fff;
	color: #ccc;
	margin-top: 1em;
	clear:both;
}
.paging .current,
.paging .disabled,
.paging a {
	text-decoration: none;
	padding: 5px 8px;
	display: inline-block
}
.paging > span {
	display: inline-block;
	border: 1px solid #ccc;
	border-left: 0;
}
.paging > span:hover {
	background: #efefef;
}
.paging .prev {
	border-left: 1px solid #ccc;
	-moz-border-radius: 4px 0 0 4px;
	-webkit-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
}
.paging .next {
	-moz-border-radius: 0 4px 4px 0;
	-webkit-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}
.paging .disabled {
	color: #ddd;
}
.paging .disabled:hover {
	background: transparent;
}
.paging .current {
	background: #efefef;
	color: #c73e14;
}

.tiny{
    font-size:0.60em;
}

