:root {
    --engine-background-color: #9b8b8a;
    --fields-border-color: #ab9c95;
    --fields-background-color: #fffafa;
    --fields-text-color: #352d29;
    --fields-width: 210px;
    --fields-margin: 12px;
    --fields-font-family: 'open-sans-regular';
    --fields-font-size: 12px;
    --fields-font-letter-spacing: -0.01em;
}

* {
    margin: 0px;
    padding: 0px;
    font-size: 0px;
    box-sizing: border-box;
    font-weight: normal;
}

pre.debug {
    font-size: 14px;
    font-family: monospace;
}

html,
body {
    width: 100%;
    height: 100%;
}

.noselect,
.noselect * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input {
    -moz-appearance: none;
    -webkit-appearance: none;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

select option {
    -moz-appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    font-size: inherit;
}

::-webkit-input-placeholder {
    font-family: var(--fields-font-family);
    font-size: var(--fields-font-size);
    letter-spacing: var(--fields-font-letter-spacing);
    text-transform: uppercase;
    color: var(--fields-text-color);
}

::-ms-input-placeholder {
    font-family: var(--fields-font-family);
    font-size: var(--fields-font-size);
    letter-spacing: var(--fields-font-letter-spacing);
    text-transform: uppercase;
    color: var(--fields-text-color);
}

::placeholder {
    font-family: var(--fields-font-family);
    font-size: var(--fields-font-size);
    text-transform: uppercase;
    letter-spacing: var(--fields-font-letter-spacing);
    color: var(--fields-text-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid #ccc;
    -webkit-text-fill-color: #333;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

ul {
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

.layout-root {
    display: block;
    position: relative;
    z-index: 1;
    padding: 30px;
    width: 100%;
    min-height: 100%;
}

.new-search-button {
    display: inline-block;
    font-family: 'open-sans-regular';
    font-size: 12px;
    text-decoration: none;
    color: #fefefe;
    text-transform: uppercase;
    background-color: #e44466;
    padding: 9px;
    animation-name: new_search_button_show;
    animation-delay: 0.5s;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    opacity: 0;
    width: 170px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    text-align: center;
}

.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.layout-socials {
    display: block;
    position: fixed;
    right: 0px;
    top: 40%;
    width: 52px;
    padding-top: 10px;
    z-index: 2;
    background-color: var(--engine-background-color);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.layout-socials ul li {
    margin-bottom: 15px;
    cursor: pointer;
}

.layout-socials ul li a {
    font-size: 26px;
    color: #fff;
    display: block;
    text-align: center;
    cursor: pointer;
    line-height: 40px;
}

.call-to-action {
    margin-top: 100px;
    background-color: #ebe6e2;
    width: 100%;
    max-width: 480px;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
}

.call-to-action * {
    font-size: 20px;
    line-height: 26px;
    
    font-family: 'aw-conqueror-sans-light';
    text-transform: uppercase;
    color: var(--bordo);
}

.call-to-action p {
    display: block;
    position: relative;
    text-align: center;
}

.call-to-action p i{
    font-family: 'Line Awesome Free';
    font-size: 50px;
    line-height: 65px;
    letter-spacing: initial;
}


.layout-bareme-transaction {
    margin-top: 100px;
    margin-bottom: 100px;
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.layout-bareme-transaction h3 {
    background-color: var(--engine-background-color);
    padding: 5px 20px;
    font-family: 'aw-conqueror-sans-light';
    font-size: 30px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.layout-bareme-transaction p {
    font-family: 'aw-conqueror-sans-light';
    font-size: 16px;
    color: var(--noir);
    margin-bottom: 10px;
}

.layout-bareme-transaction table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.layout-bareme-transaction thead {}

.layout-bareme-transaction tbody {}


.layout-bareme-transaction th {
    padding: 10px;
    background-color: var(--engine-background-color);
    font-family: 'aw-conqueror-sans-light';
    font-size: 20px;
    color: #fff;
}

.layout-bareme-transaction td {
    padding: 10px;
    border: 1px solid var(--engine-background-color);
    font-family: 'aw-conqueror-sans-light';
    font-size: 20px;
    color: var(--engine-background-color);
}








@keyframes new_search_button_show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width: 500px) {
    .new-search-button {
        top: 10px;
        right: 150px;
    }
}

@media screen and (orientation:portrait) and (max-width:500px) {
    .layout-root {
        padding: 0px;
    }
}

@media screen and (orientation:landscape) and (max-width:1000px) and (max-height:500px) {
    .layout-root {
        padding: 0px;
    }
}