/* POLÍCIA MILITAR DO AMAZONAS - DTI */
/* DEV-CSS EDUARDO MAZZONI */
/* LOGIN PAGE, GEOTECNOLOGIA, MENU PRINCIPAL */
@font-face {
    font-family: 'GothamBook';
    src: url('fonts/gothambook-webfont.eot');
    src: url('fonts/gothambook-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/gothambook-webfont.woff2') format('woff2'),
         url('fonts/gothambook-webfont.woff') format('woff'),
         url('fonts/gothambook-webfont.ttf') format('truetype'),
         url('fonts/gothambook-webfont.svg#gothambookregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamBold';
    src: url('fonts/gothambold-webfont.eot');
    src: url('fonts/gothambold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/gothambold-webfont.woff2') format('woff2'),
         url('fonts/gothambold-webfont.woff') format('woff'),
         url('fonts/gothambold-webfont.ttf') format('truetype'),
         url('fonts/gothambold-webfont.svg#gothamboldregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    color: #6e7a89;
    font-family: 'GothamBook', sans-serif;
    font-weight: 300;
}

h1,h2,h3,h4,p{
    cursor: default;
}

a, a:hover {
    color: inherit;
    text-decoration: none;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

b {
    font-family: 'GothamBold';
}


/***** Login *****/

#login .wrapper {
    display: flex;
}
@media screen and (max-width: 768px) {
    #login .wrapper {
        flex-direction: column;
    }
}
#login .logo {
    width: 72px;
}

/* Login - left */
#login .login {
    align-items: flex-start;
    display: flex;
    background: #fff url(../img/bg-login.svg) no-repeat left bottom;
}
#login .login > div {
    flex: 1;
    padding-left: 10px;
}
#login .login h1 {
    color: #0e6851;
    font-size: 38px;
    margin: 0;
}
#login .login h2 {
    font-weight: bold;
    font-size: 36px;
}
#login .login p.small {
    color: #033d5c;
}

@media screen and (max-width: 1350px) {
    #login .login h1 {
        font-size: 26px;
        margin-top: 15px;
    }
    #login .login h2 {
        font-size: 26px;
    }
    #login .login p.small {
        font-size: 11px;
    }
}

@media screen and (max-width: 991px) {
    #login .login {
        flex-direction: column;
    }
    #login .login h1 {
        margin-top: 0;
    }
    #login .login > img {
        display: block;
        margin: auto;
    }
}

@media screen and (max-width: 768px) {
    #login .login > div {
        margin: 20px auto 0;
        padding: 0;
        text-align: center;
    }
}

@media screen and (max-width: 580px) {
    #login .login h1 {
        font-size: 22px;
    }
}

/* Form */
#login .login form {
    margin-top: 60px;
}
#login .login form label {
    position: relative;
    width: 100%;
    display: block;
}
#login .login form label i {
    position: absolute;
    top: 12px
}
#login .login form .input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #6e7a89;
    height: 40px;
    line-height: 40px;
    margin-bottom: 20px;
    outline: none;
    padding-left: 25px;
}
#login .login form .input::placeholder {
    color: #6e7a89;
    opacity: 1;
}
#login .login form button {
    background: linear-gradient(to bottom, #0F6955, #052E32);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    height: 40px;
    width: 100%;
}
#login .login form button:hover {
    background: #0F6955;
}
#login .login form .checkbox {
    align-items: center;
    display: flex;
    position: relative;
    padding-left: 45px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    user-select: none;
    margin: 0;
    width: auto;
}
#login .login form .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#login .login form .checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  background-color: #eff3f6;
}
#login .login form .checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}
#login .login form .checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#login .login form .checkbox input:checked ~ .checkmark:after {
  display: block;
}
#login .login form .checkbox .checkmark:after {
  left: 16px;
  top: 9px;
  width: 9px;
  height: 16px;
  border: solid #6e7a89;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#login .login form .options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

@media screen and (max-width: 1350px) {
    #login .login form .options {
        font-size: 13px;
    }
}
@media screen and (max-width: 991px) {
    #login .login form {
        margin-top: 30px;
    }
}
@media screen and (max-width: 380px) {
    #login .login form .options {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Links - right */
#login .links {
    background: #0e6251 url(../img/bg-links.png) no-repeat right center;
    color: white;
}
#login .links li {
    border-bottom: 1px solid #2e7d6d;
    padding-bottom: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}
#login .links li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
#login .links li .img {
    min-width: 120px;
    margin-bottom: 15px;
}
#login .links li img {
    transition: transform .2s;
}
#login .links li:hover .img img {
    transform: scale(1.1);
    transition: transform .2s;
}
#login .links h2 {
    transition: all ease-in-out .2s;
}
#login .links li:hover h2 {
    transition: all ease-in-out .2s;
    text-indent: 4px;
}
@media screen and (max-width: 1350px) {
    #login .links h2 {
        font-size: 24px;
    }
}
@media screen and (max-width: 991px) {
    #login .links h2 {
        font-size: 18px;
    }
    #login .links p {
        font-size: 14px;
    }
    #login .links li .img {
        max-width: 60px;
        min-width: 60px;
    }
    #login .links li .img img {
        width: 40px;
    }
}

