@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* 
lightblue: b0d5f2
blue : 176fb7
darkblue : 00356a

lightgreen: cfe09a
green : 75b726
darkgreen : 2e721b 
*/

:root {
  --darkestblue: #062746;
  --darkblue: #00356a;
  --blue: #176fb7;
  --greyblue: #386181;
  --lightblue: #b0d5f2;
  --lightgreen: #cfe09a;
  --green: #75b726;
  --darkgreen: #2e721b;
  --red: #c81010;
  --yellow: #faa435;
}

.site {
    margin-top: 100px;
}

body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    background: #d1e0ea70;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

img {
    height: auto;
    max-width: 100%;
}

.site-header {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    align-items: center;
    background: white;
    gap: 15px;
    padding: 0 30px 0 10px;
    box-shadow: 0 10px 30px #00356a20;
}


h3, h4 {
    color: var(--blue)
}

.site-branding {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.site-branding h3 {
    font-size: 15px;
    color: var(--darkblue);
}

.site-branding img {
    width: 100px;
}

.site-header a:not(.btn) {
    color: var(--blue);
}
.site-header .btn {
    color: var(--darkblue);
    background-color: #38618138;
}

.site-main.container {
    margin-top: 50px;
}

.container {
    max-width: 1400px;
    width: auto;
    margin: 0 auto 400px;
    padding: 0 30px;
}

h1, h2, h3, h4 {
    line-height: 1;
    margin: 10px 0;
    font-weight: 600;
}

form#loginform {
 max-width: 600px;
 text-align: left;
}

form label {
    display: block;
    font-size: 13px;
    margin: 0 0 5px;
    color: var(--lightblue);
    text-transform: uppercase;
}

form .login-submit {
    margin-bottom: 10px;
}

form input.input {
    padding: 5px 10px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    border: 0;
    width: calc(100% - 20px);
}

form.reset-password input {
    padding: 10px 15px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    border: 0;
    box-shadow: 0 10px 30px #00356a20;
    border-radius: 25px;
    margin: 10px 0;
    display: block;
    width: calc(100% - 30px);
    max-width: 400px;
}

form input[type="submit"], .btn, button.btn {
    background: var(--green);
    color: white;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    border: 0;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
}

.btn, button.btn {
    background: var(--blue);
    border-radius: 25px;
}

.text-link {
    font-weight: bold;
    color: var(--blue);
    margin: 0 0 20px;
    display: inline-block;
    text-decoration: none;
    padding: 3px 0;
    border-bottom: 1px solid var(--blue);
}

.text-link i {
    font-size: 10px;
}

.download-link {
    background: white;
    padding: 15px 30px;
    margin: 20px 0;
    display: flex;
    text-decoration: none;
    align-items: center;
    border-radius: 9px;
    gap: 20px;
    color: #333;
    box-shadow: 0 10px 30px #00356a20;
    transition: all 0.25s ease-out;
}

.download-link:hover {
    box-shadow: 0 0 20px #00356a20;
}

.download-link div {
    flex: 1;
}

.download-link img {
    width: 35px;
}

.download-link h4 {
    margin: 0;
}

.download-link i {
    transition: all 0.25s ease-out;
    color: var(--lightblue);
}

.download-link:hover i {
    color: var(--darkblue);
}

.download-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.download-grid .download {
    padding: 30px;
    box-shadow: 0 10px 30px #00356a20;
    background: white;
    border-radius: 9px;
    flex: 1;
    min-width: 350px;
}

.download i {
    color: var(--lightblue);
    float: right;
    font-size: 60px;
}

