.clear, .clearfix {
  clear: both;
}

* {
  outline: 0;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
  width: 100%;
}

.nowrap {
  white-space: nowrap;
}

.hidden {
  visibility: hidden;
}

.inside {
  position: relative;
  width: calc(100% - 30px);
  max-width: 1170px;
  margin: auto;
}


html {
  padding: 0px;
  margin: 0px;
  min-height: 100%;
  height: 100%;
  text-rendering: auto;
  text-rendering: optimizeLegibility;
  text-rendering: geometricPrecision;
  font-smooth: always;

  font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
    
  font-family: "Gabarito", serif;
  padding: 0px;
  margin: 0px;
  min-height: 100%;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
    

  font-size: 18px;
  color: #323232;
  background-color: #fff;
  overflow: hidden;
}

.pretty .state label:after, .pretty .state label:before{
  top:3px;
}

.left_shadow {
  /*
  -webkit-box-shadow: 0px 0px 65px -9px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 65px -9px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 65px -9px rgba(0,0,0,0.75);  */
}

.right_shadow {
  /*
  -webkit-box-shadow: 0px 0px 65px -9px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 65px -9px rgba(0,0,0,0.75);
box-shadow: 0px 0px 65px -9px rgba(0,0,0,0.75);*/
}


#contentheight {
  display: flex;
  align-items: stretch; /* les colonnes s'étirent sur la même hauteur */
  min-height: 100vh; /* si tu veux qu'elles fassent toute la hauteur */
}

#leftcol {
  flex: 1; /* prend une part égale avec la droite */
  box-sizing: border-box;
  padding: 0 25px;
  position: relative;
  max-width: 20%; /* optionnel, limite la largeur de la colonne gauche */
}

/* Colonne centrale */
#contentcol {
  flex: 0 1 1040px;
  max-width: 1040px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px;

  height: 100vh;
  overflow-y: auto;
}

/* Colonne droite en pourcentage */
#rightcol {
  flex: 1; /* prend tout l’espace restant */

    max-width: 20%; /* optionnel, limite la largeur de la colonne droite */
    
    background-image: url('/img/Shape.svg');
    background-position: center center;
    background-repeat: no-repeat;
}

#logobottom {
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: none;
}
#logobottom img{
    max-width: 200px;
    height: auto;
}

a{
  color: #de0446;
}

h1{
    font-size: 1.3em;
    color: #000;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 0.1em;
}

h1.logo {
  font-size: 35px;
  text-transform: uppercase;
  margin-top: 1.5em;
  position: absolute;
  letter-spacing: -0.08em;
}

h1.logo a{
  text-decoration: none;
  color: #000;
}


.personcontainer, .naissoncenok, .codhamember{
    display: none;
}

#personcontainer{
    display: block;
}

button, a.button {
line-height: 36px;
  font-size: 18px;
  color: #323232;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid;
  cursor: pointer;
  font-weight: 400;
  min-width: 160px;
  display: inline-block;
  padding: 0px 40px;
}

.selectric{
	border: 1px solid #000;
  border-radius: 0px;
  border-bottom-color: #de0446;
}

.multiple{
  display: none;
}

form .col{
  margin-top: 5px;
  margin-bottom: 5px;
}


@media (max-width:1100px){

  #contentheight{
    flex-direction: column;
    height: auto;
    min-height: 100%;
  }

  #contentcol{
    width:100%;
    max-width: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  #leftcol{
    width:100%;
    height:60px;
    overflow: hidden;
  }

  h1.logo{
    margin: 0px;
    margin-top: 10px;
    font-size: 30px;
  }

  #logobottom{
    width:180px !important;
    right: -50px;
    bottom:10px;
  }

  #rightcol{
    display: none;
  }
}

@media (max-width:760px){
  .col{
    width: calc(((100% - (12 * 30px))/12)*12 + (11 * 30px));
  }
}