.container-page {
    display: flex;
    width: 100%;
    background-image: url(.././img/bg/bgPp.jpg);
    background-size: cover;
    background-position: center;
}
.container-prod {
    position: relative;
    width: 900px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 50px;
}

.prod-category-list {
    position: absolute;
    list-style: none;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 13px;
    width: fit-content;
    border-radius: 5px;
    z-index: 100;
    padding: 0;
    margin: 0;
    opacity: 0;
}

.dropDownM {
    animation: rotateX 400ms ease-in-out forwards;
    /*transform-origin: top center;*/
}

.reverseDrop {
    animation: reverseRotateX 400ms ease-in-out forwards;
    /*transform-origin: top center;*/
}

@keyframes rotateX {
    0% {
        opacity: 0;
        height: 0;
      }
      50% {
        height: 50%;
      }
      100% {
        opacity: 1;
        height: 100%;
      }
}

@keyframes reverseRotateX {
    0% {
      opacity: 1;
      height: 100%;
    }
    50% {
        height: 50%;
    }
    100% {
      opacity: 0;
      height: 0;
    }
  }

.prod-category-list li {
    color: #e3d1b6;
    background-color: #29322d;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
}

.card {
    height: 100% !important;
}

.filtrer-products {
    position: relative;
    margin-left: 25px;
}

.hide {
    display: none;
}

.btn_style {
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    padding: 8px 20px;
    transition: all 0.5s;
    color: #29322d;
    background-color: #e3d1b6;
}

.btn_style span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
.btn_style span:after {
    content: '\00bb';
    font-size: 1.5em;
    position: absolute;
    opacity: 0;
    right: -15px;
    transition: 0.5s;
    bottom: -3px;
  }
  
.btn_style:hover span {
    padding-right: 15px;
  }
  
.btn_style:hover span:after {
    opacity: 1;
    right: 0;
  }


@media only screen and (orientation: portrait) {
    .container-prod {
        width: 80%;
    }

    .prod-category-list {
      font-size: 11px;
    }

    .filtrer-products {
      margin-left: 10px;
    }
}