/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span {
    color: var(--font-color);
}

body {
    font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: var(--primary-color);
    height: 100vh;
    max-width: 1440px;
    margin: auto;
}

.page-content-padding {
    padding: 90px 24px 30px 24px;
}
@media all and (max-width: 767.98px) {
    .page-content-padding {
        padding-left: 16px;
        padding-right: 16px;
    }
}

svg {
    stroke: var(--font-color);
    stroke-width: 0.7px;
}

/* Div Pai */
/* Toda div pai deve ter o a class de .mainContainer para pegar o posicionamento completo */
.mainContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    height: 100%;
    padding-top: 90px;
}

.disabled-link {
    color: var(--dark-grey);
    cursor: default;
}

.disabled-link svg {
    stroke: var(--dark-grey) !important;
}

/* Page Title */
.pageTitle {
    width: 100%;
    max-width: 100%;
    padding-bottom: 24px;
}
.pageTitle h1 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    color: var(--font-color);
    text-align: left;
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}
.pageTitle .breadcrumbs {
    color: var(--font-color);
    opacity: 0.8;
    font-size: 14px;
}

/* Botões */
.button {
    font-size: 16px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}
.button svg {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
/* Botão Primário */
.buttonPrimary {
    background-color: var(--laranjaNB);
    color: var(--font-color);
    border: 1px solid var(--laranjaNB);
}
.buttonPrimary:hover {
    background-color: transparent;
    color: var(--laranjaNB);
}

.buttonPrimary.alt:hover {
    background-color: var(--font-color);
}

.buttonPrimary:hover svg {
    stroke: var(--laranjaNB);
}
.buttonPrimary:focus,
.buttonPrimary:active {
    -webkit-box-shadow: 0px 0px 0 4px hsl(27.23deg 98.42% 49.61% / 28%);
    box-shadow: 0px 0px 0 4px hsl(27.23deg 98.42% 49.61% / 28%);
    outline: none;
}
/* Botão Primário Outline */
.buttonPrimaryOutline {
    background-color: transparent;
    color: var(--laranjaNB);
    border: 1px solid var(--laranjaNB);
}
.buttonPrimaryOutline svg {
    stroke: var(--laranjaNB);
}
.buttonPrimaryOutline:hover {
    background-color: var(--laranjaNB);
    color: var(--font-color);
}
.buttonPrimaryOutline:hover svg {
    stroke: var(--font-color);
}
.buttonPrimaryOutline:focus,
.buttonPrimaryOutline:active {
    -webkit-box-shadow: 0px 0px 0 4px hsl(27.23deg 98.42% 49.61% / 28%);
    box-shadow: 0px 0px 0 4px hsl(27.23deg 98.42% 49.61% / 28%);
    outline: none;
}

button:disabled,
.button.disabled-link {
    background-color: var(--disable-grey) !important;
    border-color: var(--disable-grey) !important;
    cursor: default;
}
button:disabled,
button:disabled span,
.button.disabled-link {
    color: var(--dark-grey) !important;
}

button:disabled:hover span,
button:disabled:hover {
    color: var(--dark-grey) !important;
}
/* Botão Sucesso */
.buttonSuccess {
    background-color: var(--color-success);
    color: #141416;
    border: 1px solid var(--color-success);
}
.buttonSuccess:hover {
    background-color: transparent;
    color: var(--color-success);
}
.buttonSuccess:hover svg {
    stroke: var(--color-success);
}
.buttonSuccess:focus,
.buttonSuccess:active {
    -webkit-box-shadow: 0px 0px 0 4px rgba(52, 199, 100, 0.28);
    box-shadow: 0px 0px 0 4px rgba(52, 199, 100, 0.28);
    outline: none;
}
/* Botão Danger */
.buttonDanger {
    background-color: var(--color-error);
    color: #141416;
    border: 1px solid var(--color-error);
}
.buttonDanger:hover {
    background-color: transparent;
    color: var(--color-error);
}
.buttonDanger:hover svg {
    stroke: var(--color-error);
}
.buttonDanger:focus,
.buttonDanger:active {
    -webkit-box-shadow: 0px 0px 0 4px rgba(229, 55, 52, 0.28);
    box-shadow: 0px 0px 0 4px rgba(229, 55, 52, 0.28);
    outline: none;
}
/* Botão Secondary */
.buttonSecondary {
    background-color: transparent;
    color: var(--disable-grey);
    border: 1px solid var(--disable-grey);
}
.buttonSecondary:hover {
    background-color: var(--font-color);
    color: var(--primary-color);
}
.buttonSecondary:hover svg {
    stroke: var(--primary-color);
}
.buttonSecondary:focus,
.buttonSecondary:active {
    -webkit-box-shadow: 0px 0px 0 4px rgba(47, 45, 45, 0.28);
    box-shadow: 0px 0px 0 4px rgba(47, 45, 45, 0.28);
    outline: none;
}
@media all and (max-width: 767.98px) {
    .button {
        /* height: 27px; */
        font-size: 14px;
        padding: 8px 12px;
        gap: 6px;
    }
}
/* PopUp Compra efetuada com Sucesso */
.PopUpFuncao {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.notification {
    position: fixed;
    top: 70px;
    height: 70px;
    width: 400px;
    border-radius: 6px;
    background-color: var(--select-color);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    -webkit-animation: fade-in 4s linear forwards;
    animation: fade-in 4s linear forwards;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: var(--font-color);
    z-index: 1;
}

.notification_body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 10px;
}

.notification_body svg {
    margin-right: 20px;
    color: var(--azulClarinho);
}

@-webkit-keyframes fade-in {
    5% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    90% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fade-in {
    5% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    90% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.progress-container {
    margin-left: 2px;
    width: 99.3%;
    background-color: var(--select-color);
}

.progress-bar {
    border-radius: 5px;
    width: 0px;
    height: 5px;
    background-color: var(--laranjaNB);
}

/* Responsividade do POPUP de pagamentos e Depositos Realizados. */
@media (max-width: 950px) {
    .notification {
        width: 380px;
        margin-right: 0;
    }
}

@media (max-width: 450px) {
    .notification {
        width: 300px;
        height: 55px;
        margin-right: 30px;
        top: 0px;
    }

    .notification_body p {
        font-size: 12px;
    }
}

/*Scroll bar Custom*/
/* width */
::-webkit-scrollbar {
    width: 7px;
    border-radius: 20px;
    height: 5px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #555;
    border-radius: 20px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--laranjaNB);
    border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
    border-radius: 20px;
}

/* Cards */
.card {
    background: var(--secondary-color);
    color: var(--font-color);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    font-family: "Montserrat", sans-serif;
    height: 100%;
}
.card .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    /* min-height: 50px; */
}
.card .header svg {
    width: 24px;
    height: auto;
    stroke: unset;
    color: var(--font-color);
    opacity: 0.5;
}
.card .header .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
}
.card .header h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    color: var(--font-color);
}
.card p {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.4;
}
.cardbutton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 16px;
}
.cardPlaceholder {
    padding: 24px;
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}
.cardPlaceholder .icon img {
    height: 112px;
}
.cardPlaceholder .legend p {
    font-family: "Nunito", sans-serif;
    font-weight: 100;
    opacity: 0.7;
    max-width: 300px;
}
@media all and (max-width: 575.98px) {
    .card {
        padding: 24px 16px;
    }
    .card .header {
        gap: 0;
    }
    .card .header .title {
        padding-right: 16px;
    }
    .card .header .title > svg {
        display: none;
    }
    .cardPlaceholder {
        padding: 16px;
        gap: 24px;
    }
}

