body{
    background: #f6f2f7 !important;
}
#toast-container{
	top: 50% !important;
	right: 50% !important;
	transform: translateX(50%) translateY(50%) !important;
}
#solveLoader {
	display: none;
	position: absolute;
	background-color: rgba(255, 255, 255, .8);
	background-image: url('/assets/images/loader.gif') !important;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 200px 200px;
	top: 0;
	z-index: 999;
	transition: opacity 5s ease, visibility 5s ease;
}
/* inputs */
input[type="file"] {
    display: none;
}

input[type=date]:not(.browser-default) {
    color: #6d6d6d !important;
    font-weight: normal !important;
}

.custom-file-upload {
    color: white;
    background: #444;
    display: inline-block;
    padding: 10px 50px;
    cursor: pointer;
    border-radius: 3px !important;
}

.custom-file-upload:hover {
    background: #e0e51d;
    border: 2px solid #e0e51d;
}

.custom-file-upload:focus {
    background: #e0e51d !important;
    border: 2px solid #e0e51d ;
}

.input-border input[type=text],
.input-border input[type=number],
.input-border input[type=password],
.input-border input[type=email] {
    border: 2px solid #ddd;
    border-radius: 3px !important;
    padding: 0 8px !important;
    margin: 15px 0 10px 0 !important;
    height: 40px !important;
}

.input-border textarea {
    border: 2px solid #ddd;
    border-radius: 3px !important;
    padding: 0 8px !important;
    margin: 15px 0 10px 0 !important;
    min-height: 100px !important;
}

.input-border input[type=text]:focus,
.input-border input[type=password]:focus,
.input-border input[type=number]:focus,
.input-border input[type=email]:focus {
    border-color: #444 !important;
    border-bottom: 1px solid #444 !important;
    box-shadow: 0 1px 0 0 #444 !important;
}
.input-border textarea:focus {
    border-color: #444 !important;
    border-bottom: 1px solid #444 !important;
    box-shadow: 0 1px 0 0 #444 !important;
}
.input-border label {
    color: black;
    top: -75px;
    position: relative;
    font-weight: bold !important;
}

.input-border input[type=text]:focus + label,
.input-border input[type=password]:focus + label,
.input-border input[type=number]:focus + label,
.input-border input[type=email]:focus + label {
    color: #111 !important;
}

[type="checkbox"].filled-in:checked + span:after,
[type="checkbox"].filled-in:checked + span:not(.lever):after {
    background-color: #444444; 
    border: 2px solid #444444;
}

.input-border span {
    color: black !important;
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
    appearance: textfield; /* Otros navegadores */
}

/* input for search */
.input-border input[type=search] {
    border: 3px solid #ddd;
    border-radius: 30px !important;
    padding: 0 8px !important;
    margin: 15px 0 10px 0 !important;
    height: 35px !important;
    width: 180px !important;
}

.input-border input[type=search]:focus{
    border-color: #444 !important;
    border-bottom: 1px solid #444 !important;
    box-shadow: 0 1px 0 0 #444 !important;
}

.input-border input[type=search]:focus + label {
    color: #111 !important;
}

/* texto en negritas */
.bold{
    font-weight: bold;
}

/* cards */
.line-card{
    border-right: 1px solid #ddd;
    height: 400px;
}

.line-card-l{
    border-left: 1px solid #ddd;
    height: 400px;
}
.line-card-2{
    border-bottom: 1px solid #ddd;
}

.esquinasRedondas {
    border-radius: 15px !important;
}

.center-button {
    display: flex !important;
    justify-content: center !important;
}

/* paddings */
.p-1{
    padding: .25rem !important;
}

.p-3{
    padding: .75rem !important;
}

.p-4{
    padding: 1rem !important;
}

.p-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0px;
}

.px-3{
    padding-left: .75rem !important;
    padding-right: .75rem !important;
}

/* navbar */
.nav{
    background: #fff;
    padding-left: 7% !important;
    padding-right: 7%!important;
}

.nav a{
    color: blue !important;
    font-size: large;  
}


/* buttons */
.button-gray {
    transition-duration: 0.4s;
    background-color: #9118bd !important;
    color: white !important;
    padding: 8px 30px;
    border: 2px solid #9118bd ;
    border-radius: 10px !important;
    background: -webkit-gradient(linear, right top, left top, from(#9118bd), to(#8225fc));
    background: -moz-linear-gradient(top,  #9118bd ,  #8225fc);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9118bd', endColorstr='#8225fc');
    font-size: 14px !important;
  }
  
.button-gray:hover {
    transition-duration: 0.4s;
    background-color: white !important; 
    color: #9118bd !important;
    border: 2px solid #9118bd;
    background: white;
}

.button-white {
    transition-duration: 0.4s;
    background-color: white!important;
    color: black !important;
    padding: 8px 30px;
    border: 2px solid #444 !important;
    border-radius: 10px !important;
}

.button-white:hover {
    transition-duration: 0.4s;
    background-color: #444 !important;
    color: white !important;
}

.button-blue {
    transition-duration: 0.4s;
    background-color: #1565c0 !important;
    color: white !important;
    padding: 8px 30px;
    border: 2px solid #0d47a1 !important;
    border-radius: 10px !important;
}

.button-blue:hover {
    transition-duration: 0.4s;
    background-color: #0d47a1 !important; 
    color: white !important;
}

.button-table {
    background-color: white;
    border: 2px solid white;
    height: 50px;
    width: 110px
}

.button-table:focus {
    background-color: black !important;
    color: white;
    height: 50px;
    border: 2px solid black !important;
    border-radius: 10px;
}

.button-orange {
    transition-duration: 0.4s;
    background-color: #c20005 !important;
    color: white !important;
    padding: 7px 30px;
    border: 2px solid #c20005 !important;
    border-radius: 10px !important;
    font-size: 14px !important;
}

.button-orange:hover {
    transition-duration: 0.4s;
    background-color: #ffffff !important; 
    color: #c20005 !important;
    border: 2px solid #c20005;
}

/* images */

.custom-image{
    /*max-width: 80%; 
    max-height: 80%; 
    width: auto; */
    height: 350px;
}


.d-flex{
    display: flex;
}

.justify-content-space-between,.space-between{
    justify-content: space-between;
}

.flex-direction-column{
    flex-direction: column;
}

.align-items-flex-start{
    align-items: flex-start;
}
.align-items-flex-end{
    align-items: flex-end;
}
.justify-content-flex-end{
    justify-content: flex-end;
}


/* Estilos para las tablas */
tbody tr:hover{
    background-color: #f0ddf5 !important;
}

thead, thead tr,thead tr th{
    background-color:#f6f2f7 ;
    border-collapse: collapse;
    border-radius: 0!important;
    color: #808080;
    font-size: 13px;
    
}

/* Estos estilos son para el navegador */
.small{
 font-size: 20px!important;
}
.main-nav{
    position: sticky!important;
    top: 0!important;
    z-index: 2!important;
}
/* Indicador de provedores-clientes */
.button-indicador {
    background-color: white;
    border: 2px solid white;
    height: 50px;
    width: 120px
}

.button-indicador:focus {
    background-color: white;
    border: 2px solid white;
    height: 50px;
}

.estatus{
    display: block;
    padding: 3px 5px;
    border-radius: 12px;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-color: #cccccc;
}