.download__footer {
    display: flex;
    margin: 20px 0 0;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.download__footer p {
    flex: 1;
    text-align: right;
    margin: 0;
    color: #949494;
}

body.error404 {
    background: var(--blue);
}
.error-404 {
    height: calc(100vh - 150px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-404 h1 {
    font-size: 150px;
    color: var(--darkblue);
}

.error404 p {
    color: white;
    font-size: 25px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 10px 30px #00356a20;
    border-radius: 15px;
    overflow: hidden;
    min-height: 100px;
}

td {
    padding: 15px;
    text-align: left;
    word-break: break-all;
    border-bottom: 1px solid #ddd;
}

thead {
    height: 50px;
}

th {
    cursor: pointer;
    background: var(--lightblue);
    color: var(--blue);
    font-size: 17px;
}

td a {
    color: #00356a;
}

td.multiple {
    min-width: 200px;
}

td.dt-empty {
    padding: 20px;
    font-weight: bold;
    columns: var(--greyblue);
}

td a.url, td span.url {
    color: var(--greyblue);
    font-size: 13px;
}

td.risk {
    position: relative;
}

td.risk i {
    position: absolute;
    color: var(--blue);
    left: 35px;
    top: 13px;
}

td .risk svg path {
    stroke: #accde7;
}

td .risk.risk--0 svg path {
    stroke: var(--green);
}

td .risk.risk--1 svg path {
    stroke: var(--yellow);
}

td .risk.risk--2 svg path {
    stroke: var(--red);
}

.site-main div.dt-container .dt-search , .site-main div.dt-container .dt-info {
    color: #7798b1!important;
}

table.dataTable.stripe > tbody > tr:nth-child(odd) > *, table.dataTable.display > tbody > tr:nth-child(odd) > * {
    box-shadow: inset 0 0 0 9999px #eef0f1!important;
}

div.dt-container div.dt-layout-row {
    margin: 20px 0!important;
}

div.dt-container.dt-empty-footer tbody > tr:last-child > * {
    border-bottom: none!important;
}

.site-main div.dt-container .dt-search input {
    padding: 15px;
    margin-left: 10px;
    background-color: white;
}

.site-main div.dt-container select.dt-input {
    padding: 14px;
    background-color: white;
    margin-right: 10px;
}

body.logged-out .site {
    margin-top: 0;
}

body.logged-out .site-main.container{
    margin: 0;
    max-width: 100%;
    padding: 0;
}

body.logged-out .login {
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

body.logged-out .login-wrapper {
    background-color: #021222cc;
    width: 320px;
    padding: 15px;
    max-width: 100%;
    border-radius: 15px;
    text-align: center;
}

body.logged-out .login-wrapper img {
    width: 100%;
    max-width: 250px;
    margin: 20px 0 0;
}
body.logged-out .login-wrapper h2 {
    margin: 40px 0;
    color: var(--lightblue);
}

body.logged-out a.forgot-password {
    text-align: right;
    opacity: 0.5;
    display: block;
    font-size: 10px;
    color: white;
}

.grid-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.grid-overview a {
    flex: 0 0 200px;
    border-radius: 15px;
    overflow: hidden;
    line-height: 0;
}

.grid-overview .client-teaser {
    flex: 1;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px #00356a20;
}

@media only screen and (max-width: 1109px) {
    .grid-overview .client-teaser {
        min-width: 200px;
        max-width: 300px;
    }
}

@media only screen and (min-width: 1200px) {
    .grid-overview .client-teaser {
        flex: 0 0 calc(20% - 16px);
    }
}

.grid-overview .client-teaser img {
    border-bottom: 1px solid var(--lightblue);
}


.grid-overview .client-teaser .grid-overview {
    gap: 0;
}

.grid-overview .client-teaser .channel-teaser {
    box-shadow: none;
}

.grid-overview .client-teaser .channel-teaser a {
    flex-direction: row;
    align-items: center;
    padding: 10px;
    font-weight: normal;
    border-radius: 0;

    border-bottom: 1px solid var(--lightblue);
}

.grid-overview .client-teaser .channel-teaser a svg {
    width: 30px;
    height: 30px;
}

.grid-overview .client-teaser>div:first-of-type {
    padding: 0 10px;
}

.grid-overview .client-teaser>div:first-of-type p {
    color: var(--blue);
}

.grid-overview a img {
    height: auto;
    max-width: 100%;
}

.grid-overview .channel-teaser {
    flex: 1;
    min-width: 200px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px #00356a20;
}

.grid-overview .channel-teaser a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    line-height: 1;
}

.grid-overview .channel-teaser a svg {
    width: 60px;
    height: 60px;
}

.channel-teaser.channel-teaser--social-media svg {
    color: #3da5d6;
}

.channel-teaser.channel-teaser--global-media svg {
    color: #800080;
}

.channel-teaser.channel-teaser--domain-whois svg {
    color: var(--blue);
}

.channel-teaser.channel-teaser--exposed-services svg {
    color: #26b789;
}

.channel-teaser.channel-teaser--leaked-credentials svg {
    color: var(--red);
}

.channel-teaser.channel-teaser--stealers-leaks svg {
    color: #ff7a4e;
}

.channel-teaser.channel-teaser--dark-web svg {
    color: var(--darkgreen);
}

.channel-teaser.channel-teaser--settings svg {
    color: #71A1C2;
}

.list-overview {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px #00356a20;
}

.list-overview__item {
    border-bottom: 1px solid var(--lightblue);
}

.list-overview__item a, .list-overview__item span {
    padding: 10px;
    text-decoration: none;
    display: block;
    color: var(--darkblue);
}

.list-overview__item span {
    color: var(--red);
}

.header-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 20px 0 40px;
}

.header-title h1 {
    margin: 0 0 10px;
    color: var(--darkestblue);
}

.header-title div {
    flex: 1;
}

.header-title div.header-title__icon {
    flex: 0 1 auto;
}
.header-title__icon svg {
    width: 60px;
    height: 60px;
}

.header-title__icon--social-media svg {
    color: #3da5d6;
}

.header-title__icon--global-media svg {
    color: #800080;
}

.header-title__icon--domain-whois svg {
    color: var(--blue);
}

.header-title__icon--exposed-services svg {
    color: #26b789;
}

.header-title__icon--leaked-credentials svg {
    color: var(--red);
}

.header-title__icon--stealers-leaks svg {
    color: #ff7a4e;
}

.header-title__icon--dark-web svg {
    color: var(--darkgreen);
}

.header-title p {
    margin: 0;
    color: var(--greyblue);
}

.header-title img {
    width: 150px;
    box-shadow: 0 10px 30px #00356a20;
    border-radius: 15px;
    overflow: hidden;
}

.header-title .header-title__logo {
    flex: 0 1 auto;
}

.client-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}


@media only screen and (min-width: 1024px) {
    .client-overview {
        grid-template-columns: repeat(5, 1fr);
        /* grid-template-rows: repeat(3, auto); */
        height: calc(100vh - 350px);
    }
    .client-overview--large {
        grid-template-rows: repeat(3, auto);
    }
}

@media only screen and (min-width: 1024px) and (max-height: 800px) {
    .client-overview {
        height: auto;
    }
}

@media only screen and (min-width: 1200px) {
    .client-overview {
        gap: 30px;
    }
}

.client-overview>div {
    background: white;
    padding: 15px;
    box-shadow: 0 10px 30px #00356a20;
    border-radius: 15px;
    overflow: hidden;
}

.client-overview__main {
    grid-column: span 2;
    display: flex;
    flex-wrap: wrap;
    max-height: 400px;
    flex-direction: column;
    padding: 0!important;
}

@media only screen and (min-width: 640px) {
    .client-overview__main {
        grid-column: 1;
        grid-row: span 2;
        max-height: 500px;
    }
}

@media only screen and (min-width: 1024px) {
    .client-overview__main {
        max-height: 999px;
        grid-column: span 2;
    }
     .client-overview--large .client-overview__main {
       grid-row: span 3;
        height: calc(100vh - 350px);
    }
}

.client-overview__statistic {
    padding: 20px;
    border-bottom: 1px solid #96ACC250;
}

.client-overview__statistic h4 {
    font-size: 45px;
    margin: 0;
}
.client-overview__statistic p {
    font-size: 18px;
    margin: 0;
    font-weight: 300;
}

.client-overview__main h3 {
    color: var(--darkestblue);
    margin: 20px 20px 5px;
}

.client-overview__errors div {
    display: flex;
    gap: 15px;
}

.client-overview__errors>div {
    margin: 20px 20px;
}

.client-overview__errors div .risk {
    border-width: 3px;
    border-style: solid;
    transition: all 0.25s ease-out;
    border-radius: 20px;
    flex: 1;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    justify-content: center;
}

.client-overview__errors div .risk svg {
    transition: all 0.25s ease-out;
}

.client-overview__errors div .risk span {
    font-weight: bold;
    font-size: 20px;
}

.client-overview__errors div .risk.risk--2 {
    color: #FF0000;
    border-color: #FF0000;
}

.client-overview__errors div .risk.risk--2.risk--active {
    background-color: #FF000030;
}

.client-overview__errors div .risk.risk--2.risk--active svg path {
    fill: #FF0000;
    stroke: #ffcfcf;
}

.client-overview__errors div .risk.risk--1 {
    color: var(--yellow);
    border-color: var(--yellow);
}

.client-overview__errors div .risk.risk--0 {
    color: var(--green);
    border-color: var(--green);
}

.client-overview__errors div .risk.risk--0.risk--active {
    background-color: #d9efc3;
}

.client-overview__errors div .risk.risk--0.risk--active svg path {
    fill: var(--green);
    stroke: #d9efc3;
}

.client-overview__errors div .risk.risk--1.risk--active {
    background-color: #ffe9d0;
}

.client-overview__errors div .risk.risk--1.risk--active svg path {
    fill: var(--yellow);
    stroke: #ffe9d0;
}

.client-overview__errors div .risk.risk--active {
    border-color: transparent;
}

.client-overview__error-list {
    flex: 1;
    padding: 0 10px 10px;
    margin: 0 10px 10px;
    overflow: scroll;
}

.client-overview__error-list .channel-errors>div {

    display: none;
}

.client-overview__error-list .channel-errors>div>div {
    padding: 12px 0 12px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #96ACC250;
}

.client-overview__error-list .channel-errors>div>div>p {
    margin: 0;
    font-size: 14px;
}
.client-overview__error-list .channel-errors>div>div>span {
    flex: 1;
    font-size: 14px;
}
.client-overview__error-list .channel-errors>div>div>span:first-child {
    font-weight: 600;
}

.client-overview__error-list .channel-errors div.exposed_services {
    background: url('../img/icons/exposed_services.svg') left center / 26px 26px no-repeat;
}

.client-overview__error-list .channel-errors div.darkweb {
    background: url('../img/icons/darkweb.svg') left center / 26px 26px no-repeat;
}

.client-overview__error-list .channel-errors div.social_media {
    background: url('../img/icons/social_media.svg') left center / 26px 26px no-repeat;
}

.client-overview__error-list .channel-errors div.leaked_credentials {
    background: url('../img/icons/leaked_credentials.svg') left center / 26px 26px no-repeat;
}

.client-overview__error-list .channel-errors div.stealers_leaks {
    background: url('../img/icons/stealers_leaks.svg') left center / 26px 26px no-repeat;
}

.client-overview__error-list .channel-errors div.domain_whois {
    background: url('../img/icons/domain_whois.svg') left center / 26px 26px no-repeat;
}



/* .div1 { grid-area: 1 / 3 / 2 / 4; }
.div2 { grid-area: 1 / 4 / 2 / 5; }
.div3 { grid-area: 1 / 1 / 3 / 3; }
.div4 { grid-area: 1 / 5 / 2 / 6; }
.div5 { grid-area: 2 / 3 / 3 / 4; }
.div6 { grid-area: 2 / 4 / 3 / 5; }
.div7 { grid-area: 2 / 5 / 3 / 6; } */

.client-overview .channel-teaser a {
    text-decoration: none;
    display: flex;
    color: #333;
    flex-direction: column;
    height: 100%;
}

.client-overview .channel-teaser svg {
    width: 50px;
    min-height: 50px;
}

.client-overview .channel-teaser.channel-teaser--dark-web h3 {
    color: var(--darkgreen);
}
.client-overview .channel-teaser.channel-teaser--social-media h3 {
    color: #3da5d6;
}
.client-overview .channel-teaser.channel-teaser--global-media h3 {
    color: #800080;
}
.client-overview .channel-teaser.channel-teaser--domain-whois h3 {
    color: var(--blue);
}
.client-overview .channel-teaser.channel-teaser--exposed-services h3 {
    color: #26b789;
}
.client-overview .channel-teaser.channel-teaser--leaked-credentials h3 {
    color: var(--red);
}

.client-overview .channel-teaser.channel-teaser--stealers-leaks h3 {
    color: #ff7a4e;
}
.client-overview .channel-teaser.channel-teaser--settings h3 {
    color: #71A1C2;
}

.client-overview .channel-teaser h3 {
    font-size: 20px;
    font-weight: 700;
    flex: 1;
}

.client-overview .channel-teaser .channel-info p {
    margin: 0 0 10px;
}

.client-overview .channel-teaser a span {
   color: var(--greyblue);
   align-self: flex-end;
   text-decoration: underline;
   opacity: 0.8;
}


/* custom scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 0;
  }
  
::-webkit-scrollbar-track {
width: 5px;
background-color: var(--lightblue);
}

::-webkit-scrollbar-thumb {
width: 5px;
background-color: var(--darkblue);
border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
background-color:var(--blue);
}

#message.updated {
    background-color: #75b72645;
    color: var(--green);
    padding: 15px 15px;
    font-weight: bold;
    border-radius: 15px;
}
#message.updated p {
    margin: 0;
}

@media screen and (max-width: 400px) {
    div.dt-container div.dt-layout-row:not(.dt-layout-table) {
        display: block!important;
    }
}

@media screen and (min-width: 401px) {
    div.dt-container div.dt-layout-row:not(.dt-layout-table) {
        display: flex!important;
        flex-wrap: wrap;
    }
}
.site-main div.dt-container select.dt-input,
.site-main div.dt-container .dt-search input[type="search"] {
    border-radius: 25px;
    border: 0;
    box-shadow: 0 10px 30px #00356a20;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.site-main div.dt-container .dt-search input[type="search"] {
    background: url('../img/search.svg') 15px center / auto 50% no-repeat white;
    padding-left: 50px;
    color: #333;
    outline: none;
}

.site-main div.dt-container .dt-search label {
    display: none;
}

div.dt-container div.dt-layout-full {
    position: relative;
    min-height: 500px;
}

div.dt-processing > div:last-child > div {
    background: var(--lightblue)!important;
}
div.dt-processing > div:last-child {
    margin: 20vh auto!important;
}

div#sortable-table_processing.dt-processing {
    background-color: white;
    left: 0;
    border-radius: 15px;
    right: 0;
    margin: 0;
    width: 100%;
    top: 0;
    bottom: 0;
}

table.dataTable.stripe > tbody > tr:nth-child(odd) > *, table.dataTable.display > tbody > tr:nth-child(odd) > * {
    box-shadow: inset 0 0 0 9999px #eaf1f5b0 !important;
}

#filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 30px;
    align-items: center;
}

@media only screen and (max-width: 1024px) {
    #filter-container {
        flex: 0 0 100%;
        margin: 10px 0 0;
    }
}

#filter-container input {
    padding: 15px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    border: 0;
    color: #333;
    box-shadow: 0 10px 30px #00356a20;
    border-radius: 25px;
}

#filter-container button {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 0;
    display: inline-block;
    padding: 15px;
    background: #38618138;
    border-radius: 25px;
    cursor: not-allowed;
}

#filter-container button.highlight {
    background-color: var(--green);
    cursor: pointer;
}

#export-container {
    display: none;
}

#export-container button {
    padding: 15px;
    transition: all 0.5s ease-in-out;
    margin-left: 20px;
}

#export-container button.loading {
    background-color: #38618138;
    cursor: not-allowed;
}

[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    margin-top: 6px;
    z-index: 990;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 5px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

td dl {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items:center;
    margin: 20px;
}


td dl pre {
    flex: 2;
    white-space: normal;
    word-break: break-all;
    max-height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 5px 20px 5px 5px;
}

td dl pre span.highlight {
    font-weight: bold;
    color: var(--red);
    padding: 2px;
    border-radius: 3px;
    background-color: #ff9c9c;
}

td dl div {
    flex: 1;
    background-color: var(--blue);
    color: white;
    padding: 15px;
    border-radius: 15px;
    min-height: 100px;
    position: relative;
    display: inline-block;
    max-width: 80%;
}

td dl div::before {
    content: "";
    position: absolute;
    top: 15px;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent var(--blue) transparent transparent;
}

td dl pre::-webkit-scrollbar-track {
    border-radius: 5px;
}
.dt-control:before {
    border: 0!important;
    width: 25px;
    height: 25px;
    transition: all 0.25s ease-in-out;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M18 9s-4.419 6-6 6s-6-6-6-6' color='%23000'/%3E%3C/svg%3E")
}

tr.dt-hasChild .dt-control:before {
    transform: rotate(180deg);
}

.dt-type-date {
    width: 120px;
}

th.risk, td.risk {
    width: 80px;
}

td.risk.risk--1 i {
    color: var(--yellow);
}

td.risk.risk--2 i {
    color: var(--red);
}

.dt-control {
    width: 50px;
}

nav.sidebar {
    display: none;
}
body.admin-bar nav.sidebar {
    top: 85px;
}

@media only screen and (min-width: 1024px) {
    body.admin-bar .site-header {
        top: 32px;
    }

    nav.sidebar {
        display: block;
        position: fixed;
        top: 53px;
        left: 0;
        width: 210px;
        overflow: scroll;
        bottom: 0;
        background: var(--darkblue);
        
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
        scrollbar-width: none;  /* Firefox */
    }

    nav.sidebar::-webkit-scrollbar { 
            display: none;  /* Safari and Chrome */
        }

    nav.sidebar li {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    nav.sidebar h3 {
        margin: 10px 0 5px;
        border-top: 1px solid var(--blue);
    }

    nav.sidebar h3 a {
        display: block;
        color: white;
        font-size: 15px;
        line-height: 15px;
        padding: 10px 10px 0;
        text-decoration: none;

    }

    nav.sidebar li a {
        padding: 5px 10px 4px;
        font-size: 13px;
        display: block;
        color: var(--lightblue);
        text-decoration: none;
    }

    nav.sidebar li a.active {
        background-color: #386181;
        color: white;
    }

    .site-main--with-sidebar {
        padding-left: 240px;
    }
}


.content-form {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px #00356a20;
    padding: 15px;
}

.content-form .acf-form-submit {
    text-align: right;
}

.content-form table {
    box-shadow: none;
}

.acf-actions .acf-button {
    color: #00356a;
    padding: 15px 0;
}

.error-block svg {
    width: 120px;
    height: 120px;
    opacity: 0.5;
}

.error-block path {
    stroke: #38618138;
}

.error-block h3 {
    font-size: 50px;
    color: #38618138;
}

.error-block p {
    margin: 0;
}

@media print {
    body, td span.url {
        font-size: 10px;
    }
    th {
        font-size: 13px;
    }
    .site-header {
        position: absolute;
        padding: 5px;
    }
    .risk svg {
        width: 25px;
        height: 25px;
    }
    .btn, .sidebar, .site-header>a, .dt-layout-row:first-child, .dt-layout-row:last-child, .dt-control:before {
        display: none!important;
    }
    
    .dt-type-date {
        width: 150px;
    }

    thead {
        height: auto;
    }

    .header-title {
        margin: 30px 0 0!important;
    }

    .site {
        margin-top: 80px!important;
    }
    
    .header-title img {
        width: 120px;
    }
}