
* {
    box-sizing: border-box;
  }

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color:#777;
  font-size: 17px;
  line-height: 21px;
}

hr.dotted {
	border-bottom: 3px dotted #F34350;
  border-top:0px solid #FFF
}

hr.dashed {
  border-top: 1px dashed #bbb;
  border-bottom: 0px solid #FFF;
}


/* Solid border */
hr.solid {
  border-top: 1px solid #bbb;
  border-bottom: 0px solid #FFF;
}



@font-face {
  font-family: 'Urbani';
  font-style: normal;
  font-weight: 200;
  src: local("Urbani Light"), local("Urbani-Light"), url("../fonts/Urbani-Light.woff2") format("woff2"), url("../fonts/Urbani-Light.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: 'Urbani';
  font-style: normal;
  font-weight: 300;
  src: local("Urbani Book"), local("Urbani-Book"), url("../fonts/Urbani-Book.woff2") format("woff2"), url("../fonts/Urbani-Book.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: 'Urbani';
  font-style: normal;
  font-weight: 400;
  src: local("Urbani"), local("Urbani-Regular"), url("../fonts/Urbani-Regular.woff2") format("woff2"), url("../fonts/Urbani-Regular.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: 'Urbani';
  font-style: normal;
  font-weight: 700;
  src: local("Urbani Bold"), local("Urbani-Bold"), url("../fonts/Urbani-Bold.woff2") format("woff2"), url("../fonts/Urbani-Bold.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: 'Urbani';
  font-style: normal;
  font-weight: 800;
  src: local("Urbani ExtraBold"), local("Urbani-ExtraBold"), url("../fonts/Urbani-ExtraBold.woff2") format("woff2"), url("../fonts/Urbani-ExtraBold.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: 'Urbani';
  font-style: normal;
  font-weight: 900;
  src: local("Urbani Black"), local("Urbani-Black"), url("../fonts/Urbani-Black.woff2") format("woff2"), url("../fonts/Urbani-Black.woff") format("woff");
  font-display: swap; }

.heading, h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em 0;
  font-family: Urbani, sans-serif;
  font-weight: 900;
  line-height: 1;
  color: #181c4e;
}

h1 {
  font-size: 36px;
}

@media only screen and (max-width: 450px) {
  /*
  h1 {
    font-size: 26px;
  }
  */
}

h2 {
 font-size: 32px;
}
h3 {
  font-size: 28px;
}
h4 {
 font-size: 25px;
}
h5 {
  font-size: 22px;
}
h6 {
  font-size: 18px;
}


.contain { 
  margin-top:25px;
  margin-bottom:35px;
  width:85%;
  box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
  padding:20px;
  border-radius:10px;
  }

  /*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input,
select,
search,
textarea {
    color: #333;
    font-size: 17px;
    line-height: 1.5;
	  font-family: 'Roboto', sans-serif;
}
button, 
a.button, 
input[type="button"],
input[type="reset"],
input[type="submit"] {
	  border-radius: 0px;
    background-color: #F34350;
    color: #fff;
    font-size: 17px;
    line-height: 1;
    padding: 13px 35px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    border:none; 
	cursor: pointer;
}
@media screen and (max-width: 922px) {
button,
a.button, 
input[type="button"],
input[type="reset"],
input[type="submit"] {
	 padding: 13px 20px;
	 font-size: 15px;
} 
}

@media screen and (max-width: 397px) {
button,
a.button, 
input[type="button"],
input[type="reset"],
input[type="submit"] {
	 padding: 13px 15px;
	 font-size: 15px;
} 
}
button,
a.button,
input[type="button"],
input[type="reset"],
input[type="submit"],
button:hover,
a.button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover{
    -webkit-transition:0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

button:hover,
a.button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: #2e2e2e ;
    color: #fff;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    border-color: #F34350;
    /*box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);*/
    outline: none;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #313131;
  border: 1px solid #999;
	border-radius: 0px;
	background-color:#F1F1F1; 
	width:100%;
}


input[type="text"],
input[type="email"],
input[type="date"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="password"],
input[type="search"]{
    padding: 9px 0 9px 9px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="select"]:focus,
textarea:focus {
  color: #111;
  outline:none;
	border: 1px solid #04AA6D;
	background-color:#FFF;
}

select {
  width: 80%;
  padding: 6px 0 6px 9px;
}
input[type="select"],
select {
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;       /* Remove default arrow */
 background-image: url(../images/down-arrow.png);  /* Add custom arrow */
 background-repeat:no-repeat;  
 background-position:right center;
 color: #666;
 border: 1px solid #999;
 border-radius: 3px;
 width:80%;
 height:45px;
 background-color:#F1F1F1; 
}

select::-ms-expand {
  display: none; /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}

input[type="select"],
select:focus {
color: #111;
  outline:none;
border: 1px solid #04AA6D;
background-color:#FFF;
background-image: url(../images/up-arrow.png);  /* Add custom arrow */
  background-repeat:no-repeat;  
  background-position:right center;

}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 0px;
}

[class*="colspace-"] {
  float: left;
  padding: 20px;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

.colspace-1 {width: 8.33%;}
.colspace-2 {width: 16.66%;}
.colspace-3 {width: 25%;}
.colspace-4 {width: 33.33%;}
.colspace-5 {width: 41.66%;}
.colspace-6 {width: 50%;}
.colspace-7 {width: 58.33%;}
.colspace-8 {width: 66.66%;}
.colspace-9 {width: 75%;}
.colspace-10 {width: 83.33%;}
.colspace-11 {width: 91.66%;}
.colspace-12 {width: 100%;}

@media only screen and (max-width:767px) {
.col-1 {width: 50%;}
.col-2 {width: 50%;}
.col-3 {width: 100%;}
.col-4 {width: 100%;}
.col-5 {width: 50%;}
.col-6 {width: 100%;}
.col-7 {width: 100%;}
.col-8 {width: 100%;}
.col-9 {width: 100%;}
.col-10 {width: 100%;}
.col-11 {width: 100%;}
.col-12 {width: 100%;}

.colspace-1 {width: 50%;}
.colspace-2 {width: 50%;}
.colspace-3 {width: 50%;}
.colspace-4 {width: 100%;}
.colspace-5 {width: 100%;}
.colspace-6 {width: 100%;}
.colspace-7 {width: 100%;}
.colspace-8 {width: 100%;}
.colspace-9 {width: 100%;}
.colspace-10 {width: 100%;}
.colspace-11 {width: 100%;}
.colspace-12 {width: 100%;}
  
}

@media screen and (max-width: 478px) {
.col-1 {width: 100%;}
.col-2 {width: 100%;}
.col-3 {width: 100%;}
.col-4 {width: 100%;}
.col-5 {width: 100%;}
.col-6 {width: 100%;}
.col-7 {width: 100%;}
.col-8 {width: 100%;}
.col-9 {width: 100%;}
.col-10 {width: 100%;}
.col-11 {width: 100%;}
.col-12 {width: 100%;}

.colspace-1 {width: 100%;}
.colspace-2 {width: 100%;}
.colspace-3 {width: 100%;}
.colspace-4 {width: 100%;}
.colspace-5 {width: 100%;}
.colspace-6 {width: 100%;}
.colspace-7 {width: 100%;}
.colspace-8 {width: 100%;}
.colspace-9 {width: 100%;}
.colspace-10 {width: 100%;}
.colspace-11 {width: 100%;}
.colspace-12 {width: 100%;}
  
}

.pannier_icon {
  fill: #fff;
  height: 16px;
  width: 16px; 
  line-height: 28px;
}

a.panier {
  background-color: #F34350;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
}

a.panier:hover{
  background-color: #ac0b17; 
  color: #fff !important;
}

ul {
  list-style-type: none; /* Remove bullets */
  margin-left: 0px;
  padding-left: 15px;
}