/*  */
@import url('https://fonts.googleapis.com/css2?family=Iceberg&display=swap');

*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Iceberg', cursive;
    font-weight: 100;
    background-color: #202425;
    height: 100vh;
}
input[disabled], textarea[disabled] {
    cursor: not-allowed;
}
.container_index{
    background-image: url("../image/background_index.png");
    width: 100%;
    height: 600px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.filter_container_index{
    width: 100%;
    height: 600px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 70%);
}
.filter_container_index .blur{
    width: 100%;
    height: 600px;
    backdrop-filter: blur(5px);
}
.description_content{
    position: relative;
    width: 100%;
    height: 600px;
}
.description{
    position: absolute;
    top: 30%;
    left: 6%;
    color: white;
    width: 85%;
}
.description h1{
    font-size:6vw;
    font-weight: lighter;
}
.bloc_proposition{
    display: flex;
    padding: 20px;
    margin-top: -130px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    z-index: 10;
    position: relative;
}
.bloc_proposition .card{
    margin: 30px;
    width: 250px;
    height: 200px;
    background: rgb(43, 43, 43, 100%);
    display: flex;
    flex-direction: column;
    border-radius: 5px;
}
.bloc_proposition .card .banner_card{
    width: 100%;
    height: 50%;
}
.bloc_proposition .card .img_vs{
    background-image: url("/image/vs.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
.bloc_proposition .card .img_posts{
    background-image: url("/image/writing.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
.bloc_proposition .card .img_login{
    background-image: url("/image/welcome.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
.bloc_proposition .card .txt_card{
    width: 100%;
    height: 50%;
    position: relative;
}
.bloc_proposition .card .txt_card p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: max-content;
    text-align: center;
    color: white;
}

/* CSS LOGIN */
.container_login{
    display: flex;
    flex-direction: row;
}
.background_login{
    background-image: url("/image/bg_login.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: relative;
}
.login{
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #202425;
    margin: auto;
}
.content-login{
    /* position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); */
    color: white;
    padding-left: 10px;
    width: 90%;
    margin: 150px auto 0px auto;
}
.content-login input{
    width: 100%;
}
input{
    color: white;
    margin: 5px;
    background-color: #202425;
    border: 1px #535353 solid;
    padding: 8px;
    outline: none !important;
    font-family: 'Iceberg', cursive;
}
textarea{
    color: white;
    margin: 5px;
    background-color: #202425;
    border: 1px #535353 solid;
    padding: 8px;
    outline: none !important;
    font-family: 'Iceberg', cursive;
}
select{
    color: rgb(150, 150, 150);
    margin: 5px;
    background-color: #202425;
    border: 1px #535353 solid;
    padding: 8px;
    outline: none !important;
    font-family: 'Iceberg', cursive;
}
option{
    color: rgb(150, 150, 150);
    margin: 5px;
    background-color: #202425;
    border: 1px #535353 solid;
    padding: 8px;
    outline: none !important;
    font-family: 'Iceberg', cursive;
}
input::placeholder {
    color: rgb(150, 150, 150);
    font-family: 'Iceberg', cursive;
}
.form-control{
    display: flex;
    width: 100%;
    align-items: center;
}
.form-control input[type=checkbox]{
    width: 13px;
    height: 13px;
}
.form-control label{
    font-size: 13px;
    margin: 5px;
}
#resultErr{
    color: #c0392b;
    font-size: 13px;
}
#resultSucc{
    color: #27ae60;
    font-size: 13px;
}
.validate-btn{
    text-align: right;
}
.validate-btn button{
    width: 100px;
    padding: 8px;
    background-color: #202425;
    border: 1px #535353 solid;
    outline: none !important;
    color: white;
    cursor: pointer;
}
.validate-btn button:hover{
    background-color: white;
    color: #202425;
    transition: 0.5s;
}
.haveStructure{
    background-color: rgb(43, 43, 43, 100%);
    border-radius: 5px;
    padding: 10px;
    border: #543F2D 1px solid;
    color: white;
    text-decoration: none;
}


/* Occasion */
.container_myannonce{
    margin: 0 100px; 
    transform: translate(0px, -300px);
}
.content-occasion .bg{
    background-image: url("/image/bg-occasion.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 600px;
}
.content-occasion .bg .blur{
    width: 100%;
    height: 600px;
    backdrop-filter: blur(5px);
}
.content-occasion .bg .search-occasion {
    position: absolute;
    top: 65%;
    width: 300px;
    right: 8%;
}
.content-occasion .bg .search-occasion input{
    width: 100%;
}
.contentmenu-occasion{
    margin-top: -100px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
    min-height: 220px;
}

.contentmenu-occasion .blocmenu{
    height: 200px;
    width: 200px;
    margin: 10px;
    position: relative;
    cursor: pointer;
    animation-name: height_blocmenu;
    animation-duration: 1s;
    transition: 1s;
}
@keyframes height_blocmenu {
    from {height: 0px;}
    to {height: none;}
  }
.contentmenu-occasion .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(43, 43, 43, 50%);;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}
.contentmenu-occasion .blocmenu .overlay {
    height: 0;
    animation: expandOverlay 1s ease-in-out forwards 1s;
}

@keyframes expandOverlay {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

.contentmenu-occasion .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
.contentmenu-occasion .equipement{
    background-image: url("/image/occasion_casque.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contentmenu-occasion .replique{
    background-image: url("/image/occasion_arme.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contentmenu-occasion .accessory{
    background-image: url("/image/occasion_equipement.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contentmenu-occasion .consommable{
    background-image: url("/image/consommable.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.container-info-occasion{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 40px;
}
.txt-more-info{
    text-align: center;
    color: white;
    font-size: 25px;
}
.container-info-occasion .bloc-info{
    border: #543F2D 1px solid;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    min-width: 40%;
    margin: 10px;
}
.container-info-occasion .bloc-info .bg-sand{
    width: 200px;
    height: 300px;
    background-image: url("/image/sand.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.container-info-occasion .bloc-info .bg-green{
    width: 200px;
    height: 300px;
    background-image: url("/image/image_10.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.container-info-occasion .bloc-info .text{
    color: white;
    margin: 20px;
    width: 200px;
}

/* OCCASION TYPE */
.content_occasion_type .bg{
    background-image: url("/image/sniper.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 600px;
}
.content_occasion_type .bg .blur{
    width: 100%;
    height: 600px;
    backdrop-filter: blur(5px);
}
.content_occasion_type .bg .search-occasion {
    position: absolute;
    top: 65%;
    width: 300px;
    right: 8%;
}
.content_occasion_type .bg .search-occasion input{
    width: 100%;
}
.content_occasion_type .container_all_articles{
    transform: translate(0px, -150px);
    padding: 10px;
    /* margin: 0 100px; */

}
/* style pour le conteneur principal */
.articles-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
  
/* style pour chaque article */
.article-container {
    display: flex;
    align-items: flex-start;
    border: #543F2D 1px solid;
    padding: 10px;
    width: 250px;
    margin: 10px;
    flex-direction: column;
    background: rgb(43, 43, 43, 100%);
    border-radius: 5px;
}

/* style pour l'image */
.article-image {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin: auto;
}

/* style pour le titre */
.article-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

/* style pour le prix */
.article-price {
    font-size: 18px;
    font-weight: bold;
    color: #e67e22;
}
.content_occasion_type .pagination-display{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 0 10px;
    flex-wrap: wrap;
    transform: translate(0px, -150px);
}
.content_occasion_type .pagination-container{
    margin: 10px;
}
.content_occasion_type .pagination-container button{
    width: 40px;
    height: 40px;
    border: 1px #535353 solid;
    border-radius: 5px;
    cursor: pointer;
    background: #202425;
    color: #e67e22;
    font-weight: 800;
}
.content_occasion_type .pagination-container button.active{
    background-color: #e67e22;
    color: white;
}
.content_occasion_type #search_empty{
    text-align: center;
    color: white;
}
/* RENCONTRE */
.content-rencontre .bg-rencontre{
    background-image: url("/image/bg_rencontre.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 600px;
}
.content-rencontre .bg-rencontre .blur{
    width: 100%;
    height: 600px;
    backdrop-filter: blur(5px);
}
.part_game{
    margin: 50px 50px;
    color: white;
}
.part_game .title{
    color: white;
}
.close_part{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.link_game{
    color: white;
    text-decoration: none;
    margin: 10px;
    width: 30%;
    min-width: 380px;
}
.bloc_part{
    background-color: rgb(43, 43, 43, 100%);
    border: 1px solid #543F2D;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    display: flex;
    overflow: auto;
}

.bloc_part .header{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 10px;
    align-items: center;
    line-height: 25px;
}
.bloc_part img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.bloc_part .header .info_header{
    margin-left: 10px;
}
.bloc_part .info-game{
    margin: 10px;
    line-height: 25px;
}
.view_game{
    position: absolute;
    bottom: 5px;
    right: 10px;
    width: 20px;
    cursor: pointer;
    color: #e67e22 !important;
}
.all_part{
    display: flex;
    flex-direction: row;
    justify-content: space-between;;
    flex-wrap: wrap;
}
.address-feedback{
    z-index: 1100;
    background: #202425;
    margin: 0px 5px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100px;
    overflow: overlay;
    border: 1px #535353 solid;
    position: absolute;
    top: 100%;
    width: -webkit-fill-available;
    display: none;
}
.address-feedback a{
    color: white;
    padding: 8px;
    text-decoration: none;
}
.address-feedback a:hover{
    background-color: rgb(43, 43, 43, 100%);
}
.content-rencontre .searchRencontre{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
}
.content-rencontre .searchRencontre input {
    width: 300px;
}
.content-rencontre .pagination-display{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-wrap: wrap;
}
.content-rencontre .pagination-container{
    margin: 10px;
}
.content-rencontre .pagination-container button{
    width: 40px;
    height: 40px;
    border: 1px #535353 solid;
    border-radius: 5px;
    cursor: pointer;
    background: #202425;
    color: #e67e22;
    font-weight: 800;
}
.content-rencontre .pagination-container button.active{
    background-color: #e67e22;
    color: white;
}
.content-rencontre #search_empty{
    text-align: center;
    color: white;
}
/* structure */
.banner_structure{
    background-image: url("/image/structure_banner.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}
.banner_structure .blur{
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(5px);
}
.account_structure{
    color: #3498db;
}
/* .structure{
    margin: 150px 100px;
} */
#file-upload-button{
    background-color: #c0392b;
}