#market{
  width:auto;
  height:100vh;
  background:#fff;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  overflow: auto;
  z-index: 80;
}

.textProduct > div {
  margin:50px;
}
.textProduct > div.btnProductContainer{
  margin:0;
  margin-bottom: 50px;
}
iframe {
    border: none;
    width: 100vw;
    height:100vh;
}

#productShowWindow{

  position: fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

.popUp{
  animation: popUpAnim forwards cubic-bezier(.36,.75,.63,.27) 3s;
}
@keyframes popUpAnim  {
  0% {transform: translate(-50%,300px); }
  20% {transform: translate(-50%,0px);}
  80% {transform: translate(-50%,0px);}
  100% {transform: translate(-50%,300px); }
}


#linkCartConst{
  display:flex;
  justify-content: right;
  width: 100%;
  height:40px;
  position: sticky;
  top:20px;
  z-index:100;
  pointer-events: none
}

#cartlogo{
  float: right;
  margin-right: 20px;
  top: 20px;
  right:20px;
  width:40px;
  height:40px;
  pointer-events: auto;
}

#cartlogo div {
  color:white;
  position: absolute;
  top: -10px;
  right:10px;
  background: #d72d2d;
  width:20px;
  text-align: center;
  justify-content: center;
  line-height: 20px;
  font-size: .8em;
  height:20px;
  border-radius: 50%;
  z-index: 100;
}

#cartlogo img{
  width:40px;
  cursor: pointer;
}

#sucess{
  padding:10px;
  color:white;
  position: fixed;
  left:50%;
  bottom:100px;
  border-radius: 8px;
  display: inline-block;
  transform: translate(-50%,300px);
  background: #32a852;
  -webkit-box-shadow: 0px 5px 19px 4px rgba(50,168,82,0.69); 
  box-shadow: 0px 5px 19px 4px rgba(50,168,82,0.69);
  z-index: 200;
}
#fail{
  padding:10px;
  color:white;
  position: fixed;
  left:50%;
  bottom:100px;
  border-radius: 8px;
  display: inline-block;
  transform: translate(-50%,300px);
  background: #d72d2d;
  -webkit-box-shadow: 0px 5px 19px 4px rgba(215,45,45,0.69);
  box-shadow: 0px 5px 19px 4px rgba(215,45,45,0.69);
  z-index: 200;
}

html, body {
  display:inline-block;
  width: 100%;
  background: #eee;
  margin:0;
  padding:0;

  /*overflow:auto;*/
}

html{
  height: 100%;
}
body {
  min-height: 100%;
}

#containerProducts{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-evenly;
  width:100vw;
  /*height:100vh;*/
  font-family: Arial, sans-serif;
}

.card{
  background:#fff;
  border-radius: 12px;
  max-width:300px;
  min-width:200px;
  display: inline-block;
  overflow: hidden;
  box-shadow: 0 0 5px 5px rgba(0 , 0,0,.1);
  margin:10px;
}

.imageCard{
  max-width: 100%;
  border-radius: 0;
}

.textCard{
  max-width: 80%;
  padding:10%;
}

.titleCard{
  font-size: 2em;
  font-weight:bold;
}
.priceCard{
  float:right;
  font-size: 1.2em;
  margin-top:.5em;
}

.readmore{
  font-weight: bold;
  cursor:pointer;
}

.btnCard{
  background: white;
  border-radius: 25px;
  border: solid 2px #4D2777;
  color: #4D2777;
  padding-left:20px;
  padding-right: 20px;
  height:5ch;
  cursor:pointer;
}

.btnCard:hover{
  background: #4D2777;
  color:white;
}



.numberinput{
  display: flex;
  width:80px;
  height: 30px;
  border:1px solid rgb(170, 169, 176);
  border-radius: 15px;
  line-height: 30px;
  margin-right:20px;
}
.lower,.higher{
  width:30px;
  text-align: center;
  font-weight:bold;
  cursor:pointer;
}
#inputqtt{
  text-align: center;
  width: 20px;
}




#productShowWindow{
  z-index:80;
  width:100vw;
  height:100%;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  display: none;
  background: white;
}

.arrProduct{
  font-family: "Roboto",sans-serif;
  position:absolute;
  top:30px;
  left:30px;
  font-size: 3em;
  color:white;
  cursor:pointer;
  z-index:10;
}

.numItem{
  position: absolute;
  left: -10px;
}

@media screen and (min-width: 1200px) {
  .containerProduct{
    display:flex;
  }

  .imageProductContainer{
    height:100vh;
  }
  
  .imageProduct{
    height:100vh;
  }
  
  .titleProduct{
    font-size:3em;
  }
  
  .priceProduct{
    float:right;
    margin-top: .8em;
    font-size:1.5em;
  }
  
  .lablContainer{
    margin-top:30px;
    margin-bottom:30px;
  }
  
  .labl{
    display: inline-block;
  }
  .labl > input{ /* HIDE RADIO */
    visibility: hidden; /* Makes input not-clickable */
    position: absolute; /* Remove input from document flow */
  }
  .labl > input + div{ /* DIV STYLES */
    cursor:pointer;
    border:2px solid #4D2777;
    color:#4D2777;
    padding: 5px 20px;
    margin:5px;
    border-radius: 1em;
  }
  .labl > input:checked + div{ /* (RADIO CHECKED) DIV STYLES */
    background-color: #4D2777;
    color:white;
  }
  
  .textProduct{
    min-width: 400px;
    background: white;
    width:100%;
  }
  
  .btnProduct{
    background: white;
    border: 2px solid #4d2777;
    border-radius: 30px;
    height:60px;
    color:#4D2777;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 2em;

  }
  
  
  
  .btnProduct:hover{
    color:white;
    background:#4D2777;
  }
  
  .btnProductContainer{
    margin-top:100px;
    display: inline-block;
    width:100%;
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 1200px) {
  .containerProduct{
    display:flex;
    flex-wrap: wrap;
  }
  
  .imageProduct{
    width:100vw;
  }
  
  .titleProduct{
    font-size:3em;
  }
  
  .priceProduct{
    float:right;
    margin-top: .8em;
    font-size:1.5em;
    margin-right: -25px;
  }
  
  .lablContainer{
    margin-top:30px;
    margin-bottom:30px;
  }
  
  .labl{
    display: inline-block;
  }
  .labl > input{ /* HIDE RADIO */
    visibility: hidden; /* Makes input not-clickable */
    position: absolute; /* Remove input from document flow */
  }
  .labl > input + div{ /* DIV STYLES */
    cursor:pointer;
    border:2px solid #4D2777;
    color:#4D2777;
    padding: 5px 20px;
    margin:5px;
    border-radius: 1em;
  }
  .labl > input:checked + div{ /* (RADIO CHECKED) DIV STYLES */
    background-color: #4D2777;
    color:white;
  }
  
  .textProduct{
    max-width:100vw;
    background: white;
    width:100%;
  }
  
  .btnProduct{
    background: white;
    border: 2px solid #4d2777;
    border-radius: 30px;
    height:40px;
    color:#4D2777;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1em;
  }
  
  
  
  .btnProduct:hover{
    color:white;
    background:#4D2777;
  }
  
  .btnProductContainer{
    margin-top:100px;
    display: inline-block;
    width:100%;
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}