:root {
    --font-size: 16px;
    --primary-color: #0067B2;
    --secondary-color: #E27D39;
    --primary-ascent-color: #6F42C1;
    --color-white: #FFF;
    --font-padrao: "Roboto", sans-serif;
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-padrao);
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-color: #F5F5F5 !important;
}

.loading-logo {
    width: 150px; /* Ajuste o tamanho como quiser */
    filter: grayscale(100%);
    transition: filter 2s ease-in-out;
    animation: colorize 2s forwards;
}

@keyframes colorize {
    from {
        filter: grayscale(100%);
    }
    to {
        filter: grayscale(0%);
    }
}

#content-pages {
    flex: 1;
    padding: 20px;
}

.border-ligabio {
    border: 3px solid #93C121 !important;
}

.bg-ligabio {
    background-color: #93C121 !important;
}

.btn-ligabio {
    border: 1px solid #93C121 !important;
    border-radius: 5px !important;
    background: #93C121 !important;
    color: #FFF;
    padding: 10px;

    text-align: center;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-ligabio:hover {
    border: 1px solid #93C121 !important;
    background: #93C121 !important;
    color: #FFF !important;
    text-decoration: none !important;
}

.rounded-box {
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(50, 17, 168, 0.13);
    padding: 20px;
}

h1 {
    font-size: 1.8rem;
}

h1,
h2 {
    font-weight: 700;
}

h2 {
    font-size: 1.6rem;
}

main.main-section {
    min-height: calc(100% - 276px);
}

/* SIDEBAR */

.sidebar-name {
    color: #FFF;

    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.list-menu-custom li a {
    color: #FFF;

    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.list-menu-custom li a:hover {
    color: #d5d5d5;
}

#coluna-sidebar {
    border: 1px solid #93C121;
    background: #93C121;
}

#sidebar-logo {
    height: 317px;
    border: 3px solid #93C121;
    background: #FFF;
}

#sidebar-logo img {
    position: relative;
}

.sidebar-header {
    background: #FFF;
}

.sidebar-header-info {
    padding: 20px;
    border-top: 1px solid #686868;
    border-bottom: 1px solid #686868;
}

.sidebar-header-info p {
    color: #686868;


    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#sidebar-change-user {
    color: #DF7400;
    cursor: pointer;
}

#sidebar-change-user a {
    color: #DF7400;

    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

#coluna-sidebar-mobile {
    border: 1px solid #93C121;
    background: #93C121;
}

/* FIM SIDEBAR */

/* SIDEBAR MOBILE */

#menu-mobile {
    transition: all 0.3s ease-in-out;
}

.coluna-sidebar-mobile {
    height: 40px;
}

.sidebar-mobile {
    background: #93C121;
    z-index: 99;
    position: absolute;
}

#btn-menu-mobile {
    color: #FFF;

    text-align: right;

    font-size: 29px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 425px) {
    #sidebar-logo {
        height: 317px;
        border: none;
        background: #FFF;
    }
}


/* FIM SIDEBAR MOBILE */

/* FOOTER */

#footer-content {
    height: auto;
    border-top: 1px solid #93C121;
    background: #FFF;
}

#footer-content a {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* FIM FOOTER */

/* DASH */

.card-dash {
    width: 440px;
    height: 300px;
}

.card-dash-header {
    height: 60px;
    background-color: #93C121 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-dash-header h5 {
    color: #FFF;
    text-align: center;

    font-size: 29px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.card-dash-body {
    background: #FFF;
    padding: 20px 0;
    height: calc(100% - 60px);
    text-align: center;
}

.card-dash-body>h5,
.card-dash-body>p,
.card-dash-body>a {
    color: #0067B2;
    text-align: center;

    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.titulo-noticias {
    color: #0067B2;

    font-size: 29px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btn-custom-noticias-home {
    background-color: #1781BC;
    color: var(--color-white);
    border-radius: 10px;
    border: 1px solid var(--color-white);
    padding: 10px;
}

.btn-ligabio-noticias {
    border: 1px solid #0067B2 !important;
    background: #FFF !important;
    color: #0067B2;
    padding: 10px;

    text-align: center;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-ligabio-noticias:hover {
    border: 1px solid #0067B2 !important;
    background: #FFF !important;
    color: #0067B2 !important;
    text-decoration: none !important;
}

.btn-custom-noticias-home:hover {
    background-color: var(--color-white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-download {
    background-color: #FF6900;
    color: #000;
}

/* REGULAMENTO */

.regulamento {
    height: 500px;
}

.border-accept {
    border: 1px solid;
    border-radius: 10px;
    padding: 10px 0px 10px 30px;
    border-color: #DC3545;
}

.content-header {
    background: var(--primary-color);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    /* height: 40px; */
}

.content-header p {
    font-family: var(--font-padrao);
    font-style: normal;
    font-weight: 700;
    font-size: 23px;
    line-height: normal;
    color: var(--color-white);
}

.content-header a {
    font-family: var(--font-padrao);
    font-style: normal;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.75rem;
    color: #FFFFFF;
}

.content-header a:hover {
    color: #FFFFFF;
}

.flickity-enabled {
    outline: none !important;
}

.flickity-page-dots {
    width: 100%;
    position: absolute;
    top: 240px;
}

@media (max-width: 768px) {
    .flickity-page-dots {
        top: 135px;
    }
}

/* METAS E RESULTADOS */

.text-metas {
    font-family: var(--font-padrao);
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--primary-color);
}

.header-meta {
    background-color: var(--primary-color);
    color: #FFF;
    text-align: center;
}

.card-body-metas {
    background-color: #A6A6A6;
}

.card-metas-h5 {
    color: #FFF;
    text-align: center;
}

/* CONTATO */

#titulo-contato {
    color: #1B458E;
}

#lista-atendimentos-contato ul {
    font-weight: 500;
    color: #000;
    list-style: none;
}

#lista-atendimentos-contato ul li::before {
    content: "\2022";
    color: #000;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.contatos .text-center {
    color: var(--primary-ascent-color);
    margin-bottom: 4rem;
}

.form-contato .form-control {
    background: #FFFFFF;
    border: 1px solid #A6A6A6 !important;
    border-radius: 10px !important;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, 0);
    height: 50px;
}

.form-contato .form-control.text {
    background: #FFFFFF;
    border: 1px solid #A6A6A6 !important;
    border-radius: 10px !important;
    width: 100%;
    height: 15rem;
}

#message-input {
    resize: none;
}

