@font-face {
  src: url(/fonts/Raleway-Regular.ttf);
  font-family: Raleway-Regular;
}

@media (max-width: 480px) {
  .hide-on-mobile-portrait {
    display: none;
  }
}

body {
  --text-color: rgb(17, 17, 17) !important;
  --placeholder-color: rgb(153, 153, 153) !important;
  --bkg-color: #aaaaaa;
  --bkg-color-control: white;
}

body {
  background: var(--bkg-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
ul,
li,
input,
button,
table,
small,
select,
label {
  color: var(--text-color);
  font-family: Raleway-Regular;
}

main {
  width: 100%;
  margin: 0 auto;
  padding-top: 58px;
}

.card {
  height: fit-content;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--bkg-color-control);
  background-clip: border-box;
  border: none;
  padding: 2px 2px 2px 2px;
  /* box-shadow: 3px 3px 6px #888888; */
  box-shadow:
    0 2.8px 2.2px rgba(0, 0, 0, 0.034),
    0 6.7px 5.3px rgba(0, 0, 0, 0.048),
    0 12.5px 10px rgba(0, 0, 0, 0.06),
    0 22.3px 17.9px rgba(0, 0, 0, 0.072),
    0 41.8px 33.4px rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12)
}

div {
  color: rgb(17, 17, 17) !important;
  font-family: Raleway-Regular !important;
}

.navbar {
  min-height: 58px;
  background-color: #233558;
}

@media (max-width: 991px) {
  .navbar {
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: #36121a;

}

.dropdown-menu {
  background-color: #233558;
  overflow-y: visible !important;
  overflow-x: visible !important;
}

.dropdown-item {
  background-color: #233558;
  color: rgb(170, 167, 167) !important;
}

.blink {
  animation: blinker 2.0s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.blink-one {
  animation: blinker-one 1s linear infinite;
}

@keyframes blinker-one {
  0% {
    opacity: 0;
  }
}

.blink-two {
  animation: blinker-two 1.4s linear infinite;
}

@keyframes blinker-two {
  100% {
    opacity: 0;
  }
}

.center_div_horizontal_vertical {
  position: absolute;
  top: calc(45% - 50px);
  /* left: calc(50% - 50px); */
  text-align: center;
}

.center_div_horizontal {
  text-align: center;
}

.center_div_vertical {
  position: absolute;
  top: calc(45% - 50px);
  /* left: calc(50% - 50px); */
}

.treverdogray {
  color: gray;
}

.login-page {
  height: 100%;
  background-color: floralwhite;
  width: 99%;
}

.login-page header {
  height: 0;
}

.login-page main {
  padding-top: 0;
}

.login-page-image {
  background-image: url(/images/pictures/Madrid_BirdEye_LR.jpg);
  background-size: cover;
}

.register-page {
  height: 100%;
  background-image: url(/images/pictures/Madrid_BirdEye_LR.jpg);
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  max-width: 100%;
  margin-left: 15px;
}

.register-page header {
  height: 2%;
}

/* treverdo changes to Bootstrap form std */
.form-control:valid {
  border: 1px solid #ced4da;
}

.was-validated .form-control:valid {
  border: 1px solid #ced4da;
}

.form-group label {
  font-size: 12px;
  margin-bottom: 0.1rem;
}

div .invalid-feedback {
  color: #dc3545 !important;
}

.form-control:disabled,
.form-control[readonly] {
  border: none none solid none;
  /* background-color: #fff; */
  background-color: transparent !important;
}

/* FooTable */
/* tbody>tr:nth-child(even) {
  background-color: #f2f2f2;
} */

/* table {
  border-color: gray;
  box-sizing: border-box;
} */

table>tbody>tr>td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

/* .fooicon {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  } */
/* th {border-bottom: 2px solid gray;}
td {border-bottom: 1px solid gray;} */


.tabs {
  clear: both;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  /* you can either manually set a min-height here or do it via JS ---> */
}

.tab {
  float: left;
}

.tab label {
  margin-right: 20px;
  position: relative;
  top: 0;
  cursor: pointer;
  color: #333;
  text-transform: uppercase;
}

.tab [type=radio] {
  display: none;
}

.tab__content {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity .2s cubic-bezier(.42, 0, .34, 1.01);
  opacity: 0;
}

[type=radio]:checked~label {
  border-bottom: 2px solid #1d1d1d;
  color: #1d1d1d;
  z-index: 2;
}

[type=radio]:checked~label~.tab__content {
  z-index: 1;
  opacity: 1;
}

input:read-only {
  border: none;
  border-bottom: solid;
  border-radius: 0%;
  border-width: 1px;
}

input:read-only::placeholder {
  color: transparent;
}

input:read-write::-webkit-input-placeholder {
  color: gray;
  opacity: 0.3;
  /* Firefox */
  font-size: smaller;
}

[placeholder]:read-write:focus::-webkit-input-placeholder {
  transition: text-indent 0.4s 0.4s ease;
  text-indent: -100%;
}

[placeholder]:read-write::-webkit-input-placeholder {
  transition: text-indent 0.4s 0.4s ease;
  text-indent: 0%;
}

select.form-control:disabled {
  background: #eee;
  border: none;
  border-bottom: 1px solid;
  border-radius: 0%;
  outline: none;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  display: none;
}

.treverdo_hidden {
  display: none;
}


/* datatable  */
td.highlight {
  font-weight: bold;
  color: blue;
}

td.back {
  background-color: rgb(200, 219, 219);
}

td.number {
  text-align: right;
}

.numero {
  text-align: right;
}

.login-footer {
  clear: both;
  padding-left: 10px;
  text-align: left;
  vertical-align: middle;
  line-height: normal;
  margin: 0;
  text-align: center;
  /* position: fixed;
  bottom: 0px; */
  width: 100%;
  font-size: x-small;
}

.text-result {
  font-weight: 900;
}

#map {
  position: relative;
  padding-bottom: 25%;
  overflow: hidden;
}

#map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
