.search {
    position: fixed;
    top: 0;
    left: -65em;
    z-index: 20000;
    padding: 0 2em;
    width: 60em;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 2px rgba(0,0,0,0.2);
    color: #4d4d4d;
    font-family: 'questrial',Arial,sans-serif;
}

.search-header {
    height: 12em;
}

.search-footer {
    height: 4em;
}

.search-title {
    margin-top: 0;
    padding: 1em 0;
    text-transform: uppercase;
    font-size: 2.3em;
    font-family: 'goudystm',Arial,sans-serif;
    line-height: 1.2;
}

.search .title-after-search {
    display: none;
}

.search-title span {
    color: #a81e33;
    font-style: italic;
    font-size: 0.7em;
    margin-left: 0.6em;
    text-transform: none;
}

.search .search-form {
    position: static;
    margin: 0;
    width: auto;
    height: 2.4em; /* Hauteur à modifier pour agrandir ou diminuer la hauteur des inputs */
}

.search .search-form input {
    float: left;
    height: 100%;
    border: none;
    font-size: 1.2em;
}

.search .search-form input[type='text'] {
    padding: 0 1em;
    width: 83%;
    border: 1px solid #bbb;
    box-shadow: 0 0 4px rgba(0,0,0,0.2) inset;
    color: #4d4d4d;
}

.search .search-form input[type='submit'] {
    margin-left: 2%;
    width: 15%;
    border-radius: 5px;
    background-color: #a81e33;
    background-color: hsl(351, 70%, 39%);
    box-shadow: -1px -1px 6px rgba(0,0,0,0.8) inset, 1px 1px 6px rgba(255,255,255,0.8) inset;
    color: #fff;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    line-height: 1;
    cursor: pointer;
}

.search .search-form input[type='submit']:hover {
    background-color: #a81e33;
    background-color: hsl(351, 70%, 29%);
}

.search .close-bt {
    position: absolute;
    top: 0;
    right: 0;
}

.search .close-bt:after {
    position: relative;
    display: block;
    padding: 0.4em;
    color: #585858;
    content: '\e818';
    font-size: 2.2em;
    font-family: 'myicon';
}

.search .close-bt:hover:after {
    color: #a81e33;
}

.search-results {
    overflow: hidden;
    font-size: 1.4em;
    line-height: 1.5;
}

.search-result a {
    display: block;
    padding: 0.4em 0;
    color: #a81e33;
    color: hsl(351, 70%, 39%);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.search-result a:hover {
    color: hsl(351, 70%, 29%);
    text-decoration: underline;
}

.search-results .no-match {
    padding: 1.1em;
    border: 1px solid #930101;
    background: #a40101;
    color: #fff;
    font-size: 1.3em;
}

.search .search-form input[type='submit'],
.search .close-bt:after,
.search-result a {
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}