@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro);
html,
body {
    height: 100%;
    margin: 0;
    font-family: Open Sans, Arial, sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
}

.alert{
    display: inline-block;
    padding: 20px;
    background: #c0392b;
    color: white;
    margin:0;
}

header {
    background: #21aaf2;
    height: auto;
    z-index: 4;
}

header .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 50px;
    z-index: 2;
}
header .login{
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    color: white;
    font-size: 13px;
    background-color: #1a97d9;
}
@keyframes entreeCamp {
    from {
      transform: scale(0.3);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
}
.entreeCamp{
    animation: entreeCamp 0.5s ease-out forwards;
    -webkit-animation: entreeCamp 0.5s ease-out forwards;
}

.big_container {
    display: table;
    width: 100%;
    text-align: center;
    height: calc(100vh - 94px);
    background-image: url(../img/diapo-2-3-24.jpg);
    background-position: center;
    background-size: cover;
}

#bkgd_img {
    position: absolute;
    height: calc(100vh - 94px);
    width: 100%;
    left: 0;
    right: 0;
}

.big_container .container {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.big_container .biglogo {
    text-align: center;
    display: inline-block;
    width: 30%;
}

.big_container #discover {
    color: #fff;
    font-size: 26px
}

#arrow {
    position: absolute;
    cursor: pointer;
    left: 47.5%;
    bottom: 16px;
    width: 5%;
}

.corps_camps {
    padding: 30px;
    text-align: center;
    background-color: #eee;
    margin-bottom: -20px;
    min-height: 100%;
}

.corps_camps a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
h7 {
    font-family: Source Sans Pro, Open Sans, Arial, sans-serif;
}

.corps_camps #bouton_categ {
    text-align: center;
    margin-bottom: 50px;
}

.corps_camps #bouton_categ #btn_cat{
    width: 360px;
    display: inline-block;
    cursor: pointer;
}


.corps_camps .camp {
    position: relative;
    display: inline-block;
    margin: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    background-color: white;
    width: 360px;
    text-align: left;
    font-family: 'SourceSansPro-Regular', Arial, sans-serif;
}

.camp h1 {
    color: #21aaf2;
    padding: 0px 120px 0px 25px;
    font-size: 20px;
    margin-bottom: 20px;
}

.camp h2 {
    color: #777;
    padding-left: 25px;
    margin-top: -15px;
    margin-bottom: 17px;
    font-size: 15px;
}

.camp p {
    margin: 9px 40px 9px 40px;
    font-size: 15px;
    width: auto;
    line-height: 0.9;
}

.camp .lien {
    position: absolute;
    right: -20px;
    bottom: 10px;
}

.camp .lien .go {
    border-radius: 50%;
    color: #fff;
    text-align: center;
    height: 55px;
    line-height: 55px;
    width: 55px;
    background: #ff6417;
    display: block;
    transition-duration: 200ms;
}

.camp .lien .go:hover {
    background: #d64f0b;
    transition-duration: 200ms;
}

.corps_camps .camp .img {
    width: 360px;
    height: 220px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.nav {
    padding-top: 50px
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #21aaf2;
    text-align: center;
    z-index: 4;
}

.nav ul:before,
.nav ul:after {
    content: "";
    display: table;
}

.nav ul:after {
    clear: both;
}

.nav ul > li {
    display: inline-block;
    position: relative;
    text-align: left;
}

.nav a {
    display: block;
    padding: 12px 20px;
    line-height: 1em;
    color: #fff;
    border-bottom: 4px solid #21aaf2;
}

.nav .active_menu {
    border-bottom: 4px solid #fff;
}

.nav li ul a {
    border: none;
    color: #21aaf2;
    padding-left: 25px;
}

.nav li ul a:hover {
    background: #ddd;
    -webkit-transition: 150ms ease;
    -moz-transition: 150ms ease;
    -o-transition: 150ms ease;
    transition: 150ms ease;
}

.nav li ul {
    position: absolute;
    left: 0;
    padding-top: 20px;
    z-index: 4;
    visibility: hidden;
    opacity: 0;
    background: #eee;
    border-bottom: 2px solid #21aaf2;
    filter: alpha(opacity=0);
    -webkit-transition: 50ms ease;
    -moz-transition: 50ms ease;
    -o-transition: 50ms ease;
    transition: 50ms ease;
}

.nav ul > li:hover ul {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

.nav li ul li {
    overflow: hidden;
    max-height: 0;
    width: 200px;
    margin: -3px 0px;
    -webkit-transition: max-height 300ms ease;
    -moz-transition: max-height 300ms ease;
    -o-transition: max-height 300ms ease;
    transition: max-height 300ms ease;
}

.nav li ul li:first-child {
    margin-top: -15px
}

.nav li .triangle {
    position: absolute;
    bottom: -1px;
    left: 25px;
    width: 14px;
    display: none;
    -webkit-transition: 500ms ease;
    -moz-transition: 500ms ease;
    -o-transition: 500ms ease;
    transition: 500ms ease;
}

.nav ul > li:hover .triangle {
    display: block;
    -webkit-transition: 500ms ease;
    -moz-transition: 500ms ease;
    -o-transition: 500ms ease;
    transition: 500ms ease;
}

.nav ul > li:hover ul li {
    max-height: 150px;
}

.corps_camps #bouton_categ{
    position: relative;
}
.corps_camps #bouton_categ a:first-child {
    padding: 12px 20px 12px 25px;
    border-right: none;
}

