﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: white;
}

.style1 {
    width: 100%;
}
.tabla {
    width: 90%;
    margin-left: 30px;
    margin-right: 10px;
}

.text-white {
    color: white;
}

.text-evans {
    color: #FF6600;
}

.form-control:focus {
    border-color: #FF6501;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: orangered !important;
}

.custom-checkbox .custom-control-input:checked:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 127, 39, 0.25)
}

.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 0, 0, 0.25)
}

.custom-checkbox .custom-control-input:active ~ .custom-control-label::before {
    background-color: #FFC000;
}

.btn-outline-primary:disabled {
    color: gray;
    background-color: #fff;
    border-color: gray;
}

.btn-outline-primary {
    color: #FF6501;
    background-color: #fff;
    border-color: #ff6a00;
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary.active, .open > .dropdown-toggle.btn-outline-primary {
    color: #fff;
    background-color: #FF6501;
    border-color: #ff6a00;
}

.border-orange {
    border-color: #FF6600;
}

.btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning:active, .btn-outline-warning.active, .open > .dropdown-toggle.btn-outline-warning {
    color: #fff;
    background-color: #ffc107;
    border-color: #ffc107;
}


.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}

.navbar-color {
    background-color: #3F3F3F;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
    background-color: #FF6600;
}

/* Codigo que se agrego para crear el efecto de progres bar*/
.sweet_loader {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: ro;
    transform-origin: 50% 50%;
    transform: rotate(0) translate(0,0);
}

@keyframes ro {
    100% {
        transform: rotate(-360deg) translate(0,0);
    }
}

p.cliente {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}
p.a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}
p.titulo {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}
p.titulocompania {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}
b.d {
    font-family: Arial, Helvetica, sans-serif;
}
td.dise {
    padding-left: 5px;
}
.logo {
    width: 250px;
    height: 150px;
}
/*Codigo Nuevo para agregar el asterisco*/
.is-required:before {
    content: '*';
    margin-left: 3px;
    color: red;
    font-weight: bold;
}

.is-requiredNuevo:after {
    content: '*';
    margin-left: 3px;
    color: red;
   /* font-size: 18px;*/
    font-weight: 900;
}

.asterisk_input::after {
    content: " *";
    color: #e32;
    position: absolute;
    margin: 0px 0px 0px -30px;
    font-size: xx-large;
    padding: 0 5px 0 0;
}
.data-block {
    width: 100%;
    min-height: 700px;
}

 .data-block img {
        width: 100%;
    }

#titlePageGuide {
    display: none;
}