/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

.toto { background-image: url(../files/monimage.png); }

html,body,.video34,p{
    font-family: 'PT Sans Narrow', sans-serif;
    color:black;
    font-size: 22px;
}
p{
    color: #2c333d;
    line-height: 1.7;
}
h1{}
h2{   
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 45px;
    color:#c73429;
    font-weight:bold;
}
.btn-primary {
    color: #fff;
    background-color: #cb842e;
    border: 2px solid #cb842e;
    font-size: 24px;
}
.btn-primary:hover {
    color: #cb842e;
    background-color: #fff;
    border: 2px solid #cb842e;
}
.btn-primary.active, .btn-primary.active:hover {
    color: #cb842e;
    background-color: #fff;
    border: 2px solid #cb842e;
}

h1.survey-name { color: #cb842e!important; font-weight: bold;}
div.survey-description { color: #cb842e!important; }
div.survey-welcome { color: black; margin-top: 40px;}
div.question-count-text { font-size: 18px; }

#surveys-list-jumbotron { color: #cb842e; font-weight: bold; font-size: 32px;}

/*----------Toggle------------*/
input {
	display: none;
}
.toggle {
	display: block;
	position: relative;
	color: #2c333d;
    padding: 2% 2% 3.5%;
    margin: 1% 0%;
    border: 1px solid #2c333d;
    font-size: 26px;
}
.toggle:after {
	position:absolute;
	content: url(../files/chevron_blanc.svg);
	background-color:#2c333d;
	width: 40px;
	height: 40px;
    border-radius: 5px;
	padding: 5px;
	right:2%;
	transition: all 0.3s ease-in-out;
}
.toggle:hover:after {
	transform: rotate(90deg);
}
input:checked+ label::after {
    transform: rotate(90deg);
    background-color: #287088;
}
.tog {
	overflow: hidden;
	opacity: 0;
	padding: 0;
	max-height: 0;
	transition: all 1s ease-out;
	margin: 10px 10px 10px 20px;
    background-color: #f7f5f5;
}
div input[type=checkbox]:checked~ .tog {
	max-height: 500px;
	transition: all 2s ease-out;
	opacity: 1;
	margin: 10px 10px 10px 30px;
}
/*--- Fin Toggle ---*/

/*-- bandeau logo --*/
.navbar-default .navbar-nav>li>a    { color: #fff; }
.navbar-default                     { background-color:#dea45d; }
.progress-bar                       { background-color:#cb842e; }
.navbar-default .navbar-nav>li>a:hover {
    color: #fff;;
    background-color: transparent;
}
/*-- Questionnaire --*/
.space-col {
    margin-bottom: 1.3em;
}
.group-title {
    text-align: left;
    font-weight: 700;
    font-size: 32px;
    color: #cb842e;
}
.group-description {
    background-color: #fcf2eb;
    border-color: #cb842e;
}
.question-container{
    margin-bottom: 2em;
    border: 1px solid #e7e7e7;
    background-color: #fff;
    border-radius:15px;
}
.question-title-container:before{
    float: left;
    margin: 10px;
    content: "";
    width: 15px;
    height: 15px;
    background: #cb842e;
}
.question-text {
    padding-left:30px;
    }
.question-container span{font-size: 26px;}
.question-title-container{padding-bottom: 0.5em;}
.question-valid-container{padding-left:21px;}
.radio-item label::before {
    width: 30px;
    height: 30px;
    margin-left: -40px;
}
.radio-item label::after {
    width: 22px;
    height: 22px;
    margin-left: -40px;
    left: 4px;
    top: 4px;
}
.answer-container{
    padding-left: 45px;
}
input:checked+ label::after {
    background-color: #2c333d;
}
/*--- format btn radio au survol QCM ---*/
.radio-label.control-label:hover::before {background-color: #dfdfdf;;
}
.asterisk{display:none;}

/*--bloc commentaire des QCM--*/
.form-control {background-color:#f7f5f5;}

.form-control.date-control ~ .btn-primary { padding-top: 2px; padding-bottom: 2px;}
.form-control.date-control ~ .btn-primary.active { padding-top: 2px; padding-bottom: 2px;}

/*-- format btn radio tableau --*/
.radio-item .ls-label-xs-visibility {
    width: 40px;
    height: 40px;
    text-indent: 40px;
}
.radio-item .ls-label-xs-visibility:hover:before{
    background-color: #dfdfdf;
}
.dir-ltr .ls-answers td.radio-item {
    padding-top: 2%;
    padding-left: 3%;
}
.ls-answers .ls-heading th{
    background-color:#f7f5f5;
    vertical-align: middle;
}
.ls-answers tbody .answertext {
    background-color:#f7f5f5;
}
.answer-container{padding: 0 30px 30px 45px;}

.ls-question-message { color: #cb842e; }

/*-- Média Query --*/
@media only screen and (max-width: 760px){
    
    html, body, .video34, p {font-size: 17px;}
    
    .dir-ltr table.ls-answers .radio-item .ls-label-xs-visibility {
        margin-left: 20px;
        text-indent: 20px
    }
    
}

