/**
* 2007-2021 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2021 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:600");
.succ-update-order {
    position: fixed;
    z-index: 9999;
    background: #19ad19;
    border-radius: 5px;
    width: 350px;
    right: 25px;
    top: 14rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.25rem;
}
.err-input{
  border:3px solid red !important;
}
#close-icon{
  color:#fff;
  position: absolute;
  right: 8px;
  top:3px;
  cursor: pointer;
}
.input-update-order{
	padding:.5rem 1.5rem .5rem 1.5rem;
	text-align: center;
	border: 2px solid #023249;
	border-radius:25px; 
	outline:none !important;
}
.succ-update-order p {
	font-size: 0.8rem;
	color:#fff;
	margin-bottom: 0;
	font-family: 'Poppins';
}
.label-update-order{
	font-family: 'Poppins';
	font-size: 1.08rem;
	margin-right:2rem;
	margin-left: 2rem;
  text-align: center;
}
.error-update-order{
    position: fixed;
    z-index: 9999;
    background: #d85516;
    border-radius: 5px;
    width: 350px;
    right: 25px;
    top: 14rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.25rem;
}
.error-form-update{
    background: #d85516;
    border-radius: 5px;
    width: 100%;
    right: 25px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.25rem;  
}
.error-form-update h4{
  font-size: 0.8rem;
  color:#fff;
  margin-bottom: 0;
  font-family: 'Poppins';
}
#priceorder {
    width: 150px;
    letter-spacing: 3px;
}
#reforder {
    width: 218px;
    letter-spacing: 7px;
    text-transform: uppercase;
}
.error-update-order p {
	font-size: 0.8rem;
	color:#fff;
	margin-bottom: 0;
	font-family: 'Poppins';
}
.content-form-updateOrder{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom:1.2rem;

}
.hide {
  display: none;
}
.submit-button {
  display: block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75em;
  letter-spacing: 1px;
  height: 38px;
  width: 120px;
  line-height: 38px;
  overflow: hidden;
  background: #023249;
  border-radius: 3px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-button:hover, .submit-button:focus {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.submit-button.animated {
  -webkit-animation: 0.75s short-press cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation: 0.75s short-press cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.submit-button > span {
  display: block;
  color: white;
  text-align: center;
}
.submit-button > span.pre-state-msg {
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0.75s;
}
.submit-button.state-1 .pre-state-msg {
  margin-top: -38px;
}
.submit-button.state-2 .pre-state-msg {
  margin-top: -76px;
}
@keyframes short-press {
  0% {
    transform: scale(1);
  }
  
  50% {
    transform: scale(.9);
  }
  
  100% {
    transform: scale(1);
  }
}