html, body {
    max-width: 100%;
    overflow-x: hidden;
    color: #646363;
    margin: 0;
    padding-right: 0 !important;
}

.nav-container {
    padding-top: 10px;
}

.nav-logo-container {
    width: 50px;
    margin-left: 10px;
    text-align: left;
}

.nav-logo {
    border-radius: 2px;
}

.nav-button-register {
    margin-right: 10px;
    height:100%;
    text-align: right;
}

.nav-button {
    background-color: #2b86cc;
    color: #ffffff;
    padding: 10px 10px 10px 10px;
    border:none;
    border-radius: 5px;
    text-align:center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
}

.nav-button:hover {
    background-color: #186eaf;
    color: #ffffff;
    padding: 10px 10px 10px 10px;
    border:none;
    border-radius: 5px;
    text-align:center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
}
.nav-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #2b86cc;
    color: white;
    padding: 5px 0;
    margin-top: 10px;
    box-shadow: 0px 1px 5px #888, 0px -1px 5px #888;

}
#menuDesktop .nav-item {
    text-decoration: none;
    color: #ffffff;
    margin: 10px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 8px solid transparent;
}
.hamburguer {
    width: 30px;
    height: 4px;
    background: #2b86cc;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    z-index: 3000;
    transition: all 0.3s;
    margin-top: -25px;
    margin-left: 90%;
}
.hamburguer:before,
.hamburguer:after {
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background: #2b86cc;
    border-radius: 10px;
    transition: all 0.3s;
}
.hamburguer:before {
    top: -10px;
    width: 20px;
}
.hamburguer:after {
    top: 10px;
    width: 25px;
}
.toggle-menu {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 5000;
    cursor: pointer;
    margin-top: -40px;
    margin-left: 90%;
    opacity: 0;
}
.nav-link {
    padding: 0rem 1rem;
}

input:checked ~ .hamburguer {
    background: transparent;
}

input:checked ~ .hamburguer:before {
    width: 30px;
    top: 0;
    transform: rotate(-50deg);
}

input:checked ~ .hamburguer:after {
    width: 30px;
    top: 0;
    transform: rotate(50deg);
}

.hamburguer, .toggle-menu {
    display: none;
}

#menuDesktop {
    width: 100%;
    display: flex;
    z-index: 1000;
    position: relative;
    margin-top: 2px;
    margin-bottom: -16px;
}

#menuMobile {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
}

#menuMobile .site-menu {
    width: 70%;
    height: 100%;
    background: #fff;
    padding: 90px 0 0 10%;
}

#menuDesktop.border-bottom {
    border-bottom: 1px solid white !important; 
} 

#menuDesktop .site-menu,
#menuMobile .site-menu {
    margin-bottom: 0; 
}

#menuDesktop .site-menu {
    margin-left: 14%;
}

#menuMobile .site-menu {
    overflow-y: scroll;
}

#menuDesktop .site-menu a {
    text-decoration: none!important;
    display: inline-block; 
}

#menuDesktop .site-menu > li {
    display: inline-block; 
}
#menuMobile .site-menu > li {
    display: block;
}

#menuMobile .site-menu > li #firstItemMenu {
    margin-top: 50px
}

#menuDesktop .site-menu > li > a,
#menuMobile .site-menu > li > a {
    margin-left: 10px;
    margin-right: 10px;
    color: #fff!important;
    display: inline-block;
    text-decoration: none!important; 
    font-weight: 600;
}

#menuMobile .site-menu > li > a {
    font-size: 15px;
    color: #164794 !important;
    padding: 16px 0;
}

#menuDesktop .site-menu .has-children {
    position: relative; 
}

#menuDesktop .site-menu .has-children > a {
    position: relative;
    padding-right: 20px; 
}

#menuDesktop .site-menu .has-children > a:before {
    position: absolute;
    content: "\25be";
    font-size: 17px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'icomoon'; 
}

#menuDesktop .site-menu .has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    position: absolute;
    text-align: left;
    border-top: 2px solid #007bff;
    -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
    -webkit-transition: 0.2s 0s;
    -o-transition: 0.2s 0s;
    transition: 0.2s 0s; 
}

