:root {
    --main-color: #0F684B;
    --second-color: #0077cc;
    --third-color: #1b6ec2;
    --fourth-color: #1861ac;
    --text-color: #000000;
    --link-color: #0077cc;
}
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
html {
  position: relative;
  min-height: 100%;
}
a {
    color: var(--link-color);
}
.btn-primary {
    color: #fff;
    background-color: var(--third-color);
    border-color: var(--fourth-color);
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: var(--third-color);
    border-color: var(--fourth-color);
}
.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;
}
.navbar-brand{
    display: flex;
    align-items: center;
    gap: 20px;
}
.navbar-brand h2{
    font-size: 37px;
    font-weight: 700;
    margin: 0;
}
.navbar-brand h4{
    font-size: 16px;
    color: var(--main-color);
    font-weight: 400;
}
.navbar-brand img{
    height: 100px;
}
footer{
    line-height: 60px;
    width: 100%;
}
.active td,
.active {
    background-color: #d1e7dd;
}
.td-inf {
    cursor: pointer;
}
@media print {
    .print-page-hidden {
        display: none;
    }

    .print-page {
        font-size: 12px;
    }

    input {
        display: none;
    }
}
header .right{
    text-align: right;
    width: 100%;
}
.custom-card{
    padding: 30px;
}
main{
    min-height: calc(100vh - 205px);
}
@media(max-width: 768px){
    .navbar-brand h2{
        font-size: 29px;
    }
    .navbar-brand h4{
        font-size: 13px;
        white-space: normal;
    }
    header .right{
        text-align: center;
    }
    .navbar-brand{
        gap: 10px;
    }
    .navbar-brand img{
        height: 85px;
    }
    .custom-card{
        padding: 15px;
    }
}