/*TEXTE SOUS-LIGNE EN VERT*/
.page-content .text-underline{
    text-decoration: underline;
    color: #64af19;
}

/*LISTE PUCES TRAIT BLEU*/
.page-content ul.puces-trait-bleu li::before {   
    content: "";
    background: #0064b9;
    height: 2px;
    width: 10px;
    position: absolute;     
    top: 10px;
    left: -1.2em;
    -webkit-mask-image: none;
    opacity: 1;
        transition: all 0.3s ease;

}
.page-content ul.puces-trait-bleu li::after {
    content: "";
    background: #64af19;
    height: 2px;
    width: 10px;
    position: absolute;     
    top: 10px;
    left: -1.2em;
    -webkit-mask-image: none;
        opacity: 0;
            transition: all 0.3s ease;
}

.page-content ul.puces-trait-bleu li a:hover,
.page-content ul.puces-trait-bleu li a:focus,
.page-content ul.puces-trait-bleu li a:active {   
    color: #64af19;
}

 .page-content ul.puces-trait-bleu li {   
    list-style-type: none;
    position: relative;
    left: -1em;
}

/*LISTE PUCES CARREES*/
.page-content ul.puces-carrees li::before {   
    content: "";
    background: #64af19;
    height: 5px;
    width: 5px;
    position: absolute;     
    top: 9px;
    left: -1.2em;
    -webkit-mask-image: none;
}

 .page-content ul.puces-carrees li {   
    list-style-type: none;
    position: relative;
}

/*LIENS NEW PAGE*/
.page-content .lien-standard{
    color: #0064b9;
}
.page-content .lien-standard:hover,
.page-content .lien-standard:focus,
.page-content .lien-standard:active {   
    color: #64af19;
}
.page-content .lien-standard::after {
    height: 15px;
    width: 15px;
    top: 7px;
    background-image: url(../images/picto_lien_over.svg);
}

.page-content .lien-standard::before {
    height: 15px;
    width: 15px;
    top: 7px;
    background-image: url(../images/picto_lien.svg);
}


.lien-pdf, .lien-standard {
    display: inline-block;
}

/*LIEN PDF*/
.lien-pdf::before{
    background-image: url(../images/picto_fichier.svg);
    opacity: 1;
}
.lien-pdf::after{
    background-image: url(../images/picto_fichier_over.svg);
    opacity: 0;
}



/*IMAGE RAPPORT TECHNIQUE*/
.foretvalais-icon-rapports-techniques-list img{
    max-width: 200px;
    max-height: 200px;
}



/*FORM*/
#contact-form button#Submit {
    padding: 10px 30px 5px 10px;
    line-height: 25px;
    text-shadow: none;
}
#contact-form .rsform-block-email input,
#contact-form .rsform-block-fullname input{
    border: none;
    border-radius: 0;
    height: 10%;
}
#contact-form label {
    font-size: 18px;
}
#contact-form .rsform-block-message textarea {
    border: none;
    width: 100%;
    resize: none;
    border-radius: 0;
    padding: 0.5rem 0.75rem;
}

#contact-form textarea:focus {
    box-shadow: none;
}
#contact-form .formRequired{
    display: none;
}

#contact-form .error input.rsform-error,
#contact-form .error textarea.rsform-error{
    border: 1px solid #CF4D4D;
}

#contact-form .rsform-block-recaptcha label{
    display: none;
}

/*RECHERCHE*/
#searchForm .form-group:first-child {
    width: 40%;
    padding-bottom: 30px;
}

#searchForm .btn-secondary {
    color: #fff;
    background-color: #0063b8;
    border-color: #0063b8;
}

#searchForm .btn-secondary:hover {
    color: #fff;
    background-color: #64af19;
    border-color: #64af19;
}


#searchForm .form-control {
    border: 1px solid #0063b8;
}


#searchForm .badge-info {
    color: #fff;
    background-color: #0063b8;
}

#searchForm .badge {
    display: inline-block;
    padding: .5em .5em;
}

.search .search-results dt.result-title {
    margin-top: 10px;
    color: #0063b8;
}

.search .search-results dt.result-title:hover {
    margin-top: 10px;
    color: #64af19;
}
@media screen and (max-width: 767px){
    #searchForm .form-group:first-child {
        width: 100%;
        padding-bottom: 30px;
    }
}


/*ERROR PAGE*/
.error-page img{
    max-width: 30%;
}

.error-page .btn-secondary {
   color: #fff;
    background-color: #0063b8;
    border-color: #0063b8;
}

.error-page .btn-secondary:hover {
    color: #fff;
    background-color: #64af19;
    border-color: #64af19;
}