.corps_camps #bouton_categ a:last-child {
    padding: 12px 25px 12px 20px;
    /*border-left: none;*/
}

.corps_camps #bouton_categ a {
    padding: 12px 20px;
    margin-bottom: 15px;
    background: #fff;
    color: #21aaf2;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #21aaf2
}

.corps_camps #bouton_categ a:hover {
    background: #21aaf2;
    transition-duration: 0.2s;
    color: #fff;
}
#bouton_categ .btn-add{
    position:absolute;
    right: 0;
    top: 0;
}

#anciens_img_container{
    margin: auto;
    max-width: 1240px;
    min-height: 569px;
}
.corps_page_camps #anciens_camp_infos {
    margin: -186px 0px 50px 0px;
    text-align: right;
}

.corps_page_camps  #anciens_camp_infos .info_box {
    margin:0
}

.corps_page_camps .anciens_img img {
    width: 300px;
    vertical-align: top;
    margin: 5px
}
.corps_page_camps .anciens_img{
    outline: none;
}
.corps_page_camps .anciens_img_selected{
    border: 2px solid back;
}

.corps_page_camps .info_box {
    position: relative;
    display: inline-block;
    text-align: left;
    margin: auto;
    background: #fff;
    padding: 5px 40px 10px 40px;
    margin: 15px 20px;
    vertical-align: top;
}

.corps_page_camps .info_box i {
    position: relative;
    top: 7px;
    left: -5px;
}
.corps_page_camps .info_box p {
  font-size: 18px;
}
.corps_page_camps #camp_infos {
    margin: 30px 0;
}
#camp_infos input{
  font-size: inherit;
  width: auto;
  outline: none;
  border: none;
}
#camp_infos .petit{
  width: 50px;
}
#camp_infos .grand{
  width: 280px;
}


.corps_page_camps {
    padding: 0px;
    text-align: center;
    background-color: #e9e9e9;
    margin-bottom: -20px;
}

.camp_titre {
    position: absolute;
    top: 120px;
    width: 500px;
    text-align: right;
    font-size: 28px;
    z-index: 1;
    background: #fff;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, calc(100% - 22px) 0);
}

.page_camp_cell {
  margin-bottom: 60px;
}

.page_camp_cell #camp_img {
    width: 65vw;
    background-size: cover;
    height: calc(0.6 * 65vw);
    background-position: center;
    -webkit-clip-path: polygon(0 0, 5vw 100%, 100% 100%, 100% 0);
}

.page_camp_cell #camp_img .card{
    display: inline-block;
    margin-top: calc(0.3 * 65vw - 50px);
    background-color: white;
    padding: 50px;
}

.page_camp_cell #camp_title_container {
    padding: 20px 1vw 0px 3vw;
    text-align: left;
}

.page_camp_cell #camp_desc {
    padding: 0px 1vw 40px 3vw;
    text-align: left;
    font-size: 18px;
    width: 31vw;
}
.page_camp_cell #camp_desc textarea{
    text-align: left;
    font-size: 18px;
    width: 31vw;
    height:  calc(0.2 * 65vw);
    color: black;
    background-color: inherit;
}

