#store-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form-inp-payment-product{
    background-color: #161616;
    width: 600px;
    padding: 40px;
    display: flex;
    border-radius: 20px;
}
.form-inp-payment-product > div{
    width: 50%;
}
.form-inp-payment-product div img{
    width: 200px;
    height: 200px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.form-inp-payment-product > div:nth-child(2){
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form-inp-payment-product div button{
    color: #fff;
    background-color: #C34939;
    border: none;
    border-radius: 20px;
    padding: 10px;
    margin-top: 20px;
    font-weight: 900;
    width: 80px;
}
.form-inp-payment-product div button:hover{
    background-color: #fff;
    color: #C34939;
    cursor: pointer;
}
.form-inp-payment-product div div.input-OP{
    margin-top: 10px;
}
.form-inp-payment-product div div.input-OP input{
    margin-top: 10px;
    width: 95%;
    height: 40px;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
}
#store-content #list-store{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#store-content>h1{
    padding-bottom: 20px;
}
#store-content>img{
    width: 90%;
    padding-bottom: 20px;
}
.card-store-items{
    /* max-width:300px; */
    width: 250px;
    background-color: #2c2c2c;
    height: fit-content;
    margin: 30px;
    padding-bottom: 15px;
    border-radius: 20px;
}
.card-store-items:hover{
    background-color: transparent;
}
.store-card img{
    height:250px;
    width:100%;
  }
  
  .itemstore{
    border-radius: inherit;
    padding-left:5px;
    padding-right:5px;
  }
  .itemstore-card{
    border-radius: inherit;
    transition:0.5s;
    cursor:pointer;
  }
  .itemstore-card-title{  
    border-radius: inherit;
    font-size:15px;
    padding: 10px;
    transition:1s;
    cursor:pointer;
  }
  .itemstore-card-title i{
    border-radius: inherit;  
    font-size:15px;
    transition:1s;
    cursor:pointer;
    color:#ffa710
  }
  .store-card-title i:hover{
    border-radius: inherit;
    transform: scale(1.25) rotate(100deg); 
    color:#18d4ca;
    
  }
  .store-card:hover{
    border-radius: inherit;
    transform: scale(1.05);
    box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
  }
  .store-card-text{
    border-radius: inherit;
    font-size: small;
    height:80px;  
  }
  .item-store-purchase{
    color: #fff;
    background-color: #C34939;
    border: none;
    border-radius: 20px;
    width: 100%;
    padding: 10px;
    font-weight: 900;
    position: inherit;
  }
  .item-store-purchase:hover{
      background-color: #fff;
      color: #C34939;
      cursor: pointer;
  }
  .store-card::before, .store-card::after {
    border-radius: inherit;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out 0s;
    background: rgba(255, 255, 255, 0.1);
    content: '';
    pointer-events: none;
  }
  .store-card::before {
    border-radius: inherit;
    transform-origin: left top;
  }
  .store-card::after {
    border-radius: inherit;
    transform-origin: right bottom;
  }
  .store-card:hover::before, .store-card:hover::after, .store-card:focus::before, .store-card:focus::after {
    transform: scale3d(1, 1, 1);
    border-radius: inherit;
  }