:root {
    --back: #f5f5f5;
    --barra: #040D21;
    --blue: #007bff;
    --indigo: #69c5e6;
    --blue-light: #D8E9F4;
    --purple: #6871B6;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #68DA23;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #ffffff;
    --gray: #cccccc;
    --gray-dark: #343a40;
    --gray-light: #EBEEF1;
    --primary: #202020;
    --text: #202020;
    --link: #6c757d;
    --link-hover: #202020;
    --primary-hover: #202020;
    --secondary: #333333;
    --secondary-hover: #666666;
    --success: #68DA23;
    --success-hover: #6BF616;
    --info: #01459D;
    --info-hover: #01459D;
    --warning: #FF9138;
    --warning-hover: #FF9138;
    --danger: #F46363;
    --danger-hover: #F46363;
    --light: #f8f8f8;
    --dark: #3F3B3B;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: 'Poppins', sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body {
    font-family: var(--font-family-sans-serif);
    background-color: var(--back);
    color: var(--text);
}

a {
    color: var(--link);
    text-decoration: none;
    background-color: transparent;
    transition: all ease .2s;
    font-weight: 600;
}

a:hover,
a:focus {
    color: var(--link-hover);
    text-decoration: none;
    background-color: none;
}

a:not([href]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):hover {
    color: inherit;
    text-decoration: none;
}

.card-logo-download {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: none;
    word-wrap: break-word;
    background-color: var(--white);
    background-clip: border-box;
    border: 1px solid var(--white);
    border-radius: 0.25rem;
    height: 100%;
    /* background-image: -moz-linear-gradient(45deg, #efefef 25%, transparent 25%,transparent 75%, #efefef 75%, #efefef 100%), -moz-linear-gradient(45deg, #efefef 25%, transparent 25%,transparent 75%, #efefef 75%, #efefef 100%); background-image: -webkit-linear-gradient(45deg, #efefef 25%, transparent 25%,transparent 75%, #efefef 75%, #efefef 100%), -webkit-linear-gradient(45deg, #efefef 25%, transparent 25%,transparent 75%, #efefef 75%, #efefef 100%); -moz-background-size:20px 20px; background-size:20px 20px; -webkit-background-size:20px 20px; background-position:0 0, 10px 10px; */
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: none;
    word-wrap: break-word;
    background-color: var(--white);
    background-clip: border-box;
    border: 1px solid var(--white);
    border-radius: 0.25rem;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    height: 100%;
}

.card:hover {
    border-radius: 0.25rem;
    border: 1px solid #202020;
    box-shadow: 0 0 0 0.2rem rgba(149, 147, 147, 0.3);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-decoration: none;
}

.card-subtitle {
    text-decoration: none;
}

.card-ordem {
    display: flex;
    justify-content: center;
    padding: 1em;
}

/* .card-ordem-01 { float: left; border-left: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); outline: thick; } .card-ordem-01:nth-child(2n + 1) { border-left: 0px; } */
.card-ordem-titulo {
    width: 100%;
    padding: 1em;
    color: var(--primary);
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1370px;
    }
}

.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1370px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h1,
.h1 {
    font-size: 1.8rem;
}

h2,
.h2 {
    font-size: 1.6rem;
}

h3,
.h3 {
    font-size: 1.5rem;
}

h4,
.h4 {
    font-size: 1.4rem;
}

h5,
.h5 {
    font-size: 1.3rem;
}

h6,
.h6 {
    font-size: 1rem;
    line-height: 1.6;
}

.div-logo {
    position: relative;
}

.div-logo:before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
    /*trick here*/
}

.div-logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.div-logo-alfabeto {
    border-left: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    outline: thick;
}

.div-logo-alfabeto img {
    padding: 1em 1em;
}

.botao-mais {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    padding: 0em;
    /* max-height: 160px; */
}

.codigo {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 400px;
    color: var(--primary);
    background-color: var(--white);
    padding: 1em;
}

.banner-top {
    background-color: var(--primary);
    /* background-color: var(--white); */
}

.form-control-busca {
    border: 0;
    /* border-color: var(--gray); */
}

.form-control-busca:focus {
    border: 0px;
    /* border: 1px solid #202020; */
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.botao-busca {
    position: relative;
    display: inline-block;
    color: var(--link);
}

.botao-busca a {
    font-size: 0.9em;
    font-weight: 600;
    position: relative;
    display: inline-block;
    color: var(--link);
    /* background-color: #122A42; */
    text-decoration: none;
    padding: 0.2em 0.7em;
    margin: 0em 0em;
    border-radius: 50px;
    transition: all ease .2s;
}

.botao-busca a:hover,
.botao-busca a:focus {
    color: var(--white);
    background-color: var(--link);
    text-decoration: none;
    padding: 0.2em 0.7em;
    margin: 0em 0em;
    transition: all ease .2s;
}

.botao-busca-active a,
.botao-busca-active a:hover,
.botao-busca-active a:focus {
    color: var(--primary);
    background-color: var(--white);
    text-decoration: none;
    padding: 0.2em 0.7em;
    margin: 0em 0em;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
}

textarea:focus,
input:focus {
    outline: none;
}

svg {
    width: 100%;
    height: 100%;
}

.scroll-horizontal {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    z-index: 1;
}

.scroll-horizontal::-webkit-scrollbar {
    display: none;
    z-index: 2;
}

.scroll-horizontal-painel {
    position: relative;
}

.btn-download {
    min-width: 100%;
    min-height: 48px;
    padding: 8px 10px;
    font-size: 20px;
    line-height: 1;
}

.image-overlay {
    position:relative;
    width:100%;
    height:100%;
    border: 1px solid #fff;
  }
  .image-overlay img {
    width:100%;
    vertical-align:top;
  }
  .image-overlay:after {
    content:'\A';
    position:absolute;
    width:100%; 
    height:100%;
    top:0; left:0;
    background:rgba(0,0,0,0.2);
    opacity:0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .image-overlay:hover:after {
    opacity:1;
  }
  
  .text-overlay {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -10px;
    opacity: 0;
    color: #fff;
    padding: 30px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: 1;
   }
  
   .image-overlay:hover > .text-overlay {
      opacity: 1;
      transition: all 0.5s;
      -webkit-transition: all 0.5s;
      bottom: 0px;
    }