/* Footer - Copy */
#login footer .copy {
    background: #F2F1F0;
    font-size: 12px;
}

/* Footer - menu */
#login .footer .menu {
    background: #0a5c4c;
    display: flex;
    align-items: center;
}
#login .footer .menu li {
    color: white;
    display: inline-block;
    font-size: 22px;
    margin-right: 40px;
    transition: all ease-in-out .2s;
}
#login .footer .menu li a:hover {
    color: #64998d;
    transition: all ease-in-out .2s;
}
@media screen and (max-width: 991px) {
    #login .footer .menu li {
        font-size: 12px;
        margin-right: 20px;
    }
}

/* Containers width and paddings */
#login .wrapper .col1  {
    min-height: calc(100vh - 115px);
    min-width: 680px;
    max-width: 680px;
    padding: 90px 90px 30px;
    width: 100%;
}
#login .wrapper .col2 {
    flex: 1;
    padding: 90px 90px 30px;
    width: 100%;
}
#login .wrapper .col1.row1  {
    padding-left: 20px;
}
#login .footer .col1,
#login .footer .col2 {
    min-height: 115px;
    padding: 0 90px;
    align-items: center;
    display: flex;
}
@media screen and (max-width: 1450px) {
    #login .footer .menu li {
        font-size: 17px;
    }
}
@media screen and (max-width: 1350px) {
    #login .wrapper .col1 {
        padding: 50px;
        min-width: 500px;
        max-width: 500px;
    }
    #login .wrapper .col2 {
        padding: 50px 50px 0;
    }
    #login .footer .col1,
    #login .footer .col2 {
        padding: 0 50px;
    }
    #login .footer .menu li {
        font-size: 12px;
        margin-right: 20px;
    }
    #login .footer .copy {
        font-size: 10px;
    }
}
@media screen and (max-width: 991px) {
    #login .wrapper .col1 {
        min-width: 390px;
        max-width: 390px;
        padding: 30px;
    }
    #login .footer .col1,
    #login .footer .col2,
    #login .wrapper .col2 {
        padding: 30px;
    }
    #login .wrapper .col1.row1 {
        padding: 20px;
    }
}
@media screen and (max-width: 768px) {
    #login .wrapper .col1 {
        min-width: auto;
        max-width: none;
    }
    #login .wrapper .col2 {
        padding: 30px;
    }
    #login .footer .col1,
    #login .footer .col2 {
        padding: 15px 30px;
        min-height: auto;
    }
}

/***** Menu *****/

.button {
    background: #0f6955;
    color: #fff;
    cursor: pointer;
    border-bottom: 2px solid #0a5242;
    border-radius: 5px;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    text-align: center;
}
.button:hover {
    background: #0a5242;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .button {
        font-size: 14px;
    }
}