#menuDesktop .site-menu .has-children .dropdown.arrow-top {
    width: 250px;
    background: #2b86cc;
    position: absolute;
    top: 32px; 
}
#menuDesktop .site-menu .has-children .dropdown.arrow-top:before {
    display: none;
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; 
}

#menuDesktop .site-menu .has-children .dropdown.arrow-top:before {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px; 
}

#menuDesktop .site-menu .has-children .dropdown a {
    font-size: 13px;
    color: #fff !important; 
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    -webkit-transition: 0s all;
    -o-transition: 0s all;
    transition: 0s all;
}

#menuDesktop .site-menu .has-children .dropdown a.active {
    color: #007bff !important;
    background: #f8f9fa; 
}

#menuDesktop .site-menu .has-children .dropdown > li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px; 
}

#menuDesktop .site-menu .has-children .dropdown > li > a {
    padding: 9px 20px;
    display: block; 
}

#menuDesktop .site-menu .has-children .dropdown > li > a:hover {
    background: #164794;
    color: #ced4da; 
}

#menuDesktop .site-menu .has-children .dropdown > li.has-children > a:before {
    content: "\e315";
    right: 20px; 
}

#menuDesktop .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
    left: 100%;
    top: 0; 
}

#menuDesktop .site-menu .has-children .dropdown > li.has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {
    background: #f8f9fa;
    color: #ced4da; 
}

#menuDesktop .site-menu .has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children:focus > a, .site-navbar .site-navigation .site-menu .has-children:active > a {
    color: #007bff; 
}

#menuDesktop .site-menu .has-children:hover, .site-navbar .site-navigation .site-menu .has-children:focus, .site-navbar .site-navigation .site-menu .has-children:active {
    cursor: pointer; 
}

#menuDesktop .site-menu .has-children:hover > .dropdown, .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown, .site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1; 
}

#menuMobile .nav-button,
#menuMobile .nav-item-button {
    font-size: 13px;
    display: table;
}

#menuMobile .nav-button {
    margin: 20px 0 40px;
}

#dropCertificate {
    font-size: 15px;
    margin: 0 160px 0 0;
}

#accordionButtonMobile {
    background-color: #fff;
    color: #302ca8;
    font-weight: 600;
    margin-left: -5px;
}

#menuMobile .accordion-body {
    background: #f3f3f3;
    padding: 20px 2px!important;
}

#menuMobile .accordion-body > ul > li {
    list-style: none;
}

#menuMobile .accordion-body > ul > li > a {
    font-size: 15px;
    color: #302ca8;
    font-weight: 600;
}

@media(min-width: 768px) {
    #menuDesktop .nav-item:hover {
        color: #fff;
        text-decoration: none;
        padding-bottom: 10px;
        border-bottom: 8px solid;
    }
}

@media(max-width:767px) {
    #menuDesktop .nav-item:hover {
        color: #fff;
        text-decoration: none;
        padding-bottom: 5px;
    }

    .nav-bar-container, .menu-desktop, .nav-button-register, .nav-button-certificate {
        display: none;
    }

    .hamburguer, .toggle-menu {
        display: block;
    }
}

.nav-item-button {
    color: #fff;
    text-decoration: none;
    background-color: #000;
    border: none;
    border-radius: 5px;
    padding: 10px;
    margin-right: 10px;
    font-weight: 600;
}

.nav-item-button:hover {
    color: #000;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #000;
}

@media(max-width: 520px) {
    .nav-button-certificate {
        margin-top: 20px;
    }
}

.col-carrousel {
    padding-right: 0px;
    padding-left: 0px;
}

div .service-box {
    border-radius: 5px;
    border-style: solid;
    border-width: 2px;
    border-color: #2b86cc;
    padding: 10px;
    margin-bottom: 10px;
}

.service-box-description {
    margin-left: 10px;
    text-align: justify;
    font-size: 9px;
    color: #444;
    font-weight: 600;
}

