/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 14, 2015, 10:20:43 AM
    Author     : mahaffy
*/
/*
LESS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: @icon-home-width;
}

The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;

At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
The provided classes are intended to be used with the array-like variables

.icon-home {
  .sprite-width(@icon-home);
}
.icon-email {
  .sprite(@icon-email);
}
*/
/*
The `.sprites` mixin generates identical output to the CSS template
  but can be overridden inside of LESS

.sprites(@spritesheet-sprites);
*/
/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.dropzone,
.dropzone * {
  box-sizing: border-box;
}
.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eeeeee, #dddddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666666, #444444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}
.dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 14, 2015, 1:30:28 PM
    Author     : mahaffy
*/
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 15, 2015, 11:14:36 AM
    Author     : mahaffy
*/
.dropzone {
  border: 3px dashed #9da4a9;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #9da4a9;
  padding: 10px;
  margin-bottom: 20px;
}
.dropzone.dz-drag-hover {
  background-color: lightgreen;
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 16, 2015, 9:34:30 AM
    Author     : mahaffy
*/
.bitem.border {
  border-left: 5px solid #9da4a9;
}
.bitem {
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.bitem .hover {
  visibility: hidden;
}
.bitem:hover {
  border-left-color: #0069aa;
}
.bitem:hover .hover {
  visibility: visible;
}
.touch .bitem .hover {
  visibility: visible;
}
.bitem h2,
.bitem h3,
.bitem h4 {
  margin-top: 3px;
  margin-bottom: 3px;
}
.bitem h3 {
  font-size: 20px;
  font-weight: bold;
}
.bitem p {
  margin: 0px;
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 21, 2015, 2:44:05 PM
    Author     : mahaffy
*/
table {
  margin-bottom: 5px;
}
table th,
table td {
  padding-left: 5px;
  padding-right: 5px;
}
table td {
  border-top: 1px solid #d7dfe4;
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 15, 2015, 8:26:05 AM
    Author     : mahaffy
*/
button.loadMore {
  font-size: 20px;
  margin-bottom: 20px;
}
.late {
  color: red;
}
label.noshow {
  display: none;
}
.po .accepted {
  color: #5f7353;
}
.po .declined {
  color: #c8a227;
}
.po .release input {
  max-width: 70px;
}
.po input[type=file] {
  margin-bottom: 5px;
}
.po .order-comments {
  padding: 5px;
}
.po .changeorder {
  color: red;
}
.po a.noDrawing {
  color: black;
  text-decoration: none;
  cursor: default;
}
.download-all-orders {
  margin-top: 5px;
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 27, 2017, 4:06:10 PM
    Author     : mahaffy
*/
.materialCertification {
  padding-bottom: 30px;
}
.materialCertification .releaseDueDate {
  font-weight: bold;
}
.materialCertification .errors.empty {
  display: none;
}
.materialCertification .errors {
  color: red;
  font-weight: bold;
  padding: 5px;
}
.materialCertification .empty-response .errors {
  color: black;
  font-weight: inherit;
}
.materialCertification.rejected .empty-response .errors {
  color: red;
}
.materialCertification.rejected .hasErrors input {
  background-color: #f5cfcf;
  border: 1px solid #ff8b8b;
}
/*.materialCertification .rejected .hasErrors input{
	background-color: white;
	border: 1px solid #ccc;
}*/
.materialCertification .passing-spec label:after {
  content: "✓ Meets Specification";
  color: #076907;
  margin-left: 15px;
}
.materialCertification .checkbox input {
  color: blue;
}
.materialCertification .spec .content {
  padding-left: 40px;
}
.materialCertification .spec h5 {
  font-weight: bold;
}
.materialCertification .question {
  /*background-color: #f6f6f6;*/
  border-bottom: 1px solid #f6f6f6;
  padding: 5px;
  max-width: 600px;
}
.specs .spec a {
  /*float: right;*/
}
form {
  max-width: 600px;
}
table.partreq tr > td:first-child {
  padding-left: 20px;
}
table.partreq tr > td:first-child.spec {
  /*font-weight: bold;*/
  padding-left: 0px;
  background-color: #f8f8f8;
}
table.partreq .na {
  color: #d8d5d5;
  text-align: center;
}
.mtlcert-home .btn {
  margin-top: 10px;
}
form.login {
  max-width: 350px;
  padding: 10px;
  border: 1px solid #9da4a9;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  background-color: #d7dfe4;
  background: linear-gradient(white, #d7dfe4);
  box-shadow: 0 0 5px #bcbbbb;
}
form.login div.error-message {
  padding: 5px;
  color: #a94442;
  font-weight: bold;
  text-align: center;
}
.navbar-brand {
  padding: 3px;
}
.zig {
  background-image: url('/images/pattern.png');
  background-repeat: repeat-y;
  background-color: black;
  width: 10px;
  display: inline-table;
  margin: 0 auto;
}
div.loading {
  background-image: url('/images/spinner.gif');
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  min-height: 200px;
  text-align: center;
  font-size: 20px;
  padding-top: 85px;
  color: #455560;
}
div.loading:after {
  content: "Loading";
}
.flash {
  padding: 15px;
  margin: 3px;
  border: 1px solid #C2C5C8;
  background-color: #e7e7e7;
  background: linear-gradient(white, #e7e7e7);
  border-radius: 10px;
  color: black;
}
.flash.error {
  background: linear-gradient(#e9aeae, #a94442);
  color: white;
}
.myfiles .icon {
  display: inline-block;
  float: left;
  margin-right: 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}
.myfiles .file .icon {
  background-image: url(../images/icons.png);
  background-position: 0px -312px;
  width: 55px;
  height: 68px;
  color: #9da4a9;
  padding-top: 25px;
}
.myfiles .folder .icon {
  background-image: url(../images/icons.png);
  background-position: -55px -355px;
  width: 55px;
  height: 41px;
  color: white;
  padding-top: 12px;
}
.myfiles .bitem h2 {
  font-size: 14px;
  font-weight: bold;
  text-transform: capitalize;
}
.myfiles .bitem h2 span {
  font-weight: normal;
}
.adminMeta {
  font-size: 10px;
}
.adminMeta p {
  margin: 0px;
}
.user .role {
  color: #5f7353;
  margin-right: 10px;
}
.user form {
  display: inline;
}
.homepage-content .bitem .glyphicon {
  float: left;
  font-size: 40px;
  padding-right: 10px;
}
.homepage-content .bitem {
  max-width: 800px;
}
.homepage-content .bitem p {
  margin-left: 50px;
}
button.inprogress:after,
a.inprogress:after {
  content: " - Loading...";
}
.fos_user_user_show form {
  display: inline;
}
p {
  max-width: 600px;
}
.gentle-error {
  text-align: left;
  font-size: 16px;
  padding: 15px;
  margin-left: auto;
  margin-right: auto;
  width: 600px;
  max-width: 100%;
  display: flex;
  align-items: center;
  background-color: #fcb769;
  border-radius: 3px;
}
.gentle-error span {
  padding: 10px;
}
.sprite_file {
  background-image: url(../images/icons.png);
  background-position: 0px -312px;
  width: 55px;
  height: 68px;
}
.sprite_folder {
  background-image: url(../images/icons.png);
  background-position: -55px -355px;
  width: 55px;
  height: 41px;
}
.sprite_full-logo-small {
  background-image: url(../images/icons.png);
  background-position: -55px -312px;
  width: 166px;
  height: 43px;
}
.sprite_full-logo {
  background-image: url(../images/icons.png);
  background-position: 0px 0px;
  width: 603px;
  height: 156px;
}
.sprite_test-2 {
  background-image: url(../images/icons.png);
  background-position: 0px -156px;
  width: 603px;
  height: 156px;
}
.sprite {
  display: inline-block;
}
