:root {
    --primary-color: #010c4f;
    --secundary-color: #93fa00;
    --font-family: "Jost", sans-serif;
    --body-color: var(--primary-color);
    --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%;
}

.header .row{
    height: 100dvh;
}

.header .bg-img{
    background: url("../../img/header-bg-desktop.png") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.header .bg-img .abp25{
    width: 100%;
    position: absolute;
    top: 2dvh;
    left: 50%;
    transform: translateX(-50%);
}

.header .bg-img .text-banner{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header .bg-img .alcon{
    width: 100%;
    position: absolute;
    bottom: 5dvh;
    left: 50%;
    transform: translateX(-50%);
}

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

.button-okay:hover {
    color: var(--primary-color);
    background: var(--secundary-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;
}

form{
    max-width: 75%;
    margin-inline: auto;
}

form .form-control[type="text"]{
    border-color: #ffffff;
    box-shadow: 0 0 20px 0px rgba(1, 12, 79, .2);
    border-radius: 0;
    transform: skew(-20deg);
}

/* END DEFAULT STYLES */

/* FOOTER */

.footer {
    background-color: #000524;
}

/* 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;
}

#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;
}

button[class^="button-"]{
    display: inline-block;
    border-radius: 0;
    font-weight: 500;
    padding: var(--button-radius);
    background-color: var(--bg-button-background);
    margin-bottom: 10px;
    transition: .5s linear;
    line-height: 1;
}

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

.button-upload {
    --bg-button-background: var(--primary-color);
    color: var(--secundary-color);
    text-align: center;
    font-size: 1.5em;
    --button-radius: 10px;
    min-width: 45%;
    transform: skew(-20deg);
    font-family: "Jost ExtraBold", sans-serif;
    border-color: transparent;
}

.button-upload:hover{
    --bg-button-background-hover: var(--secundary-color);
    --button-color-hover: var(--primary-color);
}

.button-submit {
    --bg-button-background-hover: var(--primary-color);
    --button-color-hover: var(--secundary-color);
    --bg-button-background: var(--secundary-color);
    color: var(--primary-color);
    text-align: center;
    font-size: 1.5em;
    --button-radius: 10px !important;
    min-width: 45%;
    transform: skew(-20deg);
    font-family: "Jost ExtraBold", sans-serif;
    margin-left: 8%;
    border-color: transparent;
}

.button-submit:disabled{
    -webkit-appearance: none;
    --bg-button-background: transparent;
    border: 2px solid var(--secundary-color);
    color: var(--secundary-color);
    pointer-events: none;
    cursor: not-allowed;
}

.button-submit:hover{
    --bg-button-background-hover: var(--primary-color);
    --button-color-hover: var(--secundary-color);
}

/* DASHBOARD */

.box{
    padding: 5px 10px;
    border-radius: var(--border-radius);
    color: #ffffff;
    display: inline-block;
    width: 48%;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

#dashboard .dataTables_wrapper .dataTables_length select{
    padding: 4px 20px;
}

table.dataTable thead .sorting:after, table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_desc_disabled:after, table.dataTable thead .sorting_desc_disabled:before {
    /*font: normal normal normal 1rem/1 FontAwesome !important;*/
}
  
table.dataTable thead>tr>td.sorting, table.dataTable thead>tr>td.sorting_asc, table.dataTable thead>tr>td.sorting_desc, table.dataTable thead>tr>th.sorting, table.dataTable thead>tr>th.sorting_asc, table.dataTable thead>tr>th.sorting_desc{
    white-space: nowrap;
}
  
#dashboard {
    /*background: #fff;
    padding: 20px;*/
}
  
body.dashboard .box{
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}
  
body.dashboard #dashboard .button-okay, body.dashboard #dashboard .button-cancel{
    padding: 5px 10px;
    display: inline-block;
}
  
#dashboard select{
    background: #ededed url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
    background-size: 8px 10px;
    border-color: #ededed;
    border-radius: 0;
}
  
#dashboard input:not([type="checkbox"]){
    background: #ededed;
    border-color: #ededed;
    border-radius: 0;
}
  
#dashboard #usersTable tr th{
    border: none;
    background: #5e5e5e;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}
  
#dashboard #usersTable tr td{
    white-space: nowrap;
}
  
#dashboard #usersTable tr:nth-child(even) td{
    background: #ededed;
}
  
#dashboard #usersTable tr td button{
    font-size: 12px !important;
    padding: 5px 20px !important;
    margin-right: 5px;
}
  
#dashboard #usersTable tr td button:last-child{
    margin-right: 0;   
}
  
#dashboard .pagination {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
  
#dashboard .pagination .page-item.active .page-link{
    background-color: var(--secundary-color);
    border-color: var(--secundary-color);
    color: #fff;
}
  
#dashboard .pagination .page-item .page-link{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    border-radius: 0;
}
  
  /* END DASHBOARD PAGE */

@media only screen and (max-width: 768px) {
    .header .row{
        background: unset;
        height: unset;
    }

    .button-upload, .button-submit{
        min-width: 100%;
        margin-left: unset;
    }
}

@media only screen and (max-width: 1366px) {
    .header .row{
        background: unset;
        height: unset;
    }
}