@import url('https://fonts.googleapis.com/css2?family=Assistant&family=Roboto:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Assistant&display=swap');

html{
    background: linear-gradient(to bottom, #0483a6, #000000);
    width: 100%;
    min-height: 100%;
    padding: 0;
    margin: 0;
}

body{
    width: 100%;
    height: 100%;
    background-color: transparent;
    font-size: 12pt;
    line-height: 1.4;
}

.container {
    margin-top: 2vh;
    border-radius: 15px;
    background-color: #ffffff;
    padding: 15px;
}

/*Formatação*/
h1 {
    font-size: 22pt;
    color: #015a95;
    font-weight: bolder;
    margin-bottom: 10px;
    padding: 0;
}
h2 {
    color: #005a95;
    font-size: 16pt;
    font-weight: bolder;
    margin-top: 5px;
}
h3 {
    color: #005a95;
    font-size: 12pt;
    font-weight: bolder;
    margin-top: 15px;
}

label{
    word-wrap: break-word;
    font-weight: bolder;
    font-size: 14px;
    color: #333;
    display: block;
}

.img-logo{
    width: 10vw;
    height: auto;
    margin-bottom: 10px;
}

.has-error{
    border-color: #a94442;
}

/*Campos*/
.btn-action{
    background-color: #e2550a;
    color: #FFFFFF;
    font-weight: bolder;
}
.btn.btn-action:hover{
    background-color: rgba(226, 85, 10, 0.5);
    border-color: rgba(226, 85, 10, 0.5);
}
.btn-action svg {
    fill: #FFFFFF;
    width:  1.22857143em;
    height: 0.92857143em;
    margin: 0 2px 0 2px;
}
.btn-search {
    background-color: #e2550a; /* cor do botão */
    color: #fff;
    border: none;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 40px;
}
.btn-search:hover
{
    box-shadow: none;
    border-color: #e2550a;
    outline: none;
}

.btn-search i {
    font-size: 16px;
}

.btn-view {
    color: #e2550a;
}
.btn-view:hover {
    color: #000;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"] {
    display: block;
    height: 40px;
    padding: 4px 10px;
    /*color: #63789a;*/
    /*line-height: 1.4;*/
    /*font-size: 18px;*/
    background-color: #fff;
    background-image: none;
    border: 1px solid rgb(215, 215, 215);
    border-radius: 15px;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    margin-bottom: 15px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder {
    color: #63789a;
}

input[type="text"]:not(select),
input[type="email"]:not(select),
input[type="tel"]:not(select),
input[type="number"]:not(select),
input[type="password"]:not(select) {
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
.select2-container--default .select2-selection--single:focus{
    box-shadow: none;
    border-color: rgba(226, 85, 10, 0.5);
    outline: none;
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
input[type="password"]:hover {
    box-shadow: none;
    border-color: #e2550a;
    outline: none;
}

.file-input {
    position: relative;
    display: inline-block;
    border: 1px outset #e3e3e3;
    padding: 5px 10px;
    border-radius: 50px;
    margin: 10px 0 10px 0;
    width: 100%;
    color: rgba(0, 90, 149, 0.79);
    cursor: pointer;
}

.file-input-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #e2550a;
    font-weight: 500;
}

.file-input-field:focus {
    outline: none;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
.file-input button {
    border: none;
    background-color: transparent;
}

/*!* Ajusta a largura do contêiner select2 *!*/
/*.select2-container {*/
/*    width: 100% !important;*/
/*}*/

/*!* Ajusta o campo de entrada do select2 *!*/
/*.select2-selection {*/
/*    height: auto;*/
/*    min-height: 38px; !* Ajuste conforme necessário *!*/
/*    display: flex;*/
/*    align-items: center;*/
/*    border-radius: 15px; !* Mesma borda arredondada do contêiner *!*/
/*    border: 1px solid #ccc;*/
/*}*/

/*!* Centraliza o texto e alinha com o ícone de dropdown *!*/
/*.select2-selection__rendered {*/
/*    padding-left: 10px;*/
/*    padding-right: 30px; !* Espaço para o ícone de dropdown *!*/
/*    white-space: normal; !* Permite quebra de linha, se necessário *!*/
/*    border-radius: 15px;*/
/*}*/

/*!* Ajusta o ícone do dropdown *!*/

/* campos select */
select{
    border-radius: 15px !important;
}
.select2-container{
    display: inherit;
    height: 40px;
    color: #63789a;
    background-color: #fff;
    background-image: none;
    border: 1px solid rgb(215, 215, 215);
    border-radius: 15px;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    margin-bottom: 10px;
    max-height: none;
}
.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
    border: none;
}
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: default;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none;
    border: none;
    border-radius: 15px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
    margin-top: 2px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
    border: none;
}
.select2-selection {
    height: auto;
    min-height: 35px;
    border-radius: 15px;
    border: none;
    padding-top: 4px;
    padding-bottom: 5px;
}
.select2-selection__arrow {
    height: 100%;
    position: absolute;
    transform: translateY(15%);
    display: flex;
    border: none;
    border-radius: 15px;
}

/*Alertas*/
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.icon-pulse {
    animation: pulse 1s infinite;
}

.alert{
    margin-top: 1vh;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: red;
    font-weight: bolder;
    background-color: #fff;
}
.alert.alert-danger li .fa-li{
    color:  red;
}
.alert ul{
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

/*===============================*/
/*==== FORMATAÇÃO DAS MODAIS ====*/
/*===============================*/
/* Modal Padrão */
.modal-default {
    background-color: rgba(0, 0, 0, 0.5);
    .modal-header {
        background-color: #a1a5a9;
        height: 65px;
        .modal-title {
            font-size: 18pt;
            color: #000;
            i {
                font-size: 14pt;
            }
        }
        .btn-close{
            color: #000;
            line-height: 10px;
            font-size: 15pt;
        }
    }
    .modal-footer {
        .modal-close-ok {
            background-color: #5b5d5e;
            border: 1px solid #5b5d5e;
            color: #000;
            font-weight: bolder;
            min-width: 80px;
        }
    }
}

/* Modal de Erro */
.modal-error {
    background-color: rgba(0, 0, 0, 0.5);
    .modal-header {
        background-color: #b60909;
        height: 65px;
        .modal-title {
            font-size: 18pt;
            color: #fff;
            i {
                font-size: 14pt;
            }
        }
        .btn-close {
            color: #fff !important;
            /*line-height: 10px;*/
            /*font-size: 15pt;*/
        }
    }
    .modal-footer {
        .modal-close-ok {
            background-color: #b60909;
            border: 1px solid #b60909;
            color: #FFFFFF;
            font-weight: bolder;
            min-width: 80px;
        }
    }
}

/* Modal de Informação */
.modal-info {
    background-color: rgba(0, 0, 0, 0.5);
    .modal-header {
        background-color: #005a95;
        height: 65px;
        .modal-title {
            font-size: 18pt;
            color: #fff;
            i {
                font-size: 14pt;
            }
        }
        .btn-close{
            color: #fff;
            line-height: 10px;
            font-size: 15pt;
        }
    }
    .modal-footer {
        .modal-close-ok {
            background-color: #005a95;
            border: 1px solid #005a95;
            color: #FFFFFF;
            font-weight: bolder;
            min-width: 80px;
        }
    }
}

/* Modal de sucesso */
.modal-success {
    background-color: rgba(0, 0, 0, 0.5);
    .modal-header {
        background-color: #1b490d;
        height: 65px;
        .modal-title {
            font-size: 18pt;
            color: #fff;
            i {
                font-size: 14pt;
            }
        }
        .btn-close{
            color: #fff;
            line-height: 10px;
            font-size: 15pt;
        }
    }
    .modal-footer {
        .modal-close-ok {
            background-color: #1b490d;
            border: 1px solid #1b490d;
            color: #FFFFFF;
            font-weight: bolder;
            min-width: 80px;
        }
    }
}

/* Modal de alerta */
.modal-alert {
    background-color: rgba(0, 0, 0, 0.5);
    .modal-header {
        background-color: rgba(255, 255, 0, 0.62);
        height: 65px;
        .modal-title {
            font-size: 18pt;
            font-weight: bolder;
            color: #000000;
            i {
                font-size: 14pt;
            }
        }
        .btn-close{
            color: #000;
            line-height: 10px;
            font-size: 15pt;
        }
    }
    .modal-footer {
        .modal-close-ok {
            background-color: #e2550a;
            border: 1px solid #e2550a;
            color: #FFFFFF;
            font-weight: bolder;
            min-width: 80px;
        }
    }
}
