/*
PALETTE
-------
New Green primary : #27ECA0
New Secondary Blue light : rgb(0 204 240);
New header Blue  : rgb(18 00 108);

Blue primary : #3A5891
Blue primary light : #39679f
Grey back font : #797979
Grey background : #F0F0F0

Light blue : #91b7e6
*/


/*===================LAYOUT=====================*/

body{
    background-color: white;
    font-family: 'Lato', sans-serif;
}

header{
	background-color: rgb(18 00 108);
	height : 100px;
}

header h1{
	display: inline-block;
	position : absolute ;
	top : 30px;
	right : 10px;
}

header .st-main-logo{
    border-radius: 200px;
	width: 150px;
    height: 150px;
	margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    background-size: 90% 90%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color:white;
}

.st-main-card{
    background-color: white;
    border-radius:10px;
    min-height: 30px;
    margin-top: 20px;
    padding: 4px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    /*padding: 30px;
    font-size: 16px;*/
}

.st-main-card h2{
    color: #797979;
    font-size: 28px;
    font-family: 'Lato', sans-serif;
    padding-bottom: 5px;
    border-bottom: 2px solid #797979;
    display:inline;
}

.st-main-card h3{
    /*font-size: 45px;
    margin-top: 40px;*/
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-weight: bold;
}

.st-help-circle{
    width: 50px;
    height: 50px;
    text-align: center;
    /*background-color: #3A5891;*/
    background-color: rgb(18 00 108);    
    border: solid white 3px;
    border-radius: 100px;
    position: absolute;
    padding: 5px;
    font-weight: bold;
    color: white;
    font-size: 24px;
    margin-top: 27px;
    margin-left: 10px;
    cursor: pointer;
}

.st-burger-menu{
    width: 50px;
    height: 50px;
    text-align: center;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 5px;
    font-weight: bold;
    color: white;
    font-size: 24px;
    margin: 20px;
    cursor: pointer;
}

.st-menu-table{
    width: 100%;
    border-top: solid 1px #91b7e6;
}

.st-menu-table tr td{
    padding-top: 20px;
}

.st-menu-table tr td a{
    text-decoration: none;
}

.st-menu-table tr:last-child td{
    padding-bottom: 20px;
}

.st-cgu-button{
    width: 90%;
    max-width: 300px;
    margin: 10px;
}

.st-form-button{
    min-width: 140px;
}

.st-stepper{
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.st-stepper li{
    list-style: none;
    display: inline-block;
    width: 50px;
    z-index: 2;
}

.st-stepper li.st-active{
    width: 120px;
}

.st-marginTop-10{
    margin-top: 10px
}

.st-marginBottom-10{
    margin-bottom: 10px
}

.st-stepper-circle{
    display: inline-block;
    width: 100px;
    height: 40px;
    padding: 8px;
    color: white;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: #c3c3c3;
    z-index: 2;
}

.st-stepper-circle-active{
    display: inline-block;
    width: 100px;
    height: 40px;
    padding: 8px;
    color: white;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: rgb(18 00 108);
    z-index: 2;
}

@media only screen and (max-width: 605px){
    .st-stepper-circle{
        width: 80px;
        height: 40px;
    }

    .st-stepper-circle-active{
        width: 80px;
        height: 40px;
    }

    .st-stepper li{
        width: 25px;
    }

    .st-stepper li.st-active{
        width: 60px;
        font-size: 13px;
    }

}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.st-label-radio{
    cursor: pointer;
    padding: 10px;
    width: 131px;
    background: #fbfbfb;
    border: solid 1px #f1f1f1;
    color: #adadad;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-right: 5px;
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
}

[type="radio"]:checked + .st-label-radio {
    background: rgb(18 00 108);
    color: white;
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.st-label-checkbox{
    cursor: pointer;
    padding: 10px;
    width: 131px;
    background: #fbfbfb;
    border: solid 1px #f1f1f1;
    color: #adadad;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-right: 5px;
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
}

[type="checkbox"]:checked + .st-label-checkbox {
    background: rgb(18 00 108);
    color: white;
}

label span.text-danger{
    margin-left: 2px;
}

.st-btn-suivant, .st-btn-quitter, .st-btn-retour{
    margin: 5px;
}

.st-btn-quitter{
    float: left;
    margin-top: -38px;
}

.st-btn-retour, .st-btn-suivant{
}

.st-no-width{
    width: unset !important;
}

@media only screen and (max-width: 360px){
    .text-left{
        text-align: center;
    }
}

@media only screen and (max-width: 630px){
    .st-btn-quitter{
        float: none;
        margin-top: 5px;
    }

    .st-btn-suivant, .st-btn-retour{
        float: none;
    }

    .text-right{
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    .st-help-circle{
        margin-top: 8px;
        margin-left: 0px
    }
    .st-burger-menu{
        margin: 0px
    }
}
.st-main-card-accident{
    margin-top: 0px !important;
    padding-top: 15px;
}
@media only screen and (max-width: 1200px) {
    .st-main-card{
        margin-top: 90px;
    }
    .st-main-card-accident{
        margin-top: 20px !important;
    }
    .st-main-card h2{
        font-size: 16px;
    }

    .st-main-card h3{
        font-size: 24px;
        text-align: left;
        margin-top: 10px;
    }
}

.souligne{
	text-decoration: underline;
}

footer{
	width: 100%;
	height: 70px;
	font-size: 11px;
    border-top: #e8e8e8 solid 1px;
}

.center-label{
	margin-left:-15px;
	top:5px;
	position:relative;
}

.area-commentaire{
	resize:none;
}

.montr{
	display:none;
}

.obligatoire{
	color:red;
}

footer img{
	margin-top: -3px;
}

#logo_ST {
	text-align:center;
}

#logo_ST img {
	width : 75%;
}

.mentions_legale_contact, .mentions_legale, .contact{
	font-size: 15px;
	text-align:center;
	margin:2%;
}

.mentions_legale:hover, .contact:hover{
	cursor:pointer;
}


/*============================================*/
/*============================================*/


#text_termine {
	text-align: center;
}

