
/* STRUCTURAL STYLE */
.centered {
    text-align: center;
    margin : 0px;
    padding: 10px;
}
.width100 {
    width: 100%;
}
label{
    vertical-align: top;
}
.clearb{
    clear:both;
}

.annonce_conteneur{
    position: relative;
}

.annonce_conteneur:link{
    text-decoration: none;
}
.annonce_conteneur:focus, .annonce_conteneur:hover{
    background-color: #e3e3e3;
}
.annonnce_image{
    width: 140px;
    height : 120px;
    border-radius: 4px;
    border:1px solid #928C8C;
}
.annonce_text{
    max-width: 600px;
}
.annonce_info{
    color: #000000;
}
.add_annonce{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.annonce_search{
    width: 150px;
    display:inline;
}
.pagination_container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.pagination_arrow{
    width: 130px; 
    height: 100px;
    margin-bottom: 0px;
}
.pagination_arrow:focus, .pagination_arrow:hover{
    background-color: #e3e3e3;
}

.signam_abus_container{
    float: right;
    width: 180px
}

.signal_abus_icone{
    width: 40px;
    height: 40px;
    position: absolute;
    right: 60px;
    bottom: 80px;
}

.form_input_image{
    border: 1px solid;
    padding: 2px;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.animation-form_input_image_alternate{
    animation-name : animation_form_input_image;
    animation-direction : alternate;
}

.message_bienvenu{
    border: 1px dashed black;
}

@keyframes animation_form_input_image{
    from {border-color: #ffffff;}
    to {border-color: #30BED5;}
}

.underligne{
    text-decoration: underline;
}

.star_required{
    color: red;
}

/* FORMULAIRE */
textarea.form-control {
    height: 150px;
  }