/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-darkblue: #102241;
  --color-blue: #0b3e84;
  --color-white: #ffffff;
  --font-sans: 'Titillium Web', sans-serif;
}

body {
  background-color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
}

.landing {
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
}

@media screen and (min-width: 992px) {
  .landing {
    grid-template-columns: 2fr 1fr;
    max-width: 1080px;
    margin: 0 auto;
  }
}

.landing__content {
  background-color: #fff;
  background-image: url("../images/image-formula-uno-chevron.jpg");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 790px;
}

.landing__content .content__image {
  margin-top: 2rem;
  margin-left: 2rem;
  margin-bottom: 10%;
  width: 70%;
  height: auto;
  display: block;
}

@media screen and (min-width: 992px) {
  .landing__content .content__image {
    margin-top: 2rem;
    margin-left: 2rem;
    margin-bottom: 15%;
    width: 50%;
    height: auto;
    display: block;
  }
}

.landing__content .content__text {
  margin-left: 2rem;
  color: #00AEEF;
  font-size: 27px;
  line-height: 32px;
  font-weight: 700;
  max-width: 80%;
}

@media screen and (min-width: 992px) {
  .landing__content .content__text {
    max-width: 60%;
  }
}

.landing__content .content__text span {
  color: #ffffff;
}

.landing__content .content__image-logo {
  margin-top: 58%;
  margin-left: auto;
  margin-right: auto;
  max-width: 140px;
  display: block;
}

@media screen and (min-width: 992px) {
  .landing__content .content__image-logo {
    margin-top: 58%;
    margin-left: 2rem;
    max-width: 140px;
    margin-bottom: 4rem;
  }
}

.landing__form {
  padding: 2rem;
}

.landing__form .form__group {
  margin-bottom: 1rem;
}

.landing__form .form__group.checkbox {
  text-align: center;
}

.landing__form .form__label {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 8px;
  display: block;
}

.landing__form .form__input {
  width: 95%;
  height: auto;
  padding: 6px;
  border: 1px solid #dddddd;
  background-color: #f1f3f2;
}

.landing__form .form__submit {
  display: flex;
  margin: 2rem auto 6px;
  padding: 12px 40px;
  background-color: #006cc7;
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
}

.landing__form .form__submit:hover,
.landing__form .form__submit:focus {
  background-color: #00AEEF;
  cursor: pointer;
}

.landing__form .form__legal-text {
  margin-top: 8px;
  text-align: justify;
  text-align-last: left;
  font-size: 14px;
  line-height: 16px;
}

.landing__form .form__legal-text.info {
  padding: 1rem 0;
  color: #999999;
}

.footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: var(--color-blue);
}

.footer__container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .footer__container {
    grid-template-columns: 1fr 1.2fr 1.5fr 1.5fr;
    gap: 1rem;
    text-align: left;
  }
}

.footer__col {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}

.footer__link {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  .footer__link {
    justify-content: left;
  }
}

.footer__link svg {
  height: 24px;
  width: 24px;
  margin-right: 7px;
}

.footer__link:hover,
.footer__link:focus {
  text-decoration: underline;
}

.footer__social {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .footer__social {
    margin: 0;
  }
}

.footer__social .social__text {
  padding-right: 10px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
}

.footer__social .social__link {
  display: block;
}

.footer__social .social__link svg {
  width: 24px;
  height: auto;
  margin-right: 10px;
}

.footer__social .social__link svg path {
  fill: #ffffff;
}

.footer__social .social__link svg::last-of-type {
  margin-right: 0;
}

.footer__social .social__link:hover svg path,
.footer__social .social__link:focus svg path {
  fill: #00AEEF;
}

/** NUEVOS CSS ***/

.input_file {
  width: 95%;
  height: 15px;
  padding: 6px;
  padding: 6px;
  border: 1px solid #dddddd;
  background-color: #f1f3f2;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

input.upload {
  max-width: 280px !important;
  padding: 0;
  opacity: 0;
  outline: none;
  cursor: inherit;
  position: absolute;
  font-size: 21px !important;
  margin-top: -32px;
}

.imagen_preview {
  max-width: 40%;
  padding: 3px;
  opacity: 0.5;
  margin-top: 1rem;
  border-radius: 5px;
  border: solid 1px;
  display: none;
}

@media (min-width: 768px) {
  .input_file {
    max-width: 280px !important;
  }
}

.inputRequired {
  color: red;
  font-size: 12px;
}

.errors {
  color: red;
  font-size: 12px;
}

.input_terminos {
  text-align: left !important;
}

.input_terminos input {
  float: left;
}

.input_terminos .errors {
  display: block;
}

.spinner {
  border: 3px solid rgba(0, 0, 0, 0.1);
  width: 18px;
  height: 18px;
  margin-right: 15px;
  margin-left: -10px;
  border-radius: 50%;
  border-left-color: white;
  display: none;
  animation: spin 1s ease infinite;
}

.spinnerActive {
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.content__img {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

.content__img img {
  max-width: 100%;
  max-height: 150px;
}

.content_text {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.content_text p {
  font-size: 18px;
  padding-top: 1rem;
}

.content_text h2 {
  color: #00AEEF;
  font-size: 27px;
  line-height: 32px;
  font-weight: 700;
}

/** TABLE**/

thead {
  background-color: #007BFF;
  color: white;
}

.table-responsive a:hover {
  text-decoration: none !important;
}

.dt-buttons {
  float: none !important;
  margin-bottom: 1rem;
}

.dt-buttons button {
  background-color: #207345 !important;
  color: white !important;
}

.dataTables_length {
  float: left;
}

.titleTable{
  margin-bottom: 30px; 
  font-weight: 700; 
  font-size: 30px;
}

/** TOOLTIP**/
.tooltip {
  position: relative;
  display: inline-block;
  opacity: 1 !important;
  font-size: 20px !important;
  z-index: 0 !important;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  font-size: 10px;

  top: -5px;
  left: 105%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}


.dropdown-menu {
  left: -100px !important;
}

.navbar-collapse {
  justify-content: flex-end !important;
}


/** LOGIN **/
.login {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login .card{
  align-items: center !important;
}
.login .card img{
  padding-top: 2rem;
  max-width: 35%;
}

.login .card-body{
  width: 90%;
}

.login button{
  float: right;
}

/** REGISTER **/
.register{
  display: flex;
  justify-content: center;
}

.register .card{
  width: 25rem;
  margin: 2rem;
}

.active{
  display: none !important;
}

.register #close, .register #btn-submit{
  float: right;
}

.register #btn-submit{
  margin-right: 1rem;
}

/*** NAVBAR ****/
nav{
  background-color: white !important;
  box-shadow: 0px 23px 45px 0px rgb(0 0 0 / 10%);
}

.dropdown-toggle::after {
  color: black;
  vertical-align: 0.7em !important;
}


@media (max-width: 767px) {
  .login .card{
    margin: 2rem;
  }

  .dataTables_filter{
    margin-left: -80px;
  }
}