#form-title{
	background-color: #4183D7;
	border-radius: 5px 5px 0 0;
	color: white;
}

#form-title h2{
	font-size: 22px;
}

#main .panel{
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(236, 236, 236, 0.95);
	opacity: 0.95;
}

#section_auth .panel{
	max-width: 800px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(236, 236, 236, 0.95);
	box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.3),
            	-1px 2px 20px rgba(255, 255, 255, 0.6) inset;
	opacity: 0.95;
}

#tiers_connu_panel, #tiers_panel{
	display:none;
}

#termine-panel{
	margin-top:auto;
}

.panel-primary{
	border-top : none;
	border-color: #3A5891;
}

.panel-primary .panel-heading{
	background-image: none;
	background-color: #3A5891;
	border-color: #3A5891 ;
}

.st-step9 .panel-heading{
    cursor: pointer;
}

.btn-info-custom{
    color: #fff;
    background-color: rgb(0 204 240);
    border-color: rgb(0 204 240);
}

.btn-primary{
	background-color: #27ECA0;
	border-color: #27ECA0;
}

.btn-primary:hover{
	background-color: rgb(0 204 240);
	border-color: rgb(0 204 240);
}

.color-primary-header{
	background-color: rgb(17 00 101);
}

.sous-title{
    color: rgb(13, 13, 107) ;
}

.bold{
    font-weight: bold;
}

/*==============custom breadcrumb ?===================*/

.custom-breadcrumb{
	background-color: #ececec;
	display: inline-block;
	height: 50px;
	text-align: center;
	min-width: 100px;
	border-radius: 4px 4px 0 0;
	border-bottom: solid #585555 3px;
}

.custom-breadcrumb.active{
	font-weight: bold;
	background-color: #A0A0A0;
}

.custom-breadcrumb.inactive{
	opacity: 0.7;
}

.custom-breadcrumb p{
	margin-top: 11px;
}

.custom-breadcrumb span{
	margin-top: -3px;
	margin-left: -10px;
	position: absolute;
	font-size: 15px;
	z-index: 1000;
	background-color: #585555;
}

#breadcrumb-container{
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	text-align: center;
}

/*============================================*/

/*-------------LISTE---------------*/

.matable {
	width:100%;
}

.matable tr {
	height : 50px;
}

.matable input, h4 {
	margin-left : 1%;
	margin-top : 1%;
}

.matable h3 {
	margin-left : 5%;
	margin-top : 3%;
}

.matable h3, h4 {
	font-weight: 200;
}

.form-controle {
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-controle2 {
    height: 40px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #000000;
    border: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size : 15px;
}

#main{
    min-height: 82vh;
    background-color: #F0F0F0;
}

