/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/* .table-conv th, .table-conv td {
    padding: 16px 70px;
} */

/* CONTAINER --- início*/
.fundo-linha {
	background-color: #ffffff;
    width: 100%;
}

.tamanho-fonte-titulo-estacao {
	font-size: 20px;
}
/* CONTAINER --- fim*/

.select-search-detail {
    width: 120px;
}

/*BARRA ESTAÇÃO*/
.raius-busca-estacoes-esquerdo {
    border-radius: 10px 0px 0px 10px;
    border: 1px solid;
}

.borda-esquerda {
    border-radius: 10px 0px 0px 10px;
    color: whitesmoke;
}

.borda-direita {
    border-radius: 0px 10px 10px 0px;
    color: whitesmoke;
}

.radius-botao-busca {
    border-radius: 10px 10px 10px 10px;
    background: #3a74b0;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #293564, #3a74b0);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #293564, #3a74b0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-color: aliceblue;
}

.cor-botoes {
    background-color: #293564;
    border-color: #293564;
}

.raius-busca-estacoes-direito {
    border-radius: 0px 10px 10px 0px;
}

.form-select-estacoes {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    display: block;
    width: 100%;
    padding: .255rem 2.25rem .255rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    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='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem top .75rem;
    background-size: 16px 12px;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out;
    outline: none;
}

.form-select-estacoes:focus {
    box-shadow: none;
}

/*BANCO DE DADOS AGROMETEOROLOGICO*/
.radius-monitorameto-titulo {
    border-radius: 20px 20px 20px 20px;
    background: #3a74b0;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #293564, #3a74b0);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #293564, #3a74b0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.tamanho-icone {
	width: 30px;
	height: 30px;
}

.borda-imagem {
    border-radius: 10px 10px 10px 10px;
    color: whitesmoke;
    border-color: aliceblue;
    border-style: double;
}

.textarea {
	width: 100%;
}

.fonte-dados-meteorologicos{
    font-size: medium;
}

.checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox input {
    cursor: pointer;
    outline: none;
    height: 20px;
    width: 50px;
    border-radius: 50px;
    margin-right: 15px;
    -webkit-appearance: none;
    position: relative;
    background: #e6e6e6;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.checkbox input:checked {
    background: #012e4d;
}

