/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
  .column {
    width: 100%;
  }
}

/* COLORES */
/* Letras al rellenar campo de formulario: #bababa */
/* Letras antes de rellenar campo de formulario: #6c757d */
/* Background del form field: #333333 */
/* Bordes de todo lo que esta en forms: border-radius: 1rem !important; */

hr {
  border: 1px solid white !important;
}

.error-msg {
  color: rgb(124, 25, 25) !important;
}

html {
  background-color: #181818 !important;
}

body {
  background-color: #181818 !important;
  color: white !important;
  width: 100% !important;
  height: 100%;
  padding: 0 !important;
  padding-top: 0 !important;
}

a:hover{
  cursor: pointer !important;
}

.bottom-right {
  position: absolute !important;
  bottom: 3px !important;
  right: 3px !important;
}

.bottom-left {
  position: absolute !important;
  bottom: 3px !important;
  left: 3px !important;
}

.contenedor {
  height: 90%;
}

.contenedor-instrucciones {
  height: 100%;
  align-content: center;
  display: grid;
  margin-left: 15%;
  margin-right: 15%;
  width: 70%;
}

.arrow-down-instrucciones {
  max-height: 200px !important;
}

.puntos-suspensivos-instrucciones {
  max-width: 70px !important;
}

.image-instrucciones-opaque {
  opacity: 0.2;
}

.arrow-close-navbar {
  height: 15px;
  width: 100%;
  max-width: max-content;
  margin-right: auto;
  margin-left: auto;
  z-index: 3;
}

a,
a:link,
a:visited,
a:hover {
  color: #ffffff;
  text-decoration: none !important;
}

.right-link-navbar {
  color: rgba(255, 255, 255, 0.5) !important;
}

.right-link-navbar:hover {
  color: rgba(255, 255, 255, 0.75) !important;
}

#contenedor-principal {
  /* 57 px es el tamaño del navbar */
  width: 100% !important; 
  height: 90% !important;
  vertical-align: center !important;
  text-align: center !important;
}

/* LINEA BASE */
.img-prueba {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#introduccion-linea-base {
  height: 100%;
  align-content: center;
  display: grid;
  margin-left: 15%;
  margin-right: 15%;
  width: 70%;
  text-align: center;
}

/* Ponemos los bordes mas redondeados en los botones, y en los campos de formulario*/
.btn,
.form-control {
  border-radius: 1rem !important;
}

.form-control {
  background-color: #333333 !important;
  border: medium none !important;
  margin-bottom: 0.7rem;
  color: #bababa !important;
}

/* Evitar que sweetalert salga como marcado */
.swal2-popup .swal2-styled:focus {
  box-shadow: none !important;
}

.no-border {
  border: none !important;
  box-shadow: none !important;
}

/* Carousel item de instrucciones */
.carousel-item {
  height: 100% !important;
}

/* Clases para que los desplegables con opciones tengan el mismo estilo */
select:invalid {
  color: #6c757d !important;
}

select:disabled {
  color: #6c757d !important;
}

.select-special-arrow {
  background-image: linear-gradient(45deg, transparent 50%, #bababa 60%),
    linear-gradient(135deg, #bababa 40%, transparent 50%) !important;
  background-position: calc(100% - 20px) 15px, calc(100% - 10px) 15px, 100% 0;
  background-size: 10px 10px, 10px 10px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input:required {
  box-shadow: none;
}

.invalid-field {
  /* border: 0.13px solid #c00 !important; */
  box-shadow: 0 0 7px #c00 !important;
}

.valid-field {
  /* border: 0.13px solid #c00 !important; */
  box-shadow: 0 0 7px #008c37 !important;
}

.btn-primary:disabled {
  background-color: #052648;
  border-color: #052648;
  cursor: not-allowed;
}

.form-control:disabled {
  cursor: not-allowed;
}

/* Para que cada fila ocupe lo maximo posible, y todo este centrado */
.form-row,
.row {
  width: 100%;
  margin-bottom: 0.1rem;
  margin-right: 0px !important;
  margin-left: 0px !important;
}

textarea {
  width: 75% !important;
  background-color: #333333 !important;
  border: none !important;
  color: white !important;
  padding: 0.5rem !important;
  border-radius: 1rem;
}

.dropdown-menu {
  background-color: #444444 !important;
}

/* CSS PARA EL DRAG AND DROP */
#file-drop-area {
  position: relative;
  /* display: flex; */
  align-items: center;
  width: 500px;
  max-width: 100%;
  padding: 25px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  transition: 0.2s;
  margin: auto;
}

.is-active {
  background-color: rgba(255, 255, 255, 0.05);
}

#fake-btn {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 8px 15px;
  /* margin-left: 10px; */
  font-size: 12px;
  text-transform: uppercase;
}

#fake-btn-2 {
  z-index: 3;
  position: relative;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 8px 15px;
  /* margin-left: 200px; */
  font-size: 12px;
  text-transform: uppercase;
}
.fake-btn-2:hover {
  cursor: pointer;
}

#file-msg {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.focus {
  outline: none;
}