.page_camp_cell #camp_title {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 20px 50px 20px 50px;
    width: 115%;
    font-size: 38px;
    font-weight: 400;
    text-align: right;
    margin-left: -13vw;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, calc(100% - 1vw) 0);
}

table, th, td {
   border-collapse: collapse;
}

#camp_inscription {
    font-size: 18px;
    margin: 60px 20px 100px 20px;
}

#camp_inscription input[type='submit'], #camp_inscription .btn_link{
  background-color: #fff;
  color: #21aaf2;
  font-weight: 600;
  font-size: 20px;
  padding: 18px 50px;
  border: none;
  outline: none;
}


footer {
    position: relative;
    height: 200px;
    background-color: #21aaf2;
    color: white;
    text-align: center;
    font-size: 15px;
}

footer p {
    padding-top: 50px;
}

footer a {
    color: white;
    margin: 4px
}

#more_button {
    display: block;
    padding: 15px;
    background: #21aaf2;
    width: 120px;
    font-weight: 600;
    color: #fff;
    margin: 30px auto;
    border-radius: 5px;
    border: 2px solid #21aaf2;
}

#more_button:hover {
    color: #21aaf2;
    background-color: #fff;
    transition-duration: 0.2s
}


#localites{
    text-align: center;
}
#localites .left{
    vertical-align: top;
    display: inline-block;
    width: 600px;
    padding: 30px;
}
#localites .left .map{
    width: 500px;
}
#localites .btns .btn{
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    margin: 10px;
    outline: none;
}
#localites .btns .warn{
    background-color: #c0392b;
    color: white;
    padding: 10px;
    border: 0;
    font-size: 15px;
}
#localites .right{
    vertical-align: top;
    display: inline-block;
    width: 600px;
    padding: 30px;
}
#localites h3{
    color: #21aaf2;
    text-transform: uppercase;
    font-size: 50px;
}
#localites .card{
    display: inline-block;
    background-color: rgb(217,217,217);
    padding: 20px 40px;
    margin: 10px;
}
#localites svg{
    margin-bottom: 20px;
}
#localites .ajout{
    text-align: left;
    padding-top: 30px;
    width: 380px;
    margin: auto;
}
#localites .forms{
  background-color: rgb(217,217,217);
  padding: 20px;
}
#localites .ajout input{
    display: block;
    font-size: 15px;
    width: 300px;
    margin-left: 20px;
    outline: none;
    padding: 3px;
}

#temoignages{
    text-align: center;
    background-color: #eee;
    margin-bottom: -20px;
    min-height: 100%;
}
#temoignages .header{
    background-position: center;
    background-size: cover;
    height: 200px;
}
#temoignages .titre{
    text-align: left;
    padding-top: 20px;
}
#temoignages .content input[type='file']{
    margin-top: 20px;
}
#temoignages .content input[type='text']{
    width: 200px;
    border: none;
    border-bottom: 1px solid grey;
    outline: none;
    font-size: 15px;
    padding: 3px;
    margin-top: 20px;
    background-color: inherit;
}
#temoignages .content input[type='text']:focus{
    border-color:  #21aaf2;
}
#temoignages h3, #temoignages .header input[type='text']{
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 20px 50px 20px 50px;
    font-size: 38px;
    font-weight: 400;
    text-align: right;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, calc(100% - 1vw) 0);
}
#temoignages .card{
    display: inline-block;
    width: 350px;
    margin: 20px;
    background-color: white;
}
#temoignages .card .img{
    background-position: center;
    background-size: cover;
    height: 200px;
}
#temoignages .card .txt{
    padding: 10px;
    color: #21aaf2;
    border-top: 3px solid #21aaf2;
}
#temoignages .content{
    text-align: left;
    padding-bottom: 40px;
    width: 50%;
    margin: auto;
}
#temoignages p{
    text-indent: 50px;
}

#about .banniere{
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 300px;
    text-align: center;
    border-top: 3px solid #21aaf2;
    border-bottom: 3px solid #21aaf2;
}
#about .banniere h3{
    margin: 0;
    color: white;
    font-size: 70px;
    padding-top: 100px;
}
#about .txt{
    width: 80%;
    margin: auto;
    padding-bottom: 30px;
}
#about .txt p{
    text-indent: 50px;
}
#about .txt h2{
    color: #21aaf2;
    font-size: 30px;
}

