/*
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 : 6 juin 2014, 16:37:23
    Author     : laurentdubois
*/
.item-details form input[type='submit']{
    min-width:180px;
}

#copies-loader{
    margin: auto;
}
.copies-loader {
  clear: both;
  width: 1em;
  height: 1em;
  font-size: 25px;
  position: relative;
}
@media (max-width: 225px), (max-height: 225px) {
  .copies-loader {
    font-size: 75px;
  }
}
.copies-loader:before, .copies-loader:after {
  content: "";
  top: 0;
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  border-width: 0.5em;
  border-style: double;
  border-color: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1em;
  -webkit-animation: spin 1s infinite;
  animation: spin 1s infinite;
}
.copies-loader:after {
  left: 0;
  border-left-color: grey;
}
.copies-loader:before {
  right: 0;
  border-right-color: grey;
  -webkit-animation-delay: -0.25s;
  animation-delay: -0.25s;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}