/* Flex Content */
.flex-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.flex-content .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    height: 100%;
}

.flex-content .col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 194px;
    background-color: var(--color-error);
    color: #fff;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    position: absolute;
    z-index: 1;
    top: -62px;
    right: 0;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}
.tooltip .tootipclose {
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
}

@media all and (min-width: 1200) {
    .tooltip:hover .tooltiptext {
        visibility: visible !important;
    }
}
/* Inputs */
.input-group > div > span,
.input-group > div > label {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 12px;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
    border: 1px solid #4e4e4e;
    background: transparent;
    border-radius: 8px;
    color: var(--font-color);
}
input[type="text"].is-invalid,
input[type="number"].is-invalid {
    border: 2px solid var(--color-error);
}
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input:focus,
input:focus-visible,
input:focus-within,
input:active {
    outline: none;
    -webkit-box-shadow: 0px 0px 0 4px hsla(0, 0%, 100%, 0.5);
    box-shadow: 0px 0px 0 4px hsla(0, 0%, 100%, 0.5);
}

input[type="text"]:read-only,
input[type="number"]:read-only {
    background: var(--select-color);
    border: 1px solid var(--select-color);
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.custom-select-icon {
    position: relative;
}
.custom-select-icon i {
    position: absolute;
    right: 12px;
    top: calc(50% - 10px);
    color: var(--font-color);
}
select,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"] {
    padding: 10px 12px;
}