.avatar {
    vertical-align: middle;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.front-search-btn{
    background: var(--color-primary);
}

.color-primary{
    color: var(--color-primary);
}

.section-search{
    /* background-attachment: fixed; */
    height: 100vh;
}

/* SEARCH ON NAVBAR */
#search-form{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 20px;
    width: 100%;
    padding-top: 10px;
}

 option:hover{
    background-color: var(--color-primary)!important;
}

.home-search__call-to-action .call-to-action__list .call-to-action__list-item .list-item__inner{
    background-color: rgba(255, 255, 255,0.8)!important;
}

#search-form  .form-group {
    padding: 5px;
}

.list-item__inner{
    background-color: rgba(255, 255, 255,.5);
}

/* phone and tablette */
@media screen and (max-width: 992px) {
    #search-form {
        margin-left: auto;
    }

    .section-search{
        height: auto;
    }

    #search-form  .form-group {
        width: calc(100% / 3);
    }
}

@media screen and (min-width: 992px) {
    #search-form .form-group {
        width: calc(100% / 5.5);
    }
}

#search-form .form-control:focus {
    border: 1px solid var(--color-primary);
    box-shadow: none;
    outline: 0;
}