#mentions .content{
    width: 80%;
    margin: auto;
    padding-bottom: 40px;
    padding-top: 40px;
}
#mentions .content p{
    margin-left: 30px;
}

#auth{
    background-color: #eee;
    min-height: 100%;
}
.space{
    display: block;
    padding: 20px;
}
#auth .bande{
    position: fixed;
    top: 0;right: 0;left: 0;
    height: 100px;
    background-color: #21aaf2;
    z-index: 1;
}
#auth form{
    position: relative;
    width: 500px;
    margin: auto;
    background-color: white;
    border-bottom: 3px solid #21aaf2;
    padding-bottom: 30px;
    z-index: 5;
}
#auth form img{
    display: block;
    width: 150px;
    margin: auto;
    padding: 20px;
}
#auth input[type='password'],
#auth input[type='email'],
#auth input[type='text']{
    display: block;
    outline: none;
    width: 300px;
    margin: auto;
    font-size: 17px;
    border: 0;
    border-bottom: 2px solid #d9d9d9;
    margin-bottom: 20px;
    padding: 10px;
}
#auth input[type='password']:focus,
#auth input[type='email']:focus,
#auth input[type='text']:focus{
    border-color: #21aaf2;
}
#auth .checkbox{
    margin-left: 90px;
}
button{
    display: block;
    margin: auto;
    margin-top: 20px;
    color: white;
    background: #21aaf2;
    padding: 10px;
    border: 0;
    font-size: 15px;
}
#auth .info{
    display: block;
    width: 300px;
    margin: auto;
    text-decoration: underline;
    color: #757575;
    margin-top: 23px;
}
#auth .bande img{
    margin: 10px;
}
#auth .help-block{
    width: 300px;
    margin: auto;
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
    color: #757575;
}

/*** Dashboard ***/
#sidebar{
    position: fixed;
    top: 90px;
    left: 0;
    bottom: 0;
    background-color: #1a97d9;
    display: inline-block;
    color: white;
    z-index: 1;
    /*height: calc(100% - 90px);*/
}
#sidebar .sous_menu{
    padding-left: 60px;
}
#sidebar ul{
    margin: 0;
    padding: 0;
}
#sidebar li{
    margin: 0;
    padding: 10px;
    padding-right: 50px;
    padding-left: 30px;
    transition-duration: 0.3s;
    border-left: 3px solid transparent;
    cursor: pointer;
}
#sidebar .clickable:hover{
    border-left: 3px solid white;
    background-color: #21aaf2;
}
#sidebar .active{
    border-left: 3px solid white;
    background-color: #21aaf2;
}

