:root {
    --primary-color: #084e91;
    --secundary-color: #61c2d1;
    --font-family: "Roboto", sans-serif;
    --body-color: #6e6b69;
    --border-radius: 5px;
    --font-weight: 400;
    --font-style: normal;
}

body {
    overflow-x: hidden;
    font-family: var(--font-family);
    color: var(--body-color);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
}

img {
    max-width: 100%;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--secundary-color);
    text-decoration: underline;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secundary {
    color: var(--secundary-color) !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-secundary {
    background: var(--secundary-color) !important;
}

.bg-secundary-transparent {
    background-color: #eff9fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

sup{
    font-size: 70%;
}

section.header{
    background: rgb(8,78,145);
    background: -moz-linear-gradient(120deg, rgba(8,78,145,1) 0%, rgba(8,78,145,1) 20%, rgba(79,166,189,1) 43%, rgba(8,78,145,1) 75%);
    background: -webkit-linear-gradient(120deg, rgba(8,78,145,1) 0%, rgba(8,78,145,1) 20%, rgba(79,166,189,1) 43%, rgba(8,78,145,1) 75%);
    background: linear-gradient(120deg, rgba(8,78,145,1) 0%, rgba(8,78,145,1) 20%, rgba(79,166,189,1) 43%, rgba(8,78,145,1) 75%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#084e91",endColorstr="#084e91",GradientType=1);
    position: relative;
    z-index: 1;
}

section.header::after{
    content: "";
    background-color: #ffffff;
    width: 100%;
    height: 30%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.button-okay {
    font-size: 14px;
    background: var(--secundary-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-appearance: none;
    border: none;
    text-align: center;
    border-radius: var(--border-radius);
    padding: 10px 30px;
    display: inline-block;
}

.button-okay:hover {
    color: #ffffff;
    background: var(--primary-color);
    transition: background 0.2s linear;
    cursor: pointer !important;
}

.button-cancel {
    font-size: 14px;
    background: #fc4254;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: var(--border-radius);
    -webkit-appearance: none;
    text-align: center;
    padding: 10px 30px;
    display: inline-block;
}

.button-cancel:hover {
    color: #ffffff;
    background: #c82333;
    cursor: pointer !important;
    transition: background 0.2s linear;
}

/* END DEFAULT STYLES */

/* FOOTER */

.footer {
    font-size: 70%;
    background-color: #e6e6e6;
}

/* FOOTER */

.bootbox-body {
    color: var(--body-color);
}

.form-check-input[type=radio]{
    border-radius: 0.25em;
}

.form-check-input:checked[type=radio]{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input{
    background-color: #f2f2f2;
    border-color: #b3b3b3;
}

.form-check-input:checked{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:checked~.form-check-label {
    font-weight: bold !important;
}

.form-control{
    background-color: #f2f2f2 !important;
    border-color: #b3b3b3 !important;
}

#tabela.table>:not(:last-child)>:last-child>* {
    border-bottom-color: #c0e7ed;
}

#tabela td{
    border-color: #d7f0f4;
}

#tabela.table-hover>tbody>tr:hover{
    --bs-table-accent-bg: #d7f0f4;
}

.form-select {
    background-color: #f2f2f2 !important;
    border-color: #b3b3b3 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2361c2d1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-size: 18px 24px;
    width: 70%;
    margin: 0 auto;
}

.form-select option{
    text-align: center;
}

div[class^="button-"]{
    display: inline-block;
    border-radius: 5px;
    font-weight: 500;
    padding: var(--button-radius);
    background-color: var(--bg-button-background);
    margin-bottom: 10px;
    transition: all 0.3s ease-in;
}

div[class^="button-"]:hover{
    background-color: var(--bg-button-background-hover);
    color: var(--button-color-hover);
    cursor: pointer;
}

.button-clean {
    --bg-button-background: #d9d9d9;
    --button-radius: 10px 50px;
}

.button-clean:hover{
    --bg-button-background-hover: var(--secundary-color);
    --button-color-hover: #ffffff;
}

.button-calc {
    --bg-button-background: var(--primary-color);
    color: #ffffff;
    --button-radius: 10px 10%;
    margin-left: 25%;
}

.button-calc:hover{
    --bg-button-background-hover: var(--secundary-color);
    --button-color-hover: #ffffff;
}

.your-result{
    max-width: 60%;
    margin-inline: auto;
    background-color: #666666;
    padding: 5px 10px;
    color: #ffffff;
    border-radius: 5px;
}

.recommendation{
    max-width: 60%;
    margin-inline: auto;
    background-color: #f59400;
    padding: 5px 10px;
    color: #ffffff;
    border-radius: 5px;
}

.resultDiv{
    max-width: 80%;
    margin-inline: auto;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
}

.resultDiv .header{
    background-color: #d9d9d9;
}

.resultDiv .header.good, .your-result.good{
    background-color: #61c2d1;
    color: #ffffff;
}

.button-folheto {
    --bg-button-background: var(--primary-color);
    color: #ffffff;
    --button-radius: 10px 30px;
}

.button-folheto:hover{
    --bg-button-background-hover: var(--secundary-color);
    --button-color-hover: #ffffff;
}

@media only screen and (max-width: 768px) {
    .button-calc{
        margin-left: 0;
        --button-radius: 10px 30%;
    }

    .form-select {
        width: 100% !important;
    }

    #tabela tr td:last-child {
        min-width: 100px;
    }

    .your-result, .recommendation{
        max-width: 100%;
    }
}

@media only screen and (min-width: 1800px) {}