@font-face {
    font-family: 'Poiret One';
    src : url(../webfonts/PoiretOne-Regular.ttf) format("truetype");
}

#header .major {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    font-family: 'Poiret One';
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
    font-family: "Poiret One";
}


.alert {
    padding: 20px;
    background-color: #29070d; /* Red */
    color: white;
    margin-bottom: 15px;
}

.alert.alert-error {
    background-color: #c64944;
}

.alert.alert-info {
    background-color: #18417b;
}

.alert.alert-success {
    background-color: #4CAF50;
}


.sticker {
    box-sizing: border-box;
    display: inline-block;
    padding: 5px;
    border-radius: 3px;
    background-color: #A3A3A3;
    font-size: 14px;
    line-height: 21px;
    color: #FFF;
    white-space: nowrap; }

.sticker.sticker-large {
    font-size: 1.5em;
    padding: 8px;
}

.sticker-blue {
    border-color: #0D91A6;
    background-color: #0D91A6; }

.sticker-green {
    border-color: #6AB902;
    background-color: #6AB902; }

.sticker-yellow {
    border-color: #FFBD38;
    background-color: #FFBD38; }

.sticker-orange {
    border-color: #FD8419;
    background-color: #FD8419; }

.sticker-red {
    border-color: #CB0000;
    background-color: #CB0000; }

.sticker-small {
    font-size: 12px;
    line-height: 14px; }

.sticker-extra-small {
    font-size: 8px;
    line-height: 12px; }

.sticker-small,
.sticker-extra-small {
    border-radius: 2px; }


#result {
    z-index: 999;
    position: fixed;
    bottom: 0;
    padding: 20px;
    background: #80b453;
    width: 100%;
}

#result.error {
    background: #CB0000;
}


.text-highlight {
    color: #921310;
    font-weight: bold;
}


.image-circle {
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 6px solid #FFF;
    line-height: 200px;
    text-align: center;
    font-size: 1.5em;
    color: #FFF;
    font-weight: bold;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    position: relative;
}

.image-circle.large-image-circle {
    width: 400px;
    height: 400px;
    border-radius: 200px;
    line-height: 400px;
}

a.image-circle:after {
    content: "";
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background: #000;
    display: block;
    position: absolute;
    top: -6px;
    left: -6px;
    border: 6px solid #FFF;
    opacity: 0.3;
    transition: opacity 0.5s;
}

a.image-circle:hover,
a.image-circle:active {
    border: 6px solid #FFF;
    color: #FFF !important;
}

a.image-circle:hover:after,
a.image-circle:active:after {
    opacity: 0;
}

#footer .footer-link {
    background: rgba(0,0,0,0.5);
    padding : 30px;
}

.text-center {
    text-align: center;
}

.margin-top-1lh {
    margin-top: 10px;
}

.margin-top-2lh {
    margin-top: 20px;
}

.width-30pct {
    width: 30%;
}
.width-40pct {
    width: 40%;
}
.width-50pct {
    width: 50%;
}

.width-100pct {
 width: 100%;
}

.margin-left-20px {
    .margin-left: 20px;
}

.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
}

.ellipsis-after-float {
    display: block;
    width: auto;
}

.ellipsis-nowrap {
    white-space: nowrap;
    width: 100%;
}

/* == positionnement avec les flexbox == */
.flex-column,
.flex-row {
    display: flex;
}

.flex-column > *, .flex-row > * { flex: 0 0 auto; }


.flex-column > .flex-item-extendable,
.flex-row > .flex-item-extendable,
{ flex: 1 0 auto; }

.flex-column > .flex-item-fluid,
.flex-row > .flex-item-fluid
{
      flex: 1 1 auto;
      overflow: hidden;
  }

.flex-column > .flex-item-fluid.ellipsis,
.flex-row > .flex-item-fluid.ellipsis
{ width: auto; }


.flex-column.inline-flex,
.flex-row.inline-flex
{ display: inline-flex; }


.flex-wrap {
    flex-wrap: wrap;
}

.flex-align-items-center {
    align-items: center;
}

.flex-align-items-start {
    align-items: flex-start;
}

.flex-align-items-end {
    align-items: flex-end;
}

.flex-align-items-baseline {
    align-items: baseline;
}

.flex-center {
    justify-content: center;
}


.flex-start {
    justify-content: flex-start;
}


.flex-end {
    justify-content: flex-end;
}

.flex-space-around {
    justify-content: space-around;
}

.flex-column { flex-direction: column; }

.flex-row { flex-direction: row; }

a.unstyled {
    border-bottom: none;
}

.text-strike {
    text-decoration-line: line-through;
}

.header-link a {
    color: #353535;
}

input[type="text"].error,
input[type="email"].error,
textarea.error
{
    border: inset 3px #590707;
}

@media screen and (min-width: 830px) {
    .visible-phone {
        display: none !important;
    }
}
@media screen and (max-width: 829px) {
    .hidden-phone {
        display: none !important;
    }
}

.button {
    padding: 0 8px 0 8px;
}