header {
    background: #0f6955;
    padding: 10px 0;
    color: white;
    font-size: 14px;
}
header .top {
    display: flex;
    align-items: center;
}
header .logo {
    width: 45px;
    margin-right: 5px;
}
header h1 {
    font-size: 23px;
    margin: 0;
}
header a:hover {
    text-decoration: underline;
}
header .links a {
    color: #64998d;
    white-space: nowrap;
    transition: all ease-in-out .2s;
}
header .links a:hover {
    color: #fff;
    text-decoration: none;
    transition: all ease-in-out .2s;
}
header .user {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header .user img {
    width: 45px;
    height: 45px;
    border-radius: 45px;
    margin-right: 5px;
}
header .user a {
    white-space: nowrap;
}
header .user p {
    color: #64998d;
    margin: 0;
}
@media screen and (max-width: 768px) {
    header .top, header .user {
        justify-content: center;
    }
    header .links {
       margin-top:20px;
       margin-bottom: 20px;
    }
}

.title {
    background: #17638c;
    padding: 20px 0;
}
.title h2 {
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}
@media screen and (max-width: 768px) {
    .title h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .title .button {
        width: 100%;
    }
}


.menu-options {
    padding: 40px 0;
}
.menu-options a {
    height: 66px;
    line-height: 66px;
    color: #fff;
    font-size: 18px;
    display: block;
    padding-left: 15px;
    font-weight: bold;
    position: relative;
    border-right: 25px solid white;
    margin: 20px auto;
    max-width: 320px;
    transition: all ease-in-out .2s;
}
.menu-options a:hover {
    text-indent: 2px;
    transition: all ease-in-out .2s;
}
.menu-options a:hover img {
    transform: scale(1.1);
    transition: transform .2s;
}
.menu-options a img {
    height: 90px;
    position: absolute;
    right: -25px;
    top: -12px;
    transition: transform .2s;
}
@media screen and (max-width: 1200px) {
    .menu-options a {
        font-size: 13px;
        max-width: 270px;
    }
}
@media screen and (max-width: 768px) {
    .menu-options a img {
        height: 80px;
        right: -40px;
        top: -3px;
    }
}
@media screen and (max-width: 360px) {
    .menu-options a {
        font-size: 14px;
        padding: 15px 90px 0 15px;
        line-height: 18px;
        max-width: 210px;
    }
}

.menu-main {
    background: url(../img/bg-menu.png) no-repeat right center;
    background-size: cover;
    padding: 60px 0;
}
.menu-main a {
    width: 250px;
    height: 185px;
    color: #fff;
    font-size: 28px;
    display: block;
    padding: 80px 20px 0;
    margin: 80px auto;
    font-weight: bold;
    position: relative;
    text-align: center;
    transition: all ease-in-out .2s;
}
.menu-main a:hover {
    transition: all ease-in-out .2s;
    padding-top: 84px;
}
.menu-main a:hover img {
    transform: scale(1.1);
    transition: transform .2s;
}
.menu-main a img {
    height: 100px;
    position: absolute;
    left: 50%;
    top: -50px;
    transition: transform .2s;
}
@media screen and (max-width: 768px) {
    .menu-main {
        background: #D7D8D9
    }
}

a.green {
    background: #339966;
}
a.green:hover {
    background: #297951;
}
a.green img {
    margin-left: -45px;
}
a.red {
    background: #CC4B4B;
}
a.red:hover {
    background: #9e3a3a;
}
a.red img {
    margin-left: -55px;
}
a.blue {
    background: #17638c;
}
a.blue:hover {
    background: #104663;
}
a.blue img {
    margin-left: -73px;
}

.content {
    background: #f5f5f5;
    padding: 60px 0;
}
.content .radio-options label {
    margin-right: 30px;
}
.content .radio-options label input {
    margin-right: 5px;
}

.content .filter input {
    background: #fff;
    border: 1px solid #CCC;
    padding: 5px 10px;
    height: 40px;
    outline: none;
}
.content .filter input[type=text] {
    width: 55%;
}
.content .filter input[type=number] {
    width: 15%;
}
.content .filter button {
    width: 8%;
    border: none;
    height: 40px;
    color: #fff;
    background: #033d5c;
    cursor: pointer;
}
.content .filter button:hover {
    filter: brightness(90%);
}
@media screen and (max-width: 768px) {
    .content .filter input[type=text] {
        width: 100%;
        margin-bottom: 5px;
    }
    .content .filter input[type=number] {
        width: 40%;
    }
    .content .filter button {
        width: 15%;
    }
}

.container .table {
    margin: 40px 0;
}
.container .table table{
    width: 100%;
    border: none;
    border-collapse: separate;
}
.container .table table tr th {
    vertical-align: middle;
    border: none;
}
.container .table table tr td {
    vertical-align: middle;
    border: none;
    background: #fff;
}
.container .table table tr td:first-child {
    background: #e6e7e8;
    text-align: center;
}
.container .table table tr:hover td {
    background: #e6e7e8;
    transition: all ease-in-out .2s;
}

.content .pagination {
    background: #FFF;
    padding: 5px 5px 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content .scroll {
    overflow: auto;
}

footer {
    background: #0f6955 url(../img/bg-footer.png) no-repeat left center;
    color: white;
    padding: 30px 0;
}
footer h2 {
   font-size: 20px;
}
footer p {
   font-size: 13px;
}
footer a {
    transition: all ease-in-out .2s;
}
footer .logo {
    width: 45px;
    margin-right: 5px;
}
footer ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
footer ul li {
    display: inline-block;
    font-size: 18px;
}
footer a:hover {
    color: #64998d;
    transition: all ease-in-out .2s;
}
@media screen and (max-width: 768px) {
    footer ul {
        margin-bottom: 20px;
    }
}

.slick-prev, .slick-next {
    width: 15px;
    height: 31px;
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -15px;
    border: none;
    text-indent: -100px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
}
.slick-prev:focus, .slick-next:focus {
    outline: none;
}
.slick-prev {
    left: 0;
    background: url(../img/arrow-left.svg);
}
.slick-next {
    right: 0;
    background: url(../img/arrow-right.svg);
}

a.zoom img {
    transition: transform .2s;
}
a.zoom:hover img {
    transform: scale(1.1);
    transition: transform .2s;
}
#login .login .govbr-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #8c8c8c;
    font-size: 13px;
    margin: 16px 0;
}
#login .login .govbr-divider::before,
#login .login .govbr-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}
#login .login .govbr-divider::before {
    margin-right: 10px;
}
#login .login .govbr-divider::after {
    margin-left: 10px;
}

#login .login .btn-govbr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #1351B4;
    color: #FFF;

    width: 100%;
    max-width: 320px;
    height: 52px;
    margin: 0 auto;

    border-radius: 40px;
    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    transition: .2s;
}

#login .login .btn-govbr:hover {
    background: #0C326F;
    color: #FFF;
    text-decoration: none;
}

#login .login .btn-govbr .wordmark {
    font-weight: 700;
}

#login .login .btn-govbr .wordmark .gov {
    color: #FFFFFF;
}

#login .login .btn-govbr .wordmark .br {
    color: #FFCD07;
}