.checkbox input:before {
    position: absolute;
    content: "";
    left: 0;
    height: 100%;
    width: 25px;
    background: linear-gradient(#fff, #f2f2f2, #e6e6e6, #d9d9d9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    transform: scale(0.85);
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

input:checked:before {
    left: 25px; 
}

.checkbox .text:before {
    content: "Ativar Busca Detalhada";
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

input:checked ~ .text:before {
    color: #012e4d;
    font-size: 16px;
    content: "Desativar Busca Detalhada";
}

/* TABELA --- início */
.fonte-tabela {
    font-size: small;
}
/* TABELA --- fim */

/* Define a altura mínima para os cards */
.card-search-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px; /* Ajuste essa altura conforme necessário */
}
  
/* Ajuste para o conteúdo dentro do card */
.card-body-search {
    flex-grow: 1;
}
  
/* Imagens dentro do header ocupam a largura total */
.card-header img {
    width: 100%;
    height: auto;
}
  
.img-card {
    width: 100%;
    height: 350px !important;
} 

.btn-custom {
    background-color: #3a74b0; /* Cor de fundo personalizada (substitua pelo seu código de cor desejado) */
    color: #FFFFFF; /* Cor do texto (geralmente branco em botões coloridos) */
    border-color: #3a74b0; /* Cor da borda (substitua pelo seu código de cor desejado) */
}

/* Efeito de hover para o botão */
.btn-custom:hover {
    background-color: #3a74b0; /* Cor de fundo personalizada quando o mouse passar por cima (substitua pelo seu código de cor desejado) */
    border-color: #3a74b0; /* Cor da borda quando o mouse passar por cima (substitua pelo seu código de cor desejado) */
    color: #FFFFFF; /* Cor do texto quando o mouse passar por cima (geralmente branco em botões coloridos) */
}
/*

@media (min-width: 576px) { 
    .modifySelect {
        size: 100% !important;
        font-size: 10px !important;
        justify-content: start !important;
    }
    .modifyTable {
        size: 10% !important;
        font-size: 8px !important;
    }
    .modifyLines{
        size: 30% !important; 
        font-size: 8px !important;
    }
    .modifyBody{
        font-size: 8px !important;
        size: 10% !important;
        justify-content: start !important;
    }

 }

*/
@media only screen and (min-width: 2500px) {
    .img-card {
        height: auto !important;
    }
}

@media only screen and (min-width: 1670px) {
    .col-card-search-data {
        -webkit-flex: 0 0 35%;
        -ms-flex: 0 0 35%;
        flex: 0 0 35%;
        max-width: 35%;
    }
    .space-card {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 1669px) {
    .fonte-banco-dados-meteorologicos {
        justify-content: space-evenly !important;
        display: flex; 
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 992px) {
    .margin-form-data {
        margin-left: 0.3rem;
    }
    .width-checkbox-label {
        min-width: 150px;
    }
}

@media only screen and (max-width: 991px) {
    .ml-1 {
        margin-left: 0 !important;
    }
    .margin-form-data {
        margin-left: 0;
    }
    .col-card-search-data {
        margin-right: 5px;
    }
}

@media only screen and (min-width: 769px) {
    .search-data-mobile {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .fonte-banco-dados-meteorologicos {
        font-size: small;
    }
    .fonte-menu {
        font-size: small;
    }
    .fonte-dados-meteorologicos {
        font-size: small;
    }
    .fs-4 {
        font-size: 17px !important;
    }
    .imagem-sol {
        width: 20px;
        height: 20px;
    }
    .fs-6 {
        font-size: 15px !important;
    }
    .search-data-desktop {
        display: none;
    }
    .input-number .form-control {
        width: 80px;
    }
    .offset-md-2 {
        margin-left: 10%;
    }
    .button-exel {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 450px) {
    .img-card {
        width: 100%;
        height: auto !important;
        object-fit: inherit; 
    } 
}

@media only screen and (min-width: 391px) {
    .search-data-mobile-compact {
        display: none;
    }
}

@media only screen and (max-width: 390px) {
    .search-data-mobile {
        display: none;
    }
    .mod-mobile {
        flex: 0 0 50%;
        max-width: 50%;
        margin-left: 10px;
    }
    .offset-md-2 {
        margin-left: 0%;
    }
    .col-md-3 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .checkbox .text:before {
        font-size: 12px;
    }
    .btn-mobileBusca {
        justify-content: center;
    }
}

@media only screen and (max-width: 362px) {
    input:checked ~ .text:before {
        font-size: 12px;
    }
}

@media screen and (min-width: 339px) and (max-width: 358px) {
    .buttons-action {
        display: inline;
        justify-content: center;
    } 
}

@media only screen and (max-width: 316px) {
    .checkbox input {
        height: 20px;
        width: 40px;
    }
    .checkbox input:before {
        width: 20px;
    }
    input:checked:before {
        left: 20px; 
    }
}

@media only screen and (max-width: 290px) {
    input:checked:before {
        left: 15px; 
    }
}

@media only screen and (max-width: 1199.98px) {
    .img-card {
        object-fit: cover;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .fonte-banco-dados-meteorologicos {
        font-size: medium;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
/*@media (min-width: 575.98px) { 
    .modifySelect {
        size: 100% !important;
        font-size: 10px !important;
        justify-content: start !important;
    }
    .modifyTable {
        size: 10% !important;
        font-size: 8px !important;
    }
    .modifyLines{
        size: 30% !important; 
        font-size: 8px !important;
    }
    .modifyBody{
        font-size: 8px !important;
        size: 10% !important;
        justify-content: start !important;
    }
 }*/

/*  
 @media only screen and (max-width: 768px) {
   
    .linhas{
        justify-content: center;
    }    
    .modifyTable{
        font-size: 10px !important;
        size: 30% !important;
        justify-content: start !important;
    }
    .modifyContainer{
        font-size: 10px !important;
        size: 30% !important;
        justify-content: flex-start !important;
    }
    .container-fluid{
        width: 100% !important;
    }
    
}
@media only screen and (min-width: 768px) {
   
    .linhas{
        justify-content: center;
    }    
} */


 /*

@media only screen and (max-width: 767px) {
    .posicao{
        justify-content: start;
    }
}

@media only screen and (min-width: 768px) {
    .posicao{
        justify-content: center;
    }
}
*/