@media (min-width: 992px){
    .plane{
        height: 100%;
        width: auto;
    }
}
@media (max-width: 992px){
    .plane{
        height: 100%;
        width: auto;
    }
}
@media (max-width: 767px){
    .plane{
        width: 100%;
        height: auto;
    }

}
@media (max-width: 479px){
    .plane{
        width: 100%;
        height: auto;
    }
}

body{
    background-color: #e4e4e4;
}

.plane{
    position: absolute;
    bottom: 0;
    right: 0;
}

.logo{
    position: fixed;
    top: 50px;
    left: 50px;
}

.button {
    background-color: rgb(53, 60, 60);
    color: rgb(201,202,202);
    font-family: 'Montserrat';font-size: 12px;
    border: solid RGB(53,60,60);
    border-width: 1px;


}
.popup-container{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 52;
    visibility: hidden;
    display: flex;

}
.popup-content{
    max-height: 90vh;
    margin: auto;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
}
p{
    font-family: 'Montserrat';font-size: 22px;
}

form{
    position: fixed;
    top: 40%;
    left: 70px;
    font-family: 'Montserrat';font-size: 22px;
    z-index: 50;
}

.tracking_wrapper{
    padding: 0 15px;
}
.reload{
    margin: 15px;
    margin-left: auto;
}
@media (orientation: portrait){
    form{
        top: 20%;
        font-size: 18px;
        left: 15px
    }
    input[type="text"]{
        width: 50%;
    }

}
.logo{
    z-index: 50;
    max-width: 70%;
}
/*.table_tracking{
    margin: 15px auto;
}*/
.tab{
    display: flex;
    overflow-y: overlay;
}
body {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  position: relative;
  margin: 0;
}
.plane,
.plane .picture,
.plane img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}