﻿* {
    box-sizing: inherit;
}

html {
    height: 100%;
    box-sizing: border-box;
}

body {
    height: 100%;
}

.wrapper {
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.blue-france-sun-113 {
    color: var(--background-action-high-blue-france);
}

.required-field:after {
    content: " *";
    color: var(--red-marianne-main-472);
}

.required-field-other:after {
    content: "*";
    color: var(--red-marianne-main-472);
}

.euro-field:after {
    content: "€";
    align-self: center;
    margin-left: 10px;
}

ul.list-dash {
    list-style: none;
    padding: 0px;
}
ul.list-dash li::before {
    content: "-";
    margin: 0px 1em 0px 0px;
}

ul.fr-footer__bottom-list li a[target=_blank]::after {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    content: none !important;
}

.truncate {
    display: inline-block;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow-x: clip;
    vertical-align: middle
}

.break-word {
    word-wrap: break-word;
}

.no-wrap {
    white-space: nowrap;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Modifications des styles vuetify */
hr.v-divider {
    line-height: 5px !important;
    padding-bottom: 0px !important;
}

div.v-list-item {
    padding-bottom: 2px !important;
    padding-top: 2px !important;
}

.fr-col-right {
    text-align: right;
}