#main .panel2{
	max-width : 900px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(236, 236, 236, 0.95);
	box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.3),
            	-1px 2px 20px rgba(255, 255, 255, 0.6) inset;
	opacity: 0.95;
}

.aucun {
	background-color : rgba(236, 236, 236, 0.99);
	height : 50px;
	text-align : center;
}

.aucun p {
	margin-left : 5%;
	margin-top : 1%;
}

.type p{
	font-size : 10px;
	text-align : right;
}


#nouveau {
	margin-left : 1%;
}

/*=====================================================*/

#fade { /*--Masque opaque noir de fond--*/
	display: none; /*--masqu� par d�faut--*/
	background: #000;
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 9999;
}

.popup_block{
	display: none; /*--masqu� par d�faut--*/
	background: #fff;
	padding-left: 50px;
	padding-top : 20px;
	padding-bottom : 20px;
	border-top: 20px solid #816B6E;
	float: left;
	font-size: 1.2em;
	position: fixed;
	top: 50%; left: 50%;
	z-index: 99999;
	/*--Les diff�rentes d�finitions de Box Shadow en CSS3--*/
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	/*--Coins arrondis en CSS3--*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/*===========Je sais pas=========================*/

/*--G�rer la position fixed pour IE6--*/
*html #fade {
	position: absolute;
}

*html .popup_block {
	position: absolute;
}

/*============================================*/

/*============================================*/

.modalMention {
    width:800px;
    overflow-y: auto;
}

.modal{
    overflow: hidden;
}

.modal-open{
    overflow-y:auto;
    overflow-x: hidden;
}

.modal-title{
    font-weight: bold;
}

.modalMention .modal-body {
    max-height: 600px !important;
}

.modal .modal-body {
    max-height: 420px;
    overflow-y: auto;
}


.tag {
	color: #404040;
	background-color: #D8D8D8;
	padding: 6px;
}

.swal2-popup {
    font-size: 1.5rem !important;
}


.st-main-card-custom{
    padding: 0 !important;
    margin-bottom: 0px;
}
.h3-custom{
    padding: 0 !important;
    margin: 0 !important;
}

.row.st-main-card {
    margin-bottom: 20px;
}

.hr-separator{
    position: absolute;
    top: 41px;
    z-index: 1;
    width: 88%;
    text-align: center;
    background-color: #ffffff;
    border: 0.05px solid #3333;
    margin: 0 15px;
}
@media (min-width: 1200px) { 
    .hr-separator{
        width: 95%;
    }
 }
.cg-div{
    display: flex;
    align-items: self-start !important;
    margin-bottom: 10px;
}

.cg-div input{
    left: initial !important;
    display: initial !important;
    position: initial !important;
}
.cg-div p {
    margin: 0 0 0 5px !important ;
}


.custom-bg-white {
    background-color: #ffffff; /* White background */
}

.custom-btn-navigate{
    bottom: 0;
    margin-bottom: 12px;
}
.menubar__declaration{
    margin-top: 65px;
}
@media (min-width: 768px) { 
    .menubar__declaration{
        margin-top: 0px;
    }
 }
.custom-height{
    height: auto;
    padding:20px;
    margin-bottom: 12px;
}

.column-border {
    border-right: 1px solid #dddddd; /* Border between columns */
}

.thead-files{
    background: rgb(18 00 108); 
    color: white;
} 

.cadre-description{
    margin-top: 0px !important;
    padding: 15px;
    margin-bottom: 15px;
    background-color: white;
    border-radius: 10px;
}

.img-info{
    height: 20px;
    width: 20px;
} 

.filepond--drop-label{
   background-color: white;
}
.filepond--root .filepond--drop-label {
    min-height: 10.75em !important;
}
.cgu_accepted_label{
    font-weight: normal;
    margin-left: 2px;
}

.btn:focus {
    outline: none !important;
}

.btn-primary:focus {
    outline: none !important;
    background-color: #27ECA0;
    border-color: #27ECA0;
}

.st-label-radio:hover , .st-label-checkbox:hover{
    background-color: #27ECA0;
    color: white;
}
.filepond-label{
    font-size: 15px !important;
}

.privacy-policy-div{
    display: flex;
    align-items: self-start !important;
    margin-bottom: 10px;
}
.privacy-policy-div input {
    left: initial !important;
    display: initial !important;
    position: initial !important;
}

.privacy-policy-div .accept-privacy-policy-label {
    font-weight: normal;
    margin-left: 2px;
}