#dashboard{
    margin-left: 214px;
    margin-top: 94px;
}
#dashboard .titre{
    margin-left: 20px;
    margin-bottom: 20px;
    padding-top: 5px;
}
#dashboard .titre h2{
    text-transform: uppercase;
    margin-bottom: 0;
}
#dashboard .titre p{
    margin: 0;
    color: #757575;
}
#dashboard .card{
    background-color: white;
    width: 980px;
    margin: auto;
    text-align: center;
}
#dashboard input[type='password'],
#dashboard input[type='email'],
#dashboard input[type='date'],
#dashboard input[type='text']{
    outline: none;
    margin: auto;
    font-size: 17px;
    border: 0;
    margin-left: 30px;
    border-bottom: 2px solid transparent;
    padding: 10px;
    width: 95%;
}
#dashboard input[type='password']:focus,
#dashboard input[type='email']:focus,
#dashboard input[type='text']:focus{
    border-color: #21aaf2;
}
#dashboard input[type='radio']{
    margin-left: 41px;
}
#dashboard .infos{
    padding-top: 30px;
}
#dashboard .col{
    display: inline-block;
    vertical-align: top;
    text-align: left;
}
#dashboard .col-g{
    width: 480px;
}
#dashboard .col-p{
    width: 40%;
}
#dashboard label{
    vertical-align: top;
    border-bottom: 2px solid transparent;
}
#dashboard tr{
    height:40px;
    line-height:40px;
}
#dashboard .help-block{
    margin-left: 40px;
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
    color: #757575;
}
#dashboard .center{
    text-align: center;
}
#dashboard .card-san{
    min-width: 980px;
    padding: 20px 0px;
}
#dashboard .card-san form{
    text-align: center;
}
#dashboard .card-san table td input[type='text']{
    margin-left: 0;
    width: 90%;
}
#dashboard .card-san table td input[type='radio']{
    margin-left: 0;
    width: auto;
}
#dashboard .card-san .entier {
     border-collapse:collapse;
     width:90%;
     margin: auto;
}
#dashboard .card-san .entier .btn{
    color: #1372a4;
}
#dashboard .demi{
    width: 47%;
}
#dashboard .petit{
    width: 10%;
}
#dashboard .inline{
    display: inline-block;
    vertical-align: top;
}
#dashboard .card-san td {
     border:1px solid black;
}
#dashboard  h3{
    margin-left: 20px;
    text-transform: uppercase;
    color: #757575;
}
#dashboard .card-san label{
    text-align: left;
    display: block;
    padding: 20px;
    width: 90%;
    margin: auto;
}
#dashboard .card-san textarea{
    width: 90%;
    padding: 5px;
    display: block;
    margin: auto;
    font-family: Source Sans Pro, Open Sans, Arial, sans-serif;
    font-size: 15px;
}
#enfants{
    padding: 20px;
    text-align: center;
    transition-duration: 0.3s;
}
#enfants .card{
    background: none;
    display: inline-block;
    width: auto;
    text-align: center;
    margin: 20px;
    vertical-align: top;
}
#enfants .card .img{
    position: relative;
    display: inline-block;
    height: 162px;
    width: 162px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin-bottom: -40px;
    z-index: 2;
}
#enfants .card .nom{
    position: relative;
    display: block;
    background-color: white;
    padding: 30px;
    padding-top: 50px;
    z-index: 1;
    text-transform: uppercase;
}
#enfants .card .good{
    border-bottom: 3px solid #21aaf2;
}
#enfants .card .bad{
    border-bottom: 3px solid #c0392b;
}
.btns_enfant .btn{
    cursor: pointer;
    padding: 0px 10px;
    background-color: #21aaf2;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    font-size: 12px;
    outline: none;
    border: 0;
}
.btns_enfant{
    margin-top: 20px;
    text-align: center;
}
.btns_enfant .btn{
    padding: 10px;
    font-size: 15px;
}
.btns_enfant .warn{
    background: #c0392b;
}
#inscription_camp .card{
    cursor: pointer;
}
#inscription_camp h3{
    text-align: center;
    margin: 0;
    padding-top: 30px;
}
#inscription_camp .btns{
  text-align: center;
}
#inscription_camp .btn{
    cursor: pointer;
    padding: 10px;
    background-color: #21aaf2;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    font-size: 16px;
    outline: none;
    border: 0;
}
#inscription_camp .form{
    width: 800px;
    margin: auto;
    margin-top: 30px;
}
#inscription_camp .form input[type='text'], #inscription_camp .form input[type='password'], #inscription_camp .form input[type='email']{
    margin-bottom: 20px;
    margin-top: 10px;
}

#dashboard #camp{
    padding-bottom: 50px;
}
#dashboard #camp h2{
    text-align: center;
    text-transform: uppercase;
    color: #757575;
    padding-top: 20px;
}
#dashboard #camp .procedure{
    width: 1000px;
    margin: auto;
    background: white;
    padding: 10px;
}
#dashboard #camp .procedure label{
    display: block;
    padding-top: 20px;
    padding-left: 20px;
}
#dashboard #camp .procedure .grand{
    width: 100%;
}
#dashboard #camp .procedure .grand td{
    text-align: center;
    padding-bottom: 20px;
}
#dashboard #camp .btn{
    cursor: pointer;
    padding: 0px 10px;
    background-color: #21aaf2;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    font-size: 12px;
    outline: none;
    border: 0;
}
#dashboard #camp .btns{
    margin-top: 20px;
    text-align: center;
}
#dashboard #camp .btns .btn{
    padding: 10px;
    font-size: 15px;
}
#dashboard #camp .warn{
    background: #e74c3c;
}
.fancybox-slide .btn{
    cursor: pointer;
    padding: 0px 10px;
    background-color: #21aaf2;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    font-size: 12px;
    outline: none;
    border: 0;
    margin-right: 20px;
}
.fancybox-slide .btns{
    margin-top: 20px;
    text-align: center;
}
.fancybox-slide  .btns .btn{
    padding: 10px;
    font-size: 15px;
}
 .fancybox-slide .warn{
    background: #e74c3c;
}

