/** TYPO */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, li,
fieldset, form, label, legend, caption, tbody, tfoot, thead,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
ul, h2{
    margin-top: 0;
}
@font-face {
  font-family: "Mangueira Alt";
  src: url("../fonts/Mangueira-Alt-regular.woff2") format("woff2"),
       url("../fonts/Mangueira-Alt-regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}

body{
    font-family: "Mangueira Alt";
    color: #333;
    line-height: 1.3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo{
	display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 1rem;
}

.main_content h1{
	font-size: 1.7rem;
    text-align: center;
    text-transform: uppercase;
    margin: 0.5rem 0;
    font-size: 1.5rem;
}

.form{
    max-width: 850px;
    margin: 0 auto;
    margin-top: 2rem;
    padding: 0 .1rem;
    line-height: 1.6rem;
}

 /* SINISTRES */
}

.form input[type=checkbox],
.form input[type=radio] {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.form input[type=checkbox] + label, 
.form input[type=radio]    + label {
  position: relative;
  cursor: pointer;
}
.form input[type=checkbox] + label:before, 
.form input[type=radio]    + label:before {
    content:'';
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #F3AA3C;
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle; 
    cursor: pointer;
    margin-right: 5px;
}
.form input[type=checkbox] + label:before {
    border-radius: .25rem;
} 
.form input[type=radio]    + label:before {
    border-radius: .75rem;
}
.form input[type=radio]:checked    + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5.5px;
    left: 6.5px;
    width: 6px;
    height: 6px;
    border-radius: 1rem;
    border: solid #000;
    background-color: #000;
}
.form input[type=checkbox]:checked + label:after{
    content: '';
    display: block;
    position: absolute;
    background: url(/images/icon_check.png) no-repeat center;
    background-size: 80%;
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
    border: none;
}
.form input[type=checkbox]:disabled + label:before, 
.form input[type=radio]:disabled    + label:before {
    background-color: #eee;
    border-color: #eee;
}
.form input[type=checkbox]:checked:disabled + label:after,
.form input[type=radio]:checked:disabled    + label:after {
    border-color: #ddd;
    background-color: #ddd;
}

.form [name=sinistre] [type="text"],
.form [name=sinistre] .SelectBox,
.form [name=sinistre] textarea{
    border-radius: .5rem !important;
    margin-bottom: .2rem;
    border: 1px solid #666;
}

.form [name=sinistre] .information{
    border-radius: 1rem;
    background-color: aliceblue;
    padding: .75rem;
    font-size: .9em;
    color: #333;
    margin: 1rem 0;
}

.form .table-style{
  width: 100%;
  border-collapse: collapse;
}

.form .table-style th{
    text-align: center;
    background-color: #6a86c5;
    padding: 6px;
    color: white;
    font-weight: normal;
    letter-spacing: 1px;
}

.form .table-style th a{
    color:#ffe200;
    font-weight: bold;
    text-decoration: none;
}

.form .table-style tr{
    margin-bottom: 10px;
}

.form .table-style td{
  padding-top: 8px;
  padding-bottom: 6px;
  padding-right: 8px;
  padding-left: 5px;
}

.form .table-style td a{
    color: #ff6020;
    text-decoration: none;
}

.or{
    background: white;
    display: inline-flex;
    width: 45px;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    font-weight: bold;
    position: relative;
    top: 40px;
    letter-spacing: 1px; 
}

/* BOUTON */

input{
    font-size: 100%;
    outline-style: none;
}

[class*=btn] {
    cursor: pointer;
    outline-style: none;
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 5px;
    font-weight: bold;
    padding: .75rem;
    padding-bottom: .5rem;
    -webkit-appearance: none;
}

.btn__cta {
    background-color: #F3AA3C;
    font-weight: 600;
    transition: transform .3s ease-in-out;
    padding: 1.1rem;
}

.btn__warning {
    background-color: #FDEFD5 !important;
    border-color: #FDEFD5;
    color: #000 !important;
}

.btn__cta:hover {
    transform: scale(1.05);
}

.lng ul{
    text-align: center;
    margin-top: 0.8rem;
}

.lng li{
    display: inline-flex;
    padding-right: 1rem;
}

.msg_error{
    display: flex !important;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

..msg_error span{
    border: solid 1px red;
    border-radius: 0.5rem;
    color: red;
    padding: .6rem;
}

@media screen and (min-width: 768px){

    .form [name=sinistre] .SelectBox, .form [name=sinistre] input[type=text]{
        padding: .5rem 1.5rem .5rem .5rem;
    }

    .form [name=sinistre] .question{
        width: 25%;
    }

    .form [name=sinistre] .information{
        float: right;
        width: 50%;
    }

    .form [name=sinistre] .question,
    .form [name=sinistre] .reponse{
        min-width: 50%;
        display: inline-block;
    }

    .form [name=sinistre] .row, .form [name=sinistre] .question{
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 560px){
    .btn.btn__cta {
        padding: 1rem;
    }
}

.form .SumoSelect.open > .optWrapper, .sumo_depuis.open > .optWrapper {
    top: 50px !important;
}

.banner{
    padding: 3rem; 
    display: flex; 
    flex-direction: column; 
    align-items: center;
}