.service-box-title {
    margin-left: 10px;
    text-align: justify;
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.service-box-link {
    margin-left: 10px;
    text-align: justify;
    font-size: 12px;
    color: #2b86cc;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.service-box-link:hover {
    text-align: justify;
    font-size: 12px;
    color: #186eaf;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.service-box-icon {
    font-size: 64px;
    color: #fff;
    background-color: #2b86cc;
    border-radius: 50px;
    padding: 10px;
}

.footer-container {
    background-color: #2b86cc;
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-icon {
    font-size: 48px;
    color: #2b86cc;
    background-color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 50px;
}

.footer-description-container {
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 0;
    padding-top: 10px;
    font-size: 10px;
}

.after-footer-container {
    background-color: #000;
}

.after-footer-description {
    color:#ffffff;
}

.link-rodape {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.link-rodape:hover {
    color: #ffffff;
}

.copyright {
    font-size: 11px;
    padding-top: 5px;
}

.payment-method-icons {
    height: auto;
}

.social-icon {
    height: auto;
    width: 48px;
    padding-right: 10px;
    padding-top: 20px;
}

.footer-space {
    padding-bottom: 6px;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #888; 
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.text-justify {
    text-align: justify; text-justify: inter-word;
}

.accordion-titulo {
    color:#2b86cc;
}

.accordion-titulo:not(.colapsed) {
    color:#2b86cc;
}

.accordion-titulo:active {
    color:#2b86cc;
}

.ml-auto {
    margin-left:  auto;
    margin-right: 0;
}

.mt-1 {
    margin-top: 10px;
}

.c-margin {
    margin-left: 10px;
    margin-bottom: 2px;
}

.c-padding {
    padding-top: 15px;
}

.c-icon {
    font-size: 64px;
    color: #2b86cc;
    padding: 10px;
    margin-top: 30px;
}

.c-link {
    text-decoration: none;
    color: #646363;
}

.cd-link-pdf {
    color: red;
    text-decoration: none;
}

.cd-link-pdf:hover {
    color: red;
    text-decoration: none;
    font-weight: 500;
}

.cd-link-p7s {
    color: #2b86cc;
    text-decoration: none;
}

.cd-link-p7s:hover {
    color: #2b86cc;
    text-decoration: none;
    font-weight: 500;
}

.ac-descriptions {
    padding-left: 65px;
    margin-top: -48px;
}

.ac-icon {
    font-size: 32px;
    color: #2b86cc;
    padding: 10px;
    margin-top: 30px;
}

.ac-login-container {
    border:1px solid #2b86cc;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
}

.ac-login-text {
    color: #2b86cc;
}

.ac-login-btn-align {
    text-align: right;
}

.ac-login-btn {
    color: #ffffff;
    background-color: #186eaf;
    width: 120px;
    margin-top: 5px;
}

.ac-login-btn:hover {
    color: #ffffff;
    background-color: #2b86cc;
}

.ac-login-rpw {
    font-size: 12px;
}

.ac-btn-rgst {
    background-color: #9bcb6c;
    color: #ffffff;
    width: 70%;
    border: 1px solid #000;
}

.ac-btn-rgst:hover {
    background-color: #82c73d;
    color: #ffffff;
}

.p-0 {
    padding: 0;
}

.ca-navbar {
    width: 100%;
    padding-top: 3px;
    padding-bottom: 3px;
}

.ca-subnavbar {
    width: 100%;
    padding-top: 3px;
    padding-bottom: 3px;
}

.client-area .navicon {
    font-size: 32px;
    color:#2b86cc;
    text-align: center;
    margin-left: 10px;
    padding-right: 10px;
    width: 25%;
}

.client-area .subnavicon {
    font-size: 24px;
    color:#2b86cc;
    text-align: center;
    margin-left: 10px;
    padding-right: 10px;
    width: 25%;
}

.client-area .navlink {
    text-decoration: none;
    color:#3D9BE9;
    display: grid;
    width: 100%;
    height: 85px;
    font-weight: 500;
}

.client-area .navlink:hover {
    background-color: #e7f2fa;
    color: #0a0909;
}

.client-area .subnavlink {
    text-decoration: none;
    color:#186eaf;
    display: grid;
    width: 100%;
    height: 30px;
    font-weight: 500;
    padding-left: 30px;
}

.client-area .subnavlink:hover {
    background-color: #e7f2fa;
    color: #0a0909;
}

.client-area .navtext {
    width: 75%;
    font-size: 16px;
    font-weight: bold;
}

.client-area .navactive {
    background-color: #e7f2fa;
    color: #0a0909;
    border-bottom: 3px solid #3d9be9;
    font-weight: 500;
}

.client-area .subnavtext {
    width: 75%;
    font-size: 13px;
}

.client-area .subnavactive {
    background-color: #e7f2fa;
    color: #0a0909;
    border-bottom: 3px solid #3d9be9;
    font-weight: 500;
}

.client-area .user-info {
    margin-left: 20px;
    line-height: 10px;
    font-weight: 500;
}

.client-area .user-info-link {
    margin-left: 20px;
    line-height: 10px;
    color: #2b86cc;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 30px;
}

.act-login-text {
    color: #2b86cc;
    text-align: center;
}

.act-login-error {
    color: #e21919;
    text-align: center;
}

.act-icon-align {
    text-align: center;
}

.act-icon {
    font-size: 64px;
    color: #2b86cc;
    padding: 10px;
    margin-top: 30px;
}

.act-icon-success {
    font-size: 64px;
    color: #82c73d;
    padding: 10px;
    margin-top: 30px;
}

.act-icon-error {
    font-size: 64px;
    color: #e21919;
    padding: 10px;
    margin-top: 30px;
}

.warning-link {
    color: #e21919;
    text-decoration: none;
}

.warning-link:hover {
    color: #e21919;
    text-decoration: underline;
}

.table-btn {
    height: 32px;
    width: auto;
    padding: 5px;
    background-color: #186eaf;
    border-radius: 5px;
    border: none;
}

.table-btn:hover {
    height: 32px;
    width: auto;
    padding: 5px;
    background-color:#3d9be9;
    border-radius: 5px;
    border: none;
}

.table-icon {
    font-size: 22px;
    color: #ffffff;
}

.table-icon-txt {
    display: inline;
    color: #ffffff;
    vertical-align: super;
}

.inline-button {
    display:inline;
}

.img-thumb {
    width: 100px;
    height: 40px;
    border: solid 2px #b7b8b9;
}

.img-thumb-favicon {
    width: 32px;
    height: 32px;
    border: solid 2px #b7b8b9;
}

.img-thumb:hover {
    border: solid 2px #3d9be9;
}

.img-thumb-favicon:hover {
    border: solid 2px #3d9be9;
}

.modal-image-view {
    max-width: 800px;
}

.img-modal {
    width: 765px;
    height: auto;
    border:solid 1px #dee2e6;
}

.favicon-modal {
    width: 265px;
    height: auto;
    border:solid 1px #dee2e6;
}

.tbl {
    width: 100%;
    border-collapse:separate; 
    border-spacing: 0 1em;
}

.tbl-head {
    display: none;
}

.tbl-row {
    background-color: #f1ecec;
}

.tbl-col-title {
    color:#000;
    text-align: center;
    font-size: 1rem;
}

.tbl-col-info {
    text-align: center;
    font-size: 0.8rem;
}

.tbl-row td {
    height: 100px;
}

.tbl-col-button {
    width: 180px;
}

.tbl-col-button button {
    background-color: #2b86cc;
    color: #ffffff;
    padding: 10px 10px 10px 10px;
    border:none;
    border-radius: 5px;
    text-align:center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
}

.tbl-col-button button:hover {
    background-color: #186eaf;
    color: #ffffff;
    padding: 10px 10px 10px 10px;
    border:none;
    border-radius: 5px;
    text-align:center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
}

.paginate_button2 {
    margin: 5px;
    padding: 5px;
    text-decoration: none;
    border-radius: 4px;
}
.paginate_button2.disabled {
    color: #000;
    margin: 5px;
    padding: 5px;
    text-decoration: none;
    border-radius: 4px;
}

.dataTables_paginate2 {
    text-align: center;
    padding-top: 0.25em;
}

.dataTables_info2 {
    clear: both;
    float: left;
    padding-top: 0.755em;
}

.order-details-box {
    border: solid #cdd3d6 1px;
    border-radius: 5px;
    padding: 15px;
}

.order-details-title {
    font-size: 14px;
    color: #3D9BE9;
}

.order-details-line {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: dotted 1px;
}

.order-details-value {
    float: right;
}