@charset "UTF-8";
.timeline {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.li {
  transition: all 200ms ease-in;
}

.timestamp{
  margin-top: 30px;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 100;
}
.status {
  padding: 0px 40px;
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #D6DCE0;
  position: relative;
  transition: all 200ms ease-in;
}
h4{
    font-weight: 600;
    text-align: center;
}
h4:after {
    content: '';
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 25px;
    border: 1px solid #ddd;
    position: absolute;
    bottom: -25px;
    left: 42%;
    transition: all 200ms ease-in;
}
.li.complete .status {
    border-bottom: 4px solid #a69323;
}
.li.complete .status h4:after {
      background-color: #a69323;
      border: none;
      transition: all 200ms ease-in;
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    line-height: 45px;
    text-align: center;
    color: #FFF;
}
.li.complete h4 {
      color: #a69323;
}
.status h4 span {
        display: block;
    border: 2px solid;
    width: 128px;
    height: 128px;
    line-height: 128px;
    border-radius: 50%;
    text-align: center;
    margin: 17px auto;
    font-size: 56px;
}

@media (min-device-width: 320px) and (max-device-width: 700px) {
    .container {
        margin-top: 0% !important;
    }
    .timeline {
    list-style-type: none;
    display: block;
    }
    .li {
    transition: all 200ms ease-in;
    display: flex;
    width: inherit;
    }
    .timestamp {
    width: 100px;
    }
    .status:after {
      left: -8%;
      bottom: 30%;
      transition: all 200ms ease-in ;
    }
    .status h4 span {
        margin: 7px auto;
    }
    .status {
        width: 50%;
    }
    .status h4 span {
        width: 42px;
    height: 42px;
    line-height: 42px;
        font-size: 18px;
    }
}
/* Layout stuff*/
html,body {
  width: 100%;
  height: 100%;
  /*display: flex;*/
  justify-content: center;
  font-family: 'Titillium Web', sans serif;
  color: #d2d2d2;
    font-size: 1em;
    padding: 0;
    margin: 0;
    
}
.titulo h1 {
    padding: 0;
    margin: 0;
    line-height: 70px;
    color: #242424;
}
ul {
    padding: 0;
}
body {
    background-image: url("../images/fondo.jpg");
    background-size: cover;
}
#ingresa_datos {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
    top: 0;
    left: 0;
    z-index: 99999;
}
#contenido {
    position: absolute;
    width: 80%;
    left: 10%;
    top: 40%;
    color: #242424;
    text-align: center;
}
#ingresa_datos #contenido label {
    margin: 2%;
    display: block;
    font-size: 24px;
}
#ingresa_datos #contenido #orden {
    padding: 17px;
    font-size: 24px;
    border: thin solid #D4D4D4;
    outline: none;
    display: inline-block;
    width: 60%;
}
.is-invalid {
    border: thin solid red !important;
}
#ingresa_datos #contenido #rastrea {
    background-color: #242424;
    
}
#orden:focus {
    border: 2px solid #CBA826 !important;
}
header {
    position: relative;
    width: 100%;
    background-color: #FFF;
    -webkit-box-shadow: 2px 2px 7px 0 rgba(0,0,0,.3);
box-shadow: 2px 2px 7px 0 rgba(0,0,0,.3);
    height: 70px;
    overflow: hidden;
}
#logo {
    height: 70px;
    width: 70px;
    float: left;
    margin-right: 17px;
    overflow: hidden;
    margin-left: 17px;
}
#logo img {
    height: 70px;
    width: auto;
}
#logopick {
    height: 70px;
    float: right;
    padding-right: 7px;
    border-left: thin solid #d6dce0;
    padding-left: 7px;
}
#logopick img {
        width: auto;
    height: 50px;
    padding-top: 10px;
}
.container {
    position: relative;
    width: 100%;
    
    margin-top: 15%;
}
.titulo {
    position: relative;
    /* [disabled]width: 100%; */
    text-align: center;
    float: left;
}
button {
  position: absolute;
  width: 100px;
  min-width: 100px;
  padding: 20px;
  font-family: 'Titillium Web', sans serif;
  border: none;
  color: white;
  font-size: 16px;
  text-align: center;
}
#toggleButton {
    position: absolute;
    left: 10px;
    background-color: #75C7F6;
    bottom: 10px;
}
