/*
================================================================
Below is CSS for Generic Stuff
================================================================
*/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.BG_Container{
    width: 100%;
}

.Unidad{
    float: left;
    height: 100%;
    box-sizing: border-box;
}
.Unidad:hover{
    /*border: 2px solid #0e2431;*/
    position: relative;
    top: -8px;
    opacity: 0.7;
    transition: .5s ease;
}
.parameterSection{
    border: 1px solid #0e2431;
    padding: 8px;
}

@media print {
  /* All your print styles go here */
    .navbar{
        visibility: collapse !important;
    }
    nav{
        visibility: collapse !important;
    }
    .formContainer{
        background-color: white !important;
    }
    .row{
        background-color: white !important;
    }
    input, textarea {
      background-color: white !important;
    }
    .printHidden{
        visibility: collapse !important;
    }
}





