body {font-family: Arial, Helvetica, sans-serif;}

*
{
  box-sizing: border-box;
}

.header
{
  
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10rem;
  padding-right: 10rem;
}



#opcoes
{
    display: flex;
    width: 100%;
    justify-content: center;
}
#opcoes > div
{
    display: block;
    width: 20rem;
    height: 8rem;
    margin: 1rem;
    background-color: #F6F6F6;
    color: black;
    text-decoration: none;
    padding-left: 1rem;
    border: 1px solid #F6F6F6;
}
#opcoes > a:hover
{
    border: 1px solid #CCCCCC;
}









#product-lista
{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 2rem;
}
.product
{
  display: flex;
  flex-direction: row;
  border: 1px solid #EDEDED;
  background: #f6f6f6;
  flex-grow: 4;
  padding: 2rem;
  width: 20rem;
  height: 18rem;
}

@media (max-width: 400px) {
  #product-lista {
    flex-direction: column;
  }
}
.product > *
{
  flex-shrink: 0;
  flex: 1; 
}
.product-title
{
  font-size: 1.7em;
  color: #1B3149;
}
.product-data
{
  margin-left: 2rem;
}


.product-confirm
{
  width: 100%;
  height: 10rem;
  padding: 0rem;
}
.product-confirm > div
{
  padding: 2rem;
}
.product-confirm > .product-img
{
  padding: 1rem;
}


.picker
{
  width: 6rem;
  height: 3rem;
  display: flex;
}

.picker > input
{
  -moz-appearance: textfield;
  width: 3rem;
  text-align: center;
  border: 0;
  
  width: 33.06%;
}
.picker > *
{
  display: inline-block;
  width: 33.06%;
  max-width: 39px;
  height: 100%;
}
.btn-minus, .btn-plus
{
  
  padding-right: 6px;
  background-color: white;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 1.5em;

  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.btn-minus
{ 
    border-radius: 40px 0 0 40px;
}
.btn-plus
{

  border-radius: 0 40px 40px 0;
}
.btn-minus:hover, .btn-plus:hover
{
  background: #293441;
  color: white;
}

#order-btn
{
  width: 40rem;
  height: 8rem;
  margin-top: 2rem;
  background-color: #008eaa;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #008eaa;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-size: 2em;
}
#order-btn:hover {
  background-color: #293441;
  border-color: #293441;
}
#order-btn-container
{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.product-img
{
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-img > img
{
  max-height: 100%;
  max-width: 100%;
}







.success-center
{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}






#login-form, #register-form
{
    border: 3px solid #f1f1f1;
    padding: 2rem;
}



input[type=text], input[type=password], input[type=email], input[type=tel], textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button, .btn {
    background-color: #008eaa;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
}
button:disabled,
button[disabled]{
  background-color: #7aa8b1;
}


button:hover, .btn:hover {
    opacity: 0.8;
}


.container {
    padding: 16px;
    margin: 40px auto;
    max-width: 80%;
}
.container-small {
    padding: 16px;
    margin: 40px auto;
    max-width: 55%;
}

@media screen and (max-width: 1000px) {
    .container-small {
        max-width: 80%;
    }
}









/*Modal cookies*/
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
}