/* Administratio */
#cards .card{
    background-color: white;
    width: 1000px;
    margin: auto;
    padding: 20px;
}
#cards .card table{
    width: 100%;
    text-align: left;
    border-collapse: separate;
    border-spacing: 10px;
}
#cards .card table input[type='text']{
    width: 200px;
    border: none;
    border-bottom: 1px solid grey;
    outline: none;
    font-size: 15px;
    padding: 3px;
}
#cards .card table input[type='text']:focus{
    border-color: #21aaf2;
}
#cards .card table .litle{
    width: 100px!Important;
}

#add{
    position: fixed;
    bottom: 30px;
    right: 60px;
    height: 60px;
    width: 60px;
    background-color: #21aaf2;
    color: white;
    font-size: 38px;
    border-radius: 50%;
    transition-duration: 0.2s;
    border: 2px solid #21aaf2;
    text-align: center;
}
#add i{
    margin-top: 15px;
    font-size: 30px;
}
#add:hover{
    background-color: white;
    color: #21aaf2;
}
#del{
    position: fixed;
    bottom: 30px;
    right: 60px;
    height: 60px;
    width: 60px;
    background-color: #c0392b;
    color: white;
    font-size: 38px;
    border-radius: 50%;
    transition-duration: 0.2s;
    border: 2px solid #c0392b;
}
#del i{
    margin-top: 15px;
    font-size: 30px;
}
#del:hover{
    background-color: white;
    color: #c0392b;
}

.pagination{
    text-align: center;
}
.pagination li{
    list-style: none;
    display: inline-block;
    padding: 10px;
    background: white;
    margin: 0;
}
.pagination .active{
    color: #21aaf2;
}

.rechercher{
    width: 982px;
    margin: auto;
    margin-bottom: 30px;
}
.rechercher label{
    display: block;
    text-transform: uppercase;
    padding-bottom: 20px
}
.rechercher input[type='text']{
    display: inline-block !important;
    margin-left: 0 !important;
    width: 87% !important;
}
.rechercher input[type='text']:focus{
    border-color: white !important;
}
.rechercher button{
    outline: none;
    display: inline-block !important;
    margin: 0 !important;
}


.camp_admin_inscription .parent{
    text-align: left;
    width: 800px;
    margin: auto;
}
.camp_admin_inscription .parent input[type='text']{
    width: 50px !important;
    border-color: grey !important;
    padding: 2px !important;
}
.camp_admin_inscription .parent .btn{
    display: inline-block;
    background-color: #21aaf2;
    color: white;
    padding: 10px 10px;
    border: none;
    font-size: 14px;
    outline: none;
    vertical-align: middle;
    cursor: pointer;
}
.camp_admin_inscription .parent .warn{
    background: #c0392b;
    color: white;
}
.camp_admin_inscription .parent .right{
    text-align: right;
}
.camp_admin_inscription .delete_paiement{
    cursor: pointer;
}

#enfant_profil .header{
    background: url('http://www.bluthemes.com/assets/img/blog/12/balloon.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    height: 200px;
}
#enfant_profil .header .img{
    display: inline-block;
    width: 200px;
    height: 200px;
    background-position: center;
    background-size: cover;
    margin-top: 60px;
    margin-left: 40px;
}
#enfant_profil .header h2{
  display: inline-block;
  vertical-align: top;
  margin-top: 100px;
  margin-left: 40px;
  font-size: 60px;
  color: rgb(114, 106, 97);
}
#enfant_profil menu{
    margin-top: 20px;
    text-align: center;
}
#enfant_profil ul{
    display: inline-block;
    border-radius: 9px;
    padding: 0;
    overflow: hidden;
}
#enfant_profil menu ul li{
    list-style-type: none;
    display: inline-block;
    padding: 10px 40px;
    text-transform: uppercase;
    font-size: 15px;
    background-color: white;
    color: #23b1c5;
    cursor: pointer;
}
#enfant_profil menu ul .active{
    background-color: #23b1c5;
    color: white;
}