.form-contato .btn-enviar-contato {
    color: #FFFFFF;
    background-color: var(--secondary-color);
    border-radius: 10px;
    width: 200px;
    height: 40px;
    border-radius: 10px;
}

.contatos .letra::placeholder {
    color: var(--primary-color);
}

.contatos .letra::-webkit-input-placeholder {
    /* Edge */
    color: var(--primary-color);
}

.contatos .letra:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--primary-color);
}


.contatos .botao {
    margin-bottom: 3rem;
}

/* PREMIAÇÕES */

.title-premiacao {
    color: #6C757D;


    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card-premiacao {
    width: 30% !important;
}

@media (max-width: 425px) {
    .card-premiacao {
        width: 100% !important;
    }
}

.card-premiacoes-header {
    border: 1px solid #93C121;
    background: #93C121;
    height: 83px;
}

.card-premiacoes-header>h5 {
    color: #FFF;

    text-align: center;

    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card-premiacoes-body h4 {
    color: #0067B2;

    text-align: center;

    font-size: 97px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.card-premiacoes-body h6 {
    color: #0067B2;

    text-align: center;

    font-size: 33px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.card-premiacoes-footer>h5 {
    color: #0067B2;

    text-align: center;

    font-size: 33px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.card-apuracao-header {
    border: 1px solid #93C121;
    background: #93C121;
    height: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-apuracao-header>h5 {
    color: #FFF;

    text-align: center;

    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card-apuracao-body>p {
    color: #0067B2;

    text-align: center;

    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.card-apuracao-body>h5 {
    color: #0067B2;

    text-align: center;

    font-size: 41px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

/* FIM PREMIACOES */

/* RANKING */

.card-ranking {
    border: 1px solid #74B993 !important;
    background: #FFF;
}

#select-period label {
    color: #6C757D;

    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#ranking-title span {
    color: #6C757D;

    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.ranking_data {
    display: flex;
    font-weight: bolder !important;
    font-size: 0.8rem;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    text-align: center;
    margin-bottom: 1rem;
}

@media (max-width: 425px) {
    .ranking_data {
        min-width: 1500px;
    }
}

.ranking_data div {
    margin: 0px;
    text-align: center;
    width: 50vw;
    border: 1px solid #000000;
    border-radius: 10px;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.ranking_data div p {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0px;
    font-size: 0.8rem;
}

.ranking_data div p.data {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0px;
    font-size: 0.8rem;
}

.loading-blur {
    opacity: 0.5;
    filter: blur(2px);
    pointer-events: none;
}

@media (max-width: 480px) {
    /* .card-body {
        overflow-x: auto;
    } */
}

.rkn-mobile {
    border: 3px solid #93C121;
    background: #93C121;
    height: 40px;
}

.rkn-mobile-position p {
    color: #FFF;

    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.rkn-mobile-name {
    border: 3px solid #93C121;
    background: #FFF;
    height: 40px;
    width: 70%;
}

.rkn-mobile-name span {
    color: #6C757D;


    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.rkn-mobile-items {
    border-right: 3px solid #93C121;
    border-left: 3px solid #93C121;
    border-bottom: 3px solid #93C121;
}

.rkn-mobile-items-name {
    border-right: 3px solid #93C121;
    background: #FFF;
    width: 90%;
    display: flex;
    justify-content: start;
    margin-left: 25px;
}

.rkn-mobile-items-name p {
    color: #6C757D;


    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.rkn-mobile-items-points {
    background: #FFF;
    width: 50%;
    display: flex;
    justify-content: start;
    margin-left: 25px;
}

.rkn-mobile-items-points p {
    color: #6C757D;


    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* FIM RANKING */

.text-start a {
    text-decoration: none;

    color: var(--primary-ascent-color);
}

.text-start a:hover {
    text-decoration: none;
    color: red;
}

.flickity-page-dots>.dot {
    width: 50px;
    height: 3px;
    background-color: #444;
    border-radius: 0;
}

.flickity-page-dots>.dot.is-selected {
    background-color: var(--primary-color);
}

.flickity-enabled {
    position: relative;
}

.flickity-viewport {
    overflow: hidden;
    border: none;
    box-shadow: none;
    outline: none;
    min-height: 300px;
}

.flickity-page-dots {
    display: flex;
    justify-content: center;
}

.flickity-page-dots>.dot {
    margin: 0 5px;
    overflow: hidden;
}

.flickity-prev-next-button {
    width: 26px;
    height: 26px;
    background: none;
    position: absolute;
    transform: translateY(-50%);
    border: none;
    top: 50%;
}

.flickity-prev-next-button.previous {
    left: -35px;
}

.flickity-prev-next-button.next {
    right: -35px;
}

.btn-large {
    width: 100%;
    padding: 12px 50px;
    font-size: 1.4rem;
    display: block;
}

.dataTable>.columns {
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
}

.dataTable>.columns>.column {
    width: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid #ccc;
    position: relative;
    padding: 0 10px;
}

.dataTable>.columns>.column>button {
    width: 55px;
    min-height: 50px;
    display: block;
    background-color: transparent;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: left;
    padding: 0 14px 0 0;
    border: none;
}

.dataTable>.columns>.column:after,
.dataTable>.columns>.column:before {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    right: 6px;
    top: 50%;
}

.dataTable>.columns>.column:before {
    margin-top: -10px;
    border-bottom: 7px solid #ccc;
}

.dataTable>.columns>.column:after {
    margin-top: 2px;
    border-top: 7px solid #ccc;
}

.dataTable>.columns>.column:first-child {
    padding-left: 0;
}

.dataTable>.columns>.column:last-child {
    border-right: none;
    padding-right: 0;
}

.dataTable>.data>.item {
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 10px;
}

.dataTable>.data>.item>.item-value {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6px 10px;
}

.dataTable>.data>.item>.item-value>button {
    width: 100%;
    min-height: 50px;
    display: block;
    background-color: transparent;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: left;
    padding: 0 14px 0 0;
    border: none;
}

.dataTable>.data>.item>.item-value:after,
.dataTable>.data>.item>.item-value:before {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    right: 6px;
    top: 50%;
}

.dataTable>.data>.item>.item-value:before {
    margin-top: -10px;
    border-bottom: 7px solid #ccc;
}

.dataTable>.data>.item>.item-value:after {
    margin-top: 2px;
    border-top: 7px solid #ccc;
}

.dataTable>.data>.item>.item-value:first-child {
    padding-left: 0;
}

.dataTable>.data>.item>.item-value:last-child {
    border-right: none;
    padding-right: 0;
}

.dataTable>.data>.item.active {
    background-color: #006eb3;
    background-color: var(--primary-color);
    color: var(--color-white);
}

.dataTable>.data>.item.featured {
    background-color: #fdf500;
}

.dataTable>.pagination {
    margin-top: 20px;
}

.dataTable>.pagination>ul {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

.dataTable>.pagination>ul>li {
    list-style: none;
    margin: 0 4px;
}

.dataTable>.pagination>ul>li:first-child {
    margin-left: 0;
}

.dataTable>.pagination>ul>li:last-child {
    margin-right: 0;
}

.has-loading {
    position: relative;
}

.has-loading:after {
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 0.53);
    left: 0;
    top: 0;
}

.has-loading:after,
.has-loading:before {
    content: "";
    display: block;
    visibility: hidden;
    position: absolute;
    transition: all 0.5 ease-out;
    z-index: -1;
    opacity: 0;
}

.has-loading:before {
    margin-left: -25px;
    margin-top: -25px;
    left: 50%;
    top: 50%;
}

.has-loading.is-loading:after,
.has-loading.table-loading:after {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.has-loading.is-loading:before,
.has-loading.table-loading:before {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.has-loading:before,
.loader {
    -webkit-animation: is-rotating 1s infinite;
    animation: is-rotating 1s infinite;
    border-radius: 50%;
    border: 6px solid #e5e5e5;
    border-top: 6px solid var(--primary-color);
    height: 50px;
    width: 50px;
}

@-webkit-keyframes is-rotating {
    to {
        transform: rotate(1turn);
    }
}

@keyframes is-rotating {
    to {
        transform: rotate(1turn);
    }
}

.react-alert {
    z-index: 99999 !important;
    font-size: 0.8rem;
}

.react-alert>div>div {
    margin: 12px;
    margin-bottom: 0 !important;
}

.ranking-page>.container>.ranking {
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.ranking-page>.container>.ranking>.row {
    align-content: stretch;
}

.ranking-page>.container>.ranking>.row>div {
    margin-bottom: 20px;
}

.ranking-page>.container>.ranking>.row>div>.box {
    height: 100%;
    border-radius: 14px;
    border: 1px solid #006eb3;
    border: 1px solid var(--primary-color);
}

.ranking-page>.container>.ranking>.row>div>.box>.title {
    border-radius: 10px;
    background-color: #006eb3;
    background-color: var(--primary-color);
    text-align: center;
    font-weight: 700;
    padding: 15px 0;
    font-size: 1.2rem;
    color: var(--color-white);
}

.ranking-page>.container>.ranking>.row>div>.box>.place {
    padding: 12px 0;
    text-align: center;
}

.ranking-page>.container>.ranking>.row>div>.box>.place>div {
    text-transform: uppercase;
    line-height: 3rem;
    font-size: 3.2rem;
    font-weight: 700;
    color: #444;
}

.ranking-page>.container>.ranking>.row>div>.box>.place>small {
    font-size: 1.4rem;
    text-transform: uppercase;
}

.ranking-page>.container>.ranking>.row>div>.box>.description {
    padding: 6px 0;
    text-align: center;
    font-size: 0.9rem;
}

.rewards-page {
    font-size: 1.2rem;
}

.reward-progress-page .reward-progress {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #eee;
    position: relative;
    margin-bottom: 40px;
}

.reward-progress-page .reward-progress>.progress-bar {
    height: 45px;
    max-width: 100%;
    background-color: #006eb3;
    border-radius: 10px;
}

.reward-progress-page .reward-progress>.steps {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: 0;
}

.reward-progress-page .reward-progress>.steps>.step-1,
.reward-progress-page .reward-progress>.steps>.step-2,
.reward-progress-page .reward-progress>.steps>.step-3 {
    width: 33.33%;
    height: 45px;
    font-weight: 600;
    border-right: 2px solid #eee;
    text-align: center;
    position: relative;
}

.reward-progress-page .reward-progress>.steps>.step-1>span,
.reward-progress-page .reward-progress>.steps>.step-2>span,
.reward-progress-page .reward-progress>.steps>.step-3>span {
    position: relative;
    top: 60px;
}

.reward-progress-page .reward-progress>.steps>.step-1:after,
.reward-progress-page .reward-progress>.steps>.step-2:after,
.reward-progress-page .reward-progress>.steps>.step-3:after {
    width: 41px;
    height: 41px;
    display: block;
    content: "";
    position: absolute;
    background-size: contain;
    right: 10px;
    top: 2px;
}

.reward-progress-page .reward-progress>.steps>.step-1>span {
    color: #006eb3;
}

.reward-progress-page .reward-progress>.steps>.step-1:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAlCAYAAADFniADAAAABHNCSVQICAgIfAhkiAAABAFJREFUWEetWItRG0EM5WgAUkEOKCBQAaYCSAUxFdhUgFNBoAJMBeAKYiqIUwDYVBDSAM57G+lGJ+/e7nnYGcbGu9I9SW/1uWpni7VcLs/f398vqqqqRXwgnyt88m8He4/4mB0cHIT/+6yq9DCADABkhIddlMooUMhM8f0WAN9KZLOgAKZer9d3UKbeKNEbO7MCuAmA3ecUdIICoBEA3USUvOK3uYRIrWeYQjjh0YF49EtEdoG9sy6vJUE9Pz/fQXjolD6JtfOctdyHUfsAOMbXMeT2jMybAFvE9ERBvby8/MLhYyPwG0rGsK4IjH+QgJtAx8gB+xrTuQEq4qEZPVZK0i4PAtwQnrsxXot6rAUKgOjmH0bx/eHhoQ9hSeSSZwDsGMDIRw3nBscaUHLLlkbbDID6Xv8iwHjWBS7QQ8r4BhR49BOHBnKQHBp8RMhSKH1U8Dw87n+iDaCYGIGcoMKSm1FMaiHy8OjoKJY+kt6DIwjisxxoqBJAYZMl4Vw2nxA29VhpOIYwagS5kyIBORRxRvCWglpv6yUxaorPbzYEpeDgEOaqkGRh2BW9XTnSvcLaulShngM/eLX3VGkfecetEKUKSIOVPq6lip1Riy1CeAxjmKzDgnGfCGqO76fyAzMs+VW8nFFU2tyiUiXqacFw5kGxUBJkazHhwZoJfrT1S8+wHO0bAXJko0WB/Cx1O51jAihL8hOAihZJSa70YqzyJ50CMH+xOelKFw7UpQeVdT1czdplC2tXlJiEWTejhqqgBQUjvhPUCpshgZUmTelCH1070gIH5be7u7ts6rLdZix8luhRTsVcEalf9livBAxQrLl1lOh98oy/dR44r3aJl1ii8Nw/Ks/bW7nkVZxn7DUWhWyRtY6RCpcANe0iHPdiyZsZnYNB07KUWCgpQhPeq7TNC+nnNREXtT7W4+QhbulYa19DdrIfG8xJyWVu4EZXarvLnIHiEBoX8hzOh+QdQOEh7J+vBQXrGFND8tawiAL8NJV7NKdBz01XCB0vm7qr/RTJxlwSOKFuTNw6WlXnco/whY0ib/fGchRocdC2w+yJOHSGVUrUHJFThklTqRNTqztpDQ62t4GyztlsGzAqA7o8wOim//dJuwVK2lqO11p4CSw6m20DSvRzyG0AxXLjxtwXGYEYSg6it9sAURnhEOlhh9zoCBedkBO1jfPZVYq4KcDinWsa5s4kZ8rkuwSxbApFvlUhOP6efPdEINg/lXdYDJXtt5pePGVI7q0LUwXHJs3SXg9zmW9LCMCGyMqE7J/zdvb9FDVKMiQ4HcP60otg2MbQw9lVBMqQtTYhCX19x2reYfXt+3uBsgCENxomgq3R1M3lzIpDZdYliQP/AByRfTYqa3Q2AAAAAElFTkSuQmCC) 50% no-repeat;
}

.reward-progress-page .reward-progress>.steps>.step-2>span {
    color: #f6a221;
}

.reward-progress-page .reward-progress>.steps>.step-2:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAlCAYAAAAnQjt6AAAABHNCSVQICAgIfAhkiAAAAoxJREFUWEftmE1uEzEYhuuskagEC3bNJBt2bfdInZ6AcgLCCdpu2LY5AS0XIJyg4QSEEzAcID8gliDSih0o6fOO7JFjxtMgNICqsTTy2N+P3+/z658Zs3FDmU6n6WKxODTGpKhu8syWy+Wo1Wr1kySZ+ebo9pA9pU+6Khl2Q+pzdOdVQ5kq4Xg8PsLRi4jOHNkTBhhJPplMNODjiK4ASXcFuK8bBUJ0B0R3ETj+QHvb6xOYhIwJ8Inrx+6StjKw5elmnU5nNxZ4FAgRCr1z9BrHR0ovADcZSNHvySnvx1SnyO+6drfbPdO7ndahk1E/w8egDEwpEBy0GWBqDT4SSds3Rr6D/L3t09Sk9v0NugeBrnjzKiZ3ujEgKcZvq4zJ2NLKv1Dft9nok43TCtDvAOpAryQmBsSPuHRuAZLhyefLhiWkpq0oAdd+yVhlRiRkxYiI+bxbfpz7AwBEU5LzpHBmzL5bReqzUyzC79iMHTv+rKRDY4Qdrg0QEbBYCfRrFWRM2Zw9RHWPdtu3p28gPew0sPacHIAFcYldO7af5EBAfoKTtATUQ/oexMCu24/vnwoCgN8D4ApKG2NmiPwMhcN1ndagpwzuGub6m01jDWOs51J7kYC4ZRhdWqE7bL4SxUtS2vdlZPcH7ecQMnYsFOra7NwWQd3/L4FcgeyTPSNErmhB7xF6n1GYBUp7yMZWVuXiDsJ7PIldUXlGBjR0dP+zooPT2ENMh9RfB6NTmuXbg2vDYkP7HdL+CVlDkrqzqQHiSNpkpOFIuDk1GWkyctM1oOFIw5FbyZH8Q6rGq2Lx4aVLc9npO2LwlU/Iuu+OXBGLT9TiYhT+96gThL0i6n+L7st5qfx1VSeY0Pc14fYEGc+IB5IAAAAASUVORK5CYII=) 50% no-repeat;
}

.reward-progress-page .reward-progress>.steps>.step-3 {
    border-right: 0;
}

.reward-progress-page .reward-progress>.steps>.step-3>span {
    color: #900505;
}

.reward-progress-page .reward-progress>.steps>.step-3:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAAlCAYAAADfosCNAAAABHNCSVQICAgIfAhkiAAAAw9JREFUWEfdmEty00AQhhmv2JFUDoAfB8DsqcKcAGfHDuUEMSfAOQHOjh3JCTAniH0CzAH8yJKdOYBt/n/So2omeoxk2Y6ZKpUsadTzqbvnnx6b6XTaN8Z8fvY02xJs78xsNts8Tb4Hqs1mc3V8kKD+VKvVJs6zuI7w+6Nc/4Lre1V4fb1et2Hri7PFkGq7etxHnmTnRqMxci94+TpuNpudKiDn83kHg985W7BrtF097vFAgpoz6AW/BOdzeHJ4aE9iMjOab/XEIdR7AbuF65mHth0i3EiFE4R4juFPxHEXBiA9L4lfw5t28hwCEmMOwHOpJtWpEXJCvZQHVkAJum9I32GcNK1Wq29nFUC7uPHdk4EbXD8H8Ae5v7PZTWkT2WkrBkpeB85axlMfoBE6fsuQmJ1B+mOC4w/0moA27f7RJ/HoQIVev18pJAT9Dp5K8skY97v0YJyXfi/mKO4x/F2c3+A423W4YX+M8Sbw3lAvJqmQGtpbGZaQp9OMdAh+pO0ytJgcVm7SWqK/XWcYa8PIz/iLjMGHNhbBNCkdPZnJTaNMSI4B9SeUlScWIPhq5uxWDTY5IV6JTSszpT3JF72vXiCpKfZxUhel9eVO7MWVV5K9XE/CaF2WKfu+E9iicOwvCwfTpy7v54aa/XIhJeQ3OLu6koXIBbzJe4WaLhzs4F5pmGYsCDJh6eQAPYBeh1DK+6wf4xUFEblGLgYV0UGQEqo2BHjkyjqB4/VVkra58OJ8CSDCaJn5ATmjDge1YMgMUD5aAGQEMV64UXHdwW8efruVKARPvkKQzjsAYA1qi9LQRtFG30Ge3CTZKwzpjMiq0c+DJRw8N8TRL7sQlIZUsHWGdbVaRQi3K/l/495X7jz1diTU636/rSGdwV0VyLT/f0NKSWfXXzbIU4S8i+Ry4v2RcF82H0t7UpZKLm+ZJZbOLX+7XCQ/S4U7aU+UN+g2a35ZSO6Ni2jlvWwJMqudtA8tBZnntaqfp0L6m/SqB9b2GBWsROeFPbnvP1eRDqlbkyxP7vNv6syq6Chy8i8GYwlF9UotYAAAAABJRU5ErkJggg==) 50% no-repeat;
}

.quizzes-page p,
.goals-and-results-page p {
    color: #000000;
    /* font-size: 35px; */
    text-align: center;
    padding-bottom: 2em;
    padding-left: 3em;
    padding-right: 3em;
    font-weight: 400;
}

.quizzes-page .dataTable .column {
    max-width: 100%;
    font-size: 0.825rem;
    font-weight: 500;
}

.quizzes-page .data .quiz .btn-start {
    width: 100%;
    display: block;
    padding: 8px 0;
    align-self: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.quizzes-page .data .quiz .btn-link {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0;
}

.quizzes-page .data .quiz .btn-link.disabled {
    text-decoration: none;
}

.quiz-page .accordion-button:after {
    transform: rotate(0);
}

.quiz-page .form-check {
    padding: 6px 16px;
    background-color: var(--color-white);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.13);
    margin-bottom: 14px;
}

.quiz-page .form-check .form-check-input {
    margin-left: 0;
}

.quiz-page .form-check img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.quiz-page .form-check.is-correct {
    background-color: #dcf7dc;
    box-shadow: 0 0 4px #dcf7dc;
}

.quiz-page .form-check.is-wrong {
    background-color: #ffdbdb;
    box-shadow: 0 0 4px #ffdbdb;
}

.quiz-page .form-check:last-child {
    margin-bottom: 0;
}

/*select de paginas*/

.select {
    width: 20%;
    -webkit-appearance: none !important;
    -webkit-border-radius: 0px;
    background-color: #fafafa;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
    background-position: 100% center;
    background-repeat: no-repeat;
    border-style: solid;
    border-width: 1px;
    border-color: #cccccc;
    padding: 0.5rem;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    color: rgba(0, 0, 0, 0.75);
    line-height: normal;
    border-radius: 0;
    height: 2.3125rem;
}


/*# sourceMappingURL=main.9d756fa1.chunk.css.map */

@-webkit-keyframes slide {
    100% {
        left: 0;
    }
}

@keyframes slide {
    100% {
        left: 0;
    }
}

/* NOTÍCIAS */

.ler-mais-noticia {
    text-decoration-line: underline;
    color: #1B458E;
}

.titulo-noticia {

    font-style: normal;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 24px;
    line-height: 28.13px;
    display: flex;
    align-items: center;
}

.conteudo-noticia {

    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
}

.news-btn-outline-paginate-left {
    color: var(--primary-color);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px 0px 0px 10px;
    padding: 10px;
}

.news-btn-outline-paginate-right {
    color: var(--primary-color);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px 10px 10px 0px;
    padding: 10px;
}

.news-card-footer-paginate {
    padding: .5rem 1rem;
    /* border-top: 1px solid rgba(0, 0, 0, .125); */
}

/* GOALS */

.goals-and-results-page>.container>.row>div>.quarter {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    margin-bottom: 20px;
}

.goals-and-results-page>.container>.row>div>.quarter>.title {
    background-color: #006eb3;
    background-color: var(--primary-color);
    border-radius: 20px 20px 0 0;
    padding: 4px 20px;
    font-size: 1.6rem;
    color: var(--color-white);
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content {
    padding: 20px;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule {
    position: relative;
    border-left: 20px solid #006eb3;
    border-left: 20px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: default;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule>.title {
    min-height: 60px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    padding: 0 30px 0 10px;
    position: relative;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule>.title>span {
    vertical-align: middle;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule>.title:after {
    width: 0;
    height: 0;
    content: "";
    display: block;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #000;
    position: absolute;
    right: 10px;
    top: 16px;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule>.results {
    width: calc(100% + 20px);
    height: auto;
    max-height: 0;
    position: absolute;
    transition: all 0.2s ease;
    border-left: 20px solid #006eb3;
    border-left: 20px solid var(--primary-color);
    overflow: hidden;
    padding: 0 20px;
    z-index: 10;
    opacity: 0;
    left: -20px;
    top: 100%;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule>.results>.result-item {
    width: 100%;
    font-size: 1.6rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #444;
    font-weight: 600;
    margin-bottom: 10px;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule>.results>.result-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule>.results .option.option-true {
    color: #05901f;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule>.results .option.option-true:before {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAQtJREFUOE/d1MFRwkAUBuD/j5s7nHUgHUgHYiUMFUgqECtY7CAl0AGhA0rQON71TNjn2yhOhhEXNifdS07vm82+/z0aO5iTvEfHI0BZz55vmS6GIoI1IGWsSSADORHZ7UF5qPNqHgsaezUmL1b/GbSXo+Z58teN/3T7ZcUMzcpD2tV+N/AL0672nLjpLn8p4sEjWBi0WS9N3GR7Vz1+x+gXLAimdlD4kGrQi+2smiKABUH4G/qpIa51nJZaMD58s8MBCHe5hfridgN+mqYw6KsUNXCFQJb7bh4bzdPAMwb7D4I+IpK4JvUxh5KMIFw068vYYUniJgZq1+iSfq/BTCP2uS26gjXMBvnT2wcKZDbCq/fXRgAAAABJRU5ErkJggg==) no-repeat;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule>.results .option.option-false {
    color: #c51f1f;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule>.results .option.option-false:before {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAMJJREFUOE/VlMENwjAMRW3U7sEIbABMwgrtBJQJYIRuQtiAUeBcS+YHqQhFKXLS9ICPSfzy/Z2Yz1XVMfOR5oaqa0T2fKlrRdzAc9lM5jUTHcD5AE+tSJcLRJU7VHn9Y6D3tRkG2BKPcN9U8hQ0tm4Cem1h8tQlZuA39JcNScCY0tDZJOCorIjCoh4W7fIi7zDlXyc1xQJeHggV/Uq1t6iJnVHmjeJjvccX5DrMsm0ubMwD7EkiftASeQ/mAgG7t0SPF92ALQoujaz0AAAAAElFTkSuQmCC) no-repeat;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule>.results .option:before {
    width: 20px;
    height: 20px;
    content: "";
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 4px;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule:hover {
    border-radius: 12px 12px 0 0;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule:hover>.title:after {
    border-top: none;
    border-bottom: 8px solid #000;
}

.goals-and-results-page>.container>.row>div>.quarter>.inner-content>.dropdown-rule:hover>.results {
    background-color: var(--color-white);
    box-shadow: 0 10px 6px rgba(0, 0, 0, 0.27);
    border-top: 1px solid #666;
    border-radius: 0 0 12px 12px;
    max-height: 999px;
    opacity: 1;
    overflow: visible;
    padding: 20px;
}

.menu-mobile {
    display: none;
}

.botao-red-mydata {
    color: var(--color-white);
    background-color: var(--primary-ascent-color);
    border-color: var(--primary-color);
}

header.main-header>.navbar>.container>.dados-user-mobile {
    display: none;
}

header.main-header>.navbar>.container>.circulo-sair-mobile>button.icon {
    display: none;
}

.preenchimento {
    display: none;
}

.home-page>.banner>.logotipo-home-mobile {
    display: none;
}

header.main-header>.container>.logotipo-topo>a>img {
    display: none;
}

.copyright {
    background: #D9D9D9;

    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    padding: 8px 0;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}

.quizz-list .head-card a {
    color: inherit;
    text-decoration: none;
}

.quizz-list .head-card .number {
    background: #A6A6A6;
    border-radius: 10px 0px 0px 0px;

    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
}

.quizz-list .head-card .head {
    background: linear-gradient(90deg, #0D6EFD 0%, #1B458E 100%);
    border-radius: 0px 10px 0px 0px;

    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.cards-mini .head {
    background: #A6A6A6;
    border-radius: 10px 10px 0px 0px;

    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    height: 40px;
}

.cards-mini .head-meta {
    background: #b10000;
    border-radius: 10px 10px 0px 0px;

    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    height: 40px;
}

.cards-mini .head-extract {
    background: #D9D9D9;

    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    height: 40px;
}

@media(max-width:991px) {
    .cards-mini .head {
        background: #A6A6A6;
        border-radius: 10px 10px 0px 0px;

        font-style: normal;
        font-weight: 300;
        font-size: 12px;
        line-height: 16px;
        color: #FFFFFF;
        height: 40px;
    }

    .mini-card-meta {
        width: 300px;
    }
}

.cards-mini .value {

    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #000000 !important;
    height: 30px;
}

.cards-mini .value a {
    color: #000000 !important;
    text-decoration: none;
}

#accordion .card {
    box-shadow: none;
}

.quizz-list .card-header {
    border-bottom: 0;
}

.quizz-list .card-header h5 {
    background: #D9D9D9;
    border-radius: 10px;

}

.quizz-list .card-header button {
    width: 100%;
    text-decoration: none;
    background: #D9D9D9;
    outline: none;
    box-shadow: none;
    border: 0 !important;

    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 40px;
    color: #FFFFFF;
    text-align: left;
    opacity: 1 !important;
    border-radius: 10px;
}

.quizz-list .card-header button img {
    position: absolute;
    right: 20px;
    top: 15px;
}

.quizz-list .card-header button.result {
    background: #94C11F !important;
}

.quizz-list .collapse,
.quizz-list .collapsing {
    margin-top: -10px;
    padding-top: 10px;
}

.quizz-list .collapse.show {
    border-top: 0 !important;
    border: 1px solid transparent;
    border-radius: 0 0 10px 10px;
}

.form-contato {

    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #B10000;
}

.form-contato strong {

    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.form-contato label {

    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.botao-entrar-portal {

    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    border-radius: 10px;
    background: #1B458E;
    border: 1px solid #1B458E;
    padding: 12px 35px;
}

.botao-entrar-portal:hover {
    background: linear-gradient(90deg, #6F42C1 0%, #2F017B 100%);
}

.title-page h2 {

    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #1B458E;
}

.title-page h3 {

    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.card-head h3 {
    color: #1B458E;
    font-weight: bold;
}

.card-text p {
    color: #000000;
    font-size: 1.3rem;
}

.img-fluid-punta {
    max-width: 100%;
    height: auto;
    width: 20%;
}

/* RANKING */

.rank-custom {
    border: 1px solid #000;
    border-radius: 10px;
    height: 50px;
    font-weight: bolder !important;
    font-size: 18px;
    height: 60px;
}

.rank-geral-custom {
    border: 1px solid #000;
    border-radius: 10px;
    height: 50px;
    font-weight: bolder !important;
    font-size: 13px;
    height: 60px;
}

/* ARENA BIO */

/* .card-arena-bio {
    height: 50vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} */

.card-arena-bio>p {
    color: #6C757D;

    text-align: center;

    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.desafio-gp {
    text-align: center;
}

.desafio-gp-header {
    text-align: start;
    background-color: #d9d9d9;
    height: 35px;
    padding: 8px;
    margin-bottom: 10px;
}

.desafio-gp-header>h4 {
    width: 109px;
    position: relative;
    font-size: 19px;

    color: #6c757d;
    text-align: left;
    display: flex;
    align-items: center;
    height: 22px;
}

/* FIM ARENA BIO */

/* BIO BETS */

.card-bio-bets {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.card-bio-bets p {
    color: #6C757D;

    text-align: center;

    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* FIM BIO BETS */

/* MOBILE */
@media(max-width:425px) {
    #div-menu {
        left: 0px;
        height: 400px;
    }

    .card-dash {
        width: auto;
        margin-bottom: 20px;
    }
}

.card-bio-challenge p {
    color: #6C757D;
    font-size: large;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.card-bio-challenge hr {
    margin-top: 0;
}

.card-bio-challenge span {
    font-weight: bold;
    font-size: 20px;

    font-style: normal;
    color: #93C121;
}

.extrato a,
.card-bio-challenge a {
    text-decoration: none;
    color: #fff;
    background: #0067b2;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    font-size: medium;
    /* display: flow-root; */
}

.extrato a:hover,
.card-bio-challenge a:hover {
    background: #1B458E;
    color: #fff;
}

.card-bio-challenge .card-footer button {
    text-decoration: none;
    color: #fff;
    background: #0067b2;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: medium;
}

.card-bio-challenge .card-footer button:hover {
    background: #1B458E;
    color: #fff;
}

.card-bio-challenge .card-footer button:disabled {
    background: #354c79;
}



.card-bio-challenge .desafios h3 {
    font-weight: 500;

}

.card-bio-challenge .desafios p {
    color: #fff;

    font-style: normal;
    font-weight: normal;
}

.card-bio-challenge .desafios hr {
    color: #fff;
    margin: 1rem 0;
    height: 2px;
}

.card-bio-challenge .desafios h6 {
    color: #fff;

    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.card-bio-challenge .desafios span {
    color: #fff;

    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    min-width: max-content;
}

.card-bio-challenge .desafios input {
    background: #fff;
    border: none;
    width: -webkit-fill-available;
}

.card-bio-challenge .desafios .aceite_desafio input {
    width: auto;
}

.card-bio-challenge .desafios input:disabled {
    width: 100%;
    max-width: 80px;
    max-height: 40px;
    background: #f1f1f1;
    border: none;
}

.div-status-ganhou,
.div-status-perdeu,
.div-status-aguardando,
.div-status-participando {
    position: absolute;
    z-index: 8888;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div-status-ganhou h5,
.div-status-perdeu h5,
.div-status-aguardando,
.div-status-participando h5 {

    font-weight: 700;
}

.div-status-perdeu h5>span {
    color: #DB9600 !important;
    font-weight: 700 !important;
    font-size: 20px !important;
}

.div-status-ganhou h5>span {
    color: #93C121 !important;
    font-weight: 700 !important;
    font-size: 20px !important;
}

.div-status-ganhou a,
.div-status-perdeu a,
.div-status-aguardando a,
.div-status-participando a {
    color: #fff !important;
    text-decoration: underline !important;
    background: none !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}


.card-status-perdeu,
.card-status-ganhou,
.card-status-aguardando,
.card-status-participando {
    background: #000 !important;
    opacity: 0.9;
    filter: brightness(10%);
}

/* BIO-CHALLENGE */
/* FIM BIO-CHALLENGE */

/* EXTRATO BIO-CHALLENGE */
.card-extrato-bio-challenge span {
    color: #6C757D;

    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card-extrato-bio-challenge hr {
    margin: 0;
    height: 2px;
}

.card-extrato-bio-challenge h3 {
    color: #6C757D;

    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.card-extrato-bio-challenge p {
    color: #6C757D;

    text-align: center;

    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.extrato-gb {
    text-align: center;
}

.extrato-gb-header {
    text-align: start;
    background-color: #d9d9d9;
    padding: 8px;
    margin-bottom: 10px;
}

.extrato-gb-header>h4 {
    font-size: 16px;

    color: #6c757d;
    text-align: left;
    margin: 0;
}


/* FIM EXTRATO BIO-CHALLENGE */

.modal-view-desafio {
    background: none;
    color: #fff;
    text-decoration: underline;
    border: none;
}

.confirm-bio-token input:disabled {
    background-color: #fff;
}

.valor-investido .extrato-gb-header {
    min-width: max-content;
}