@font-face {
  font-family: 'RobotoBold';
  src: url(../fonts/Roboto-Bold.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url(../fonts/Roboto-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'RobotoCondensedBold';
  src: url(../fonts/RobotoCondensed-Bold.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'RobotoCondensed';
  src: url(../fonts/RobotoCondensed-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'AmericanCR';
  src: url(../fonts/american-condensed-regular.otf);
  font-display: swap;
}
.translate-left {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transition: -webkit-transform 400ms ease-out 100ms;
  -moz-transition: -moz-transform 400ms ease-out 100ms;
  transition: transform 400ms ease-out 100ms;
}
.read-left {
  z-index: 999;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform 400ms ease-out 100ms;
  -moz-transition: -moz-transform 400ms ease-out 100ms;
  transition: transform 400ms ease-out 100ms;
}
.read-right {
  z-index: 999;
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transition: -webkit-transform 400ms ease-out 100ms;
  -moz-transition: -moz-transform 400ms ease-out 100ms;
  transition: transform 400ms ease-out 100ms;
}
.translated {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transform: translate(0, 0);
}
.green-btn,
.white-btn {
  cursor: pointer;
  text-transform: none;
  padding: 5px 10px;
  background-color: #5CB31C;
  color: white;
  border-radius: 80px;
  margin: 0px 5px;
}
.green-btn:hover,
.green-btn:focus {
  color: white;
}
.green-btn a {
  color: white;
}
.green-btn a:hover,
.green-btn a:focus,
.green-btn a:visited,
.green-btn a:active {
  color: white;
}
.white-btn {
  color: #5CB31C;
  border: 3px solid #5CB31C;
  background-color: white;
  font-weight: bold;
  padding: 2px 7px;
}
.white-btn:hover,
.white-btn:focus {
  color: #5CB31C;
}
.white-btn a:hover,
.white-btn a:focus,
.white-btn a:visited,
.white-btn a:active {
  color: #5CB31C;
}
@media (max-width: 1200px) {
  .special-lg {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .special-xs {
    display: flex !important;
  }
}
.shadow {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.submit-button {
  padding: 10px 20px;
  background-color: #5CB31C;
  color: white;
  border: none;
  font-size: 16px;
  text-transform: none;
  font-family: 'RobotoBold';
  display: inline-block;
  border-radius: 3px;
  box-shadow: none;
  cursor: pointer;
  -webkit-transition: box-shadow 300ms ease;
  transition: box-shadow 300ms ease;
}
.submit-button:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.material-tile {
  background-color: white;
  width: 500px;
  margin: auto;
  border-radius: 3px;
  padding-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.material-tile .title-section {
  padding: 16px;
  margin-bottom: 20px;
  background-color: #5CB31C;
}
.material-tile .title-section h1,
.material-tile .title-section p {
  text-align: center;
  padding: 0;
  margin: 0;
  color: white;
  font-family: RobotoCondensed;
  background: transparent;
}
.material-tile .title-section h1 {
  font-size: 35px;
  padding-bottom: 8px;
}
@media (max-width: 767px) {
  .material-tile {
    width: 100%;
  }
}
.material-input {
  margin-bottom: 20px;
  position: relative;
}
.material-input > label {
  pointer-events: none;
  color: #9E9E9E;
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: lighter;
  transform: translateY(16px);
  transition: 200ms all;
  -moz-transition: 200ms all;
  -webkit-transition: 200ms all;
}
.material-input > input, .material-input > select {
  display: block;
  padding-top: 16px;
  padding-bottom: 8px;
  max-width: 300px;
  border: none;
  border-bottom: 1px solid #9E9E9E;
  color: #9E9E9E;
  width: 300px;
}
@media (max-width: 767px) {
  .material-input > input, .material-input > select {
    max-width: 200px;
  }
}
.material-input > input[type="password"] {
  background: url('../img/pass.png') no-repeat;
  background-size: 15px;
  background-position: 98% 25px;
}
.material-input > input:focus, .material-input > select:focus {
  outline: none;
}
.material-input > input:focus + label,
.material-input > input[class="active"] + label,
.material-input > select + label {
  top: -12px;
  font-size: 12px;
  transform: translateY(6px);
}
.material-input > input:focus + label,
.material-input > select:focus + label {
  color: #5CB31C;
}
.material-input > input:focus,
.material-input > select:focus {
  border-bottom: solid 1.5px #5CB31C;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: RobotoCondensed;
}
@media (max-width: 768px) {
  body,
  html {
    overflow: scroll;
  }
}
a {
  color: inherit;
}
a,
a:hover,
a:visited,
a:focus {
  text-decoration: none;
  cursor: pointer;
}
#main {
  padding: 0;
}
fbshare {
  cursor: pointer;
  text-transform: uppercase;
  padding: 5px 10px;
  background-color: #5CB31C;
  color: white;
  border-radius: 80px;
  margin: 0px 5px;
  display: block;
  background-color: #3B5998;
  position: absolute;
  left: 10px;
  z-index: 2;
  bottom: 10px;
}
fbshare:hover,
fbshare:focus {
  color: white;
}
fbshare a {
  color: white;
}
fbshare a:hover,
fbshare a:focus,
fbshare a:visited,
fbshare a:active {
  color: white;
}
header {
  border-bottom: 1px solid #e5e5e5;
  background-color: white;
  position: fixed;
  height: 88px;
  width: 100%;
  left: 0;
  top: 0;
  padding: 0 10px;
  z-index: 2;
}
@media (max-height: 650px){
  header {
    height: 55px;
  }
}
header #logo {
  height: 100%;
  float: left;
  display: flex;
  align-items: center;
  display: inline-block;
  margin-left: 10px;
}
header #logo span {
  display: flex;
  align-items: center;
}
header #logo span a {
  display: block;
}
header #logo span a img {
  display: block;
  width: 150px;
}
header span {
  display: flex;
  align-items: center;
  float: right;
  height: 100%;
  font-size: 15px;
}
@media (max-width: 768px) {
  header span {
    font-size: 12px;
  }
}
header nav {
  height: 100%;
  width: 100%;
  display: inline;
}
header nav ul {
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
  float: right;
}
header nav ul li {
  cursor: pointer;
  height: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
}
header nav ul li a {
  font-size: 1.2vw;
  font-family: RobotoCondensedBold;
  background: transparent;
  display: block;
  color: #5CB31C;
  padding: 10px;
  text-transform: none;
}
header nav ul li a:hover,
header nav ul li a:visited {
  color: #5CB31C;
}

.mySousMenu {
  display: none;
  background: white;
  position: absolute;
  width: auto;
  z-index: 1000;
  border: 1px solid #e5e5e5;
  border-top: none;
}

.mySousMenu li {
  float: none;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.mySousMenu li a {
  padding: 10px;
  border-bottom: none;
  font-size: 1vw;
}


.mySousMenu li:hover {
  background-color: #eafcdf;
}

header nav #myMenu #menu1:after, header nav #myMenu #menu2:after {
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  background: url(../img/chevron.png) 0 0 no-repeat;
  margin-top: 10px;
}


nav > ul > li:hover .mySousMenu {
  display: block;
  top: 88px;
  height: auto;
}


@media (max-width: 1200px) {
  header nav {
    position: fixed;
    right: 0;
    top: 0;
    display: block;
    background-color: #5CB31C;
    height: 100%;
    width: 283px;
    overflow: auto;
  }
  header nav #close-menu {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  header nav #close-menu .glyphicon,
  header nav #close-menu .glyphicon-remove {
    color: white;
    font-size: 20px;
  }
  header nav ul {
    min-width: auto;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    width: 283px;
  }
  header nav ul li {
    height: auto;
    position: relative;
    display: block;
  }
  header nav ul li a {
    color: white !important;
    font-size: 2vh;
  }
  header nav ul li a:focus,
  header nav ul li a:visited {
    color: white;
  }

  nav > ul > li:hover .mySousMenu {
    display: block;
    padding: 5px;
  }
  .mySousMenu li a {
    padding: 2px;
    font-size: 1.5vh;
    padding-left: 20px;
  }
  .mySousMenu {
    display: none;
    background: transparent;
    position: initial;
    width: auto;
    z-index: 1000;
    border: none;
    border-top: none;
    padding: 0;
    min-width: 110px;
  }
  .mySousMenu li:hover {
    background-color: #00000012;
  }
  header nav #myMenu #menu1:after, header nav #myMenu #menu2:after {
    content: "";
    width: 0;
    height: 0;
    display: initial;
    background: none;
    margin-top: 0;
  }
  header nav #myMenu #menu1 > a:after, header nav #myMenu #menu2 > a:after {
    content: "";
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(../img/chevron-white.png) 0 0 no-repeat;
    vertical-align: middle;
    float: right;
    margin-left: 10px;
    position: fixed;
  }

}
#multiscroll-container {
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: 0;
  width: calc(101%);
  height: calc(100vh - 88px);
  top: 88px;
  left: 0;
}
#multiscroll-container .background-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
#multiscroll-container #multiscroll {
  height: 100%;
  position: relative;
}
#multiscroll-container #multiscroll .ms-section,
#multiscroll-container #multiscroll .ms-table,
#multiscroll-container #multiscroll .ms-tableCell {
  height: calc(100vh - 88px) !important;
}
#multiscroll-nav li .active span{
  background:#5CB31C !important;
}
#multiscroll-nav li span{
  background:#ffffff !important;
}
#multiscroll-nav span {
    width: 18px !important;
    height: 18px !important;
    border: 1px solid #387514 !important;
}
#main-mobile {
  position: absolute;
  z-index: 0;
  margin: 88px 0px 0px 0px;
  width: 100%;
  padding: 0;
}
#main-mobile > .container-fluid {
  padding: 0;
  position: relative;
  width: 100%;
}
#main-mobile > .container-fluid .background-container {
  display: block;
  width: 100%;
  height: calc(100vh - 88px);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
#home-section {
  padding: 2vh 2vw;
  position: absolute;
  left: 0;
  top: 0;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100% - 88px);
}
#home-section > .main {
  width: 100%;
}
#home-section h1 {
  font-family: AmericanCR;
  font-weight: bold;
  font-size: 7.5vh;
  color: #5CB31C;
  padding: 10px 0;
  margin: 0;
  text-align: center;
}
#home-section h2 {
  font-family: AmericanCR;
  font-weight: bold;
  text-align: center;
  font-size: 2.8vh;
  padding: 0 0 25px 0;
  margin: 0;
}

#home-section #product-moreinformation {
  font-family: AmericanCR;
  font-weight: normal;
  font-size: 2.1vh;
  padding: 0 0 5px 0;
  margin: 20px 0 0 0;
}

#home-section #btn-section {
  display: flex;
  justify-content: center;
}
#home-section #btn-section > .green-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  text-align: center;
  font-size: 1.2vw;
  margin: 0 4%;
  padding: 1% 0;
  font-weight: bold;
}

#home-section #btn-section > .green-btn-border {
  cursor: pointer;
  text-transform: none;
  padding: 5px 5px;
  color: white;
  border-radius: 80px;
  margin: 0px 5px;
  font-size: 2vh;
  border: 2px solid #5CB31C;
  background-color: white;
  color: #333 !important;
}
.green-btn-border a, .green-btn-border a:hover, .green-btn-border a:focus, .green-btn-border a:visited, .green-btn-border a:active{
  color: #333 !important;
}

#home-section #home-tags {
  margin-top: 15px;
}
#home-section #home-tags p {
  font-family: AmericanCR;
  font-weight: bold;
  text-align: justify;
  font-size: 2vh;
  line-height: 1;
}
#home-section #price {
  position: absolute;
  bottom: 10px;
  right: 25px;
  display: inline-block;
  font-size: 2.2vh;
}
.background-container #price{
  position: absolute;
  bottom: 30px;
  right: 25px;
  display: inline-block;
  font-size: 2.2vh;
}
#home-section #home-tags p .greyify {
  color: #9E9E9E;
}
#home-L #product-partenaires {
  position: absolute;
    margin-top: 15px;
    display: flex;
    justify-content: right;
    align-items: center;
    z-index: 300;
    bottom: 0;
    margin-bottom: 50px;
    width: inherit;
    opacity: 0.9;
}
#home-L #product-partenaires > img {
  max-width: 17%;
  max-height: 8%;
  display: block;
  margin: 0 10px;
}

/*@media (max-height: 687px) {
  #home-L #product-partenaires {
    position: absolute;
      margin-top: 15px;
      display: flex;
      justify-content: left;
      align-items: center;
      z-index: 300;
      bottom: 0;
      margin-bottom: 20px;
      width: inherit;
      opacity: 0.9;
  }
  #home-L #product-partenaires > img {
    max-width: 10%;
    max-height: 8%;
    display: block;
    margin: 0 10px;
  }
}*/

#home-section #home-logos {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home-section #home-logos > img {
  max-width: 17%;
  max-height: 8%;
  display: block;
  margin: 0 10px;
}

#home-section #home-logos .truspilot-container {
  vertical-align: middle;
  max-width: 22%;
  max-height: 100px;
  display: block;
  margin: 0 10px;
}

.content-wide .truspilot-container {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  display: block;
}

.main .truspilot-container {
  margin: 0px 0px 20px 0px
}

.product-truspilot-container {
  position: absolute;
  width: 200px;
  z-index: 350;
  right: 0;
  top: 40px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0px 0px 10px 10px;
  margin: 0px 30px 0px 0px;
}

.productmobile-truspilot-container {
  position: absolute;
  width: 245px;
  z-index: 300;
  right: 0;
  top: -15px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0px 0px 10px 10px;
  margin: 0px 30px 0px 0px;
}

@media (max-width: 768px) {
  header {
    height: 60px;
  }
  header #logo span a img {
    width: 130px;
  }

  #home-section h1 {
    padding: 7px 0;
  }

  .main .section-container > p {
    padding: 15px 0px 15px 0px !important;
    margin-bottom: 5px;
  }

  #home-section #home-logos {
    margin-top: 5px;
  }

  #main-mobile > .container-fluid .background-container #home-logos .truspilot-container {
    vertical-align: middle;
    max-width: 22%;
    max-height: 80px;
    display: block;
    margin: 0 10px;
  }

  #main-mobile > .container-fluid .background-container #home-section {
    height: 100%;
    width: 100%;
  }

  #slide-section h1 {
  font-family: AmericanCR;
  font-weight: bold;
  font-size: 5.5vh;
  color: #5CB31C;
  padding: 10px 0;
  margin: 0;
  text-align: center;
  }
  #slide-section h2 {
    font-family: AmericanCR;
    font-weight: bold;
    text-align: center;
    font-size: 2.5vh;
    padding: 0 0 30px 0;
    margin: 0;
  }
  #slide-section #product-moreinformation {
    font-family: AmericanCR;
    font-size: 2vh;
    padding: 0 5px 0 5px;
    margin: 20px 0px 0px 0;
  }
  #slide-section #btn-section {
    display: flex;
    justify-content: center;
  }
  #slide-section #btn-section > .green-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    text-align: center;
    font-size: 3vw;
    margin: 0 4%;
    padding: 1% 0;
    font-weight: bold;
  }
  #slide-section #btn-section > .green-btn-border {
    padding: 5px 5px;
    color: white;
    border-radius: 80px;
    margin: 0px 5px;
    font-size: 2vh;
    border: 2px solid #5CB31C;
    background-color: white;
    color: #333 !important;
  }
  .green-btn-border a:hover, .green-btn-border a:focus, .green-btn-border a:visited, .green-btn-border a:active{
    color: #333 !important;
  }

  #slide-section #home-tags {
    margin-top: 15px;
  }
  #slide-section #home-tags p {
    font-family: AmericanCR;
    font-weight: bold;
    text-align: justify;
    font-size: 2vh;
    line-height: 1;
    padding: 0px 5px 0px 5px;
  }
  #slide-section #price {
    position: absolute;
    bottom: 10px;
    right: 25px;
    display: inline-block;
    font-size: 2.1vh;
  }
  #slide-section #home-tags p .greyify {
    color: #9E9E9E;
  }
  #slide-section #home-logos {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #slide-section #home-logos > img {
    max-width: 15%;
    max-height: 8%;
    display: block;
    margin: 0 10px;
  }
  #home-section #home-logos > img {
    max-width: 20%;
    max-height: 8%;
    display: block;
    margin: 0 10px;
  }


}
#main-mobile > .container-fluid .background-container #home-section .main {
  width: 100%;
}
#main-mobile > .container-fluid .background-container #home-section .main h1 {
  font-size: 7vh;
}
#main-mobile > .container-fluid .background-container #home-section .main h2 {
  font-size: 4vh;
  padding-bottom: 10px;
}
#main-mobile > .container-fluid .background-container #home-section .main #btn-section > .green-btn {
  font-size: 1.8vh;
  width: 28%;
  padding: 1% 2%;
}
#main-mobile > .container-fluid .background-container #home-section .main #home-tags {
  margin-top: 5px;
}
#main-mobile > .container-fluid .background-container #home-section .main #home-tags p {
  font-size: 2.4vh;
}
.slide-section {
  width: 100%;
  height: calc(100vh - 88px);
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.slide-section .section-container > h1 {
  color: white;
  font-family: RobotoCondensedBold;
  font-weight: 600;
  text-transform: none;
  font-size: 32px;
}
.slide-section .section-container > p {
  color: white;
  font-size: 16px;
  padding: 0;
  line-height: 1;
  font-family: Roboto;
  font-weight: 100;
}
.slide-section .section-container > .green-btn {
  margin: 10px 0;
  float: left;
  font-size: 20px;
  font-family: RobotoCondensedBold;
}
.main .section-container > p {
  font-family: Roboto;
  font-weight: 300;
  text-align: left;
  font-size: 2vh;
  padding: 20px 0px 20px 0px;
  line-height: 1;
  /*text-transform: none;*/
}
.main .section-container .short-description {
  text-align: center;
  font-size: 1.8vh;
}

@media (max-width: 767px) {
  .slide-section {
    height: 100%;
    width: 100%;
  }
}
.more-left,
.more-right {
  background-color: #f2f2f2;
  position: absolute;
  top: 0;
  left: 0;
  align-items: flex-start;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.more-left .section-container > span,
.more-right .section-container > span {
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 30px;
  color: black;
  font-size: 25px;
}
.more-left .section-container > h1,
.more-right .section-container > h1,
.more-left .section-container > p,
.more-right .section-container > p {
  color: black;
}
.more-left {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
.more-right {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
#main-mobile .readmore {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #f2f2f2;
}
#main-mobile .readmore .section-container {
  padding: 20px;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#main-mobile .readmore .section-container > span {
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 25px;
  color: #5CB31C;
}
#main-mobile .readmore .section-container h1,
#main-mobile .readmore .section-container p {
  color: black;
}
.shop .green-bg {
  /*background-color: #5CB31C;*/
}
.shop .green-bg .slide-section {
  padding: 0;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.shop .green-bg .slide-section .product {
  position: relative;
  background-color: white;
  height: 25%;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-direction: row;
}
.shop .green-bg .slide-section .product .product-image {
  padding: 0;
  margin: 0;
  width: 30%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.shop .green-bg .slide-section .product .content {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  width: calc(100% - 30%);
  padding: 10px;
  padding-right: 20px;
  padding-bottom: 45px;
  overflow: hidden;
}
.shop .green-bg .slide-section .product .content:after {
  content: ' ';
  display: block;
  background: white;
  height: 45px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.shop .green-bg .slide-section .product .content h1 {
  font-size: 15px;
  text-transform: none;
  color: #5CB31C;
  padding: 0;
  margin: 0;
}
.shop .green-bg .slide-section .product .content h2 {
  font-size: 15px;
  text-transform: none;
  color: #5CB31C;
  padding: 0;
  margin: 0;
}
.shop .green-bg .slide-section .product .content h2>a:hover,
.shop .green-bg .slide-section .product .content p>a:hover {
  color: #4b921a;
}
.shop .green-bg .slide-section .product .content > span {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  right: 25px;
  display: inline-block;
}
.shop .green-bg .slide-section .product .content > span .green-btn {
  display: block;
  margin: 0;
  font-size: 2.5vw;
}
.shop .green-bg .slide-section .product .content > span .green-btn-shop {
  font-size: 16px !important;
}
.shop .green-bg .slide-section .product .content > span .green-btn img, header > span .green-btn img {
  height: 20px;
  margin-left: 5px;
  margin-top: -4px;
}
#main-mobile .shop .background-container {
  height: auto;
}
#main-mobile .shop .background-container .product-image {
  height: auto;
}

.shop .green-bg .slide-section .product .product-image-wide {
  padding: 0;
  margin: 0;
  width: 30%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.shop .green-bg .slide-section .product .content-wide {
  text-align: center;
  position: relative;
  box-sizing: border-box;
  height: 100%;
  width: 70%;
  padding: 10px;
  padding-right: 20px;
  padding-bottom: 45px;
  overflow: hidden;
}
.shop .green-bg .slide-section .product .content-wide h2 {
  text-align: center;
  font-size: 1.4vw;
  text-transform: none;
  color: #5CB31C;
  padding: 0;
  margin: 0;
}
.shop .green-bg .slide-section .product .content-wide p {
  font-size: 0.8vw;
}
.shop .green-bg .slide-section .product .content-wide h2>a:hover,
.shop .green-bg .slide-section .product .content-wide p>a:hover {
  color: #4b921a;
}
.shop .green-bg .slide-section .product .content-wide > span {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  right: 25px;
  display: inline-block;
}
.shop .green-bg .slide-section .product .content-wide > span .green-btn {
  display: block;
  margin: 0;
  font-size: 0.8vw;
}
.shop .green-bg .slide-section .product .content-wide > span .green-btn img {
  height: 20px;
  margin-left: 5px;
  margin-top: -4px;
}

#main-cart {
  margin-top: 88px;
  padding-bottom: 50px;
}
#main-cart .cart {
  margin-top: 50px;
}
#main-cart .cart h1,
#main-cart .cart h2,
#main-cart .cart p {
  text-align: center;
}
#main-cart .cart h1 {
  color: #5CB31C;
  font-family: RobotoCondensedBold;
  font-size: 50px;
}
#main-cart .cart h2 {
  color: #5CB31C;
}
#main-cart .cart p {
  font-size: 15px;
}
.cart .green-btn {
  cursor: default;
}
.cart .table-responsive {
  margin-top: 30px;
}

.cart .help_code_mobile {
    display: none;
}

@media (max-width: 767px) {
    .cart p {
        margin-bottom: 5px;
    }
    .cart .table-responsive {
        border: none;
    }

    .cart .table-responsive table tbody tr td {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .cart .help_code {
        display: none;
    }
    .cart .help_code_mobile {
        display: block;
    }

    .mobile-hide {
        display: none !important;
    }

    .cart .table-responsive table tfoot th,
    .cart .table-responsive table tfoot td {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        line-height: 1.1;
    }
}

#mr-summary p {
    margin: 2px 0;   /* Ajuste selon ton goût */
    line-height: 1.2;
}

.cart .table-responsive table {
  white-space: nowrap;
  text-align: center;
  width: 50%;
  margin: auto;
}
.cart .table-responsive table thead,
.cart .table-responsive table tfoot {
  background-color: #5CB31C;
  color: white;
}
.cart .table-responsive table thead th,
.cart .table-responsive table tfoot th {
  text-transform: none;
  font-weight: lighter;
  text-align: center;
}
.cart .table-responsive table tfoot th {
  font-size: 18px;
}
.cart .table-responsive table tbody tr td {
  vertical-align: middle;
  padding: 10px;
}
.cart .table-responsive table tbody tr td .glyphicon-remove {
  color: #5CB31C;
  top: 3px;
  cursor: pointer;
}
.cart .table-responsive table tbody tr td .input-number {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart .table-responsive table tbody tr td button {
  outline: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  font-size: 12px;
  display: block;
  color: #5CB31C;
}
.cart .table-responsive table tbody tr td button[left] {
  float: left;
}
.cart .table-responsive table tbody tr td button[right] {
  float: right;
}
.cart .table-responsive table tbody tr td input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #5CB31C;
  text-align: center;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.cart .table-responsive table tbody tr td input::-webkit-inner-spin-button,
.cart .table-responsive table tbody tr td input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.cart .table-responsive table tbody tr td input:focus {
  outline: none;
}
.cart .table-responsive table tbody img {
  max-width: 100px;
  max-height: 100px;
  display: block;
  margin: auto;
}

.cart #totals {
  text-align: center;
}
.cart #totals h1 {
  font-family: RobotoCondensed;
  font-size: 30px;
}
.cart #totals h1 #total {
  font-family: Roboto;
  font-weight: 300;
  font-size: 30px;
}
.cart #totals .submit-button {
  margin: 10px auto;
}
.cart .table-responsive .total_before_reduction{
  opacity: 0.90;
  background-color: rgba(221, 221, 221, 0.3);
}

.cart .help_code {
  font-weight: bold;
}

#main-shipping-choice {
  margin-top: 88px;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
  padding-bottom: 50px;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 900px;
    text-align: center;
}
#main-shipping-choice #shipping-form {
    width: 100%;
    overflow-x: auto;
}
#main-shipping-choice #shipping-form .form-check {
    text-align: left;
}
#main-shipping-choice .shipping-choice {
  margin-top: 50px;
}
#main-shipping-choice .shipping-choice h1,
#main-shipping-choice .shipping-choice h2,
#main-shipping-choice .shipping-choice p {
  text-align: center;
}
#main-shipping-choice .shipping-choice h1 {
  color: #5CB31C;
  font-family: RobotoCondensedBold;
  font-size: 50px;
}
#main-shipping-choice .shipping-choice h2 {
  color: #5CB31C;
}
#main-shipping-choice .shipping-choice p {
  font-size: 15px;
}

#next-step-btn:hover:not(:disabled) {
    background-color: #0056b3;
}
#next-step-btn:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.7;
}

#main-account {
  overflow: auto;
  position: fixed;
  height: 100%;
  width: 100%;
  padding-top: calc(138px);
  padding-bottom: 50px;
}
#main-account .form-section {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
#main-account .form-section .mail > input {
  background: url('../img/mail.png') no-repeat;
  background-size: 15px;
  background-position: 98% 25px;
}
#main-account .form-section .adresse > input {
  background: url('../img/home.png') no-repeat;
  background-size: 15px;
  background-position: 98% 25px;
}
#main-account .form-section .tel > input {
  background: url('../img/phone.png') no-repeat;
  background-size: 15px;
  background-position: 98% 25px;
}
.errorlist {
  margin: 0 auto 10px auto;
  max-width: 300px;
}
.errorlist li {
  list-style: inside decimal;
  font-weight: bold;
  color: #EF5350;
  padding: 10px 0;
}
#main-account .form-section .submit-button {
  display: block;
  margin: 50px auto 10px auto;
}
#main-account .more {
  margin-top: 30px;
}
#main-account .more p {
  text-align: center;
  line-height: 1;
}
#main-account .more p a {
  text-decoration: underline;
}
#main-account .more p a:hover {
  color: inherit;
}
#main-account .change-pass {
  margin: 0 auto;
  padding: 0;
}

#socials{
  margin : 20px 0;
  position: relative;
}

@media (min-width: 768px){
  #socials{
    max-width: 100%;
  }
  #socials > a > img{
    height: 44px;
    margin: 0 8px;
  }
}
@media (max-width: 767px){
  #socials > a > img{
    height: 35px;
    margin: 0 8px;
  }
}

#legal-docs{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#paypal{
  margin: 20px;
}
#paypal > p {
  text-align: center;
}
#paypal > form > input{
  margin: auto;
  display:block;
}

.badge-cart {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #5CB31C; /* Couleur de texte : Blanc */
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #ffffff;
  border-radius: 10px;
  margin-left: 5px;
}
/*  -----------------------------------------*/
.badge-cart:empty {
  display: none;
}

#orders_list {
  margin-top: 88px;
  padding-bottom: 50px;
}
#orders_list .orders_user {
  margin-top: 50px;
}
#orders_list .orders_user h1,
#orders_list .orders_user h2,
#orders_list .orders_user p {
  text-align: center;
}
#orders_list .orders_user h1 {
  color: #5CB31C;
  font-family: RobotoCondensedBold;
  font-size: 50px;
}
#orders_list .orders_user h2 {
  color: #5CB31C;
}
#orders_list .orders_user p {
  font-size: 15px;
}
.orders_user .green-btn {
  cursor: default;
}
.orders_user .table-responsive {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .orders_user .table-responsive {
    border: none;
  }
}
.orders_user .table-responsive table {
  white-space: nowrap;
  text-align: center;
  width: 50%;
  margin: auto;
}
.orders_user .table-responsive table thead,
.orders_user .table-responsive table tfoot {
  background-color: #5CB31C;
  color: white;
}
.orders_user .table-responsive table thead th,
.orders_user .table-responsive table tfoot th {
  text-transform: none;
  font-weight: lighter;
  text-align: center;
}
.orders_user .table-responsive table tfoot th {
  font-size: 18px;
}
.orders_user .table-responsive table tbody tr td {
  vertical-align: middle;
  padding: 10px;
}
.orders_user .table-responsive table tbody tr td .glyphicon-remove {
  color: #5CB31C;
  top: 3px;
  cursor: pointer;
}
.orders_user .table-responsive table tbody tr td .input-number {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orders_user .table-responsive table tbody tr td button {
  outline: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  font-size: 12px;
  display: block;
  color: #5CB31C;
}
.orders_user .table-responsive table tbody tr td button[left] {
  float: left;
}
.orders_user .table-responsive table tbody tr td button[right] {
  float: right;
}
.orders_user .table-responsive table tbody tr td input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #5CB31C;
  text-align: center;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.orders_user .table-responsive table tbody tr td input::-webkit-inner-spin-button,
.orders_user .table-responsive table tbody tr td input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.orders_user .table-responsive table tbody tr td input:focus {
  outline: none;
}
.orders_user .table-responsive table tbody img {
  max-width: 100px;
  max-height: 100px;
  display: block;
  margin: auto;
}
.orders_user #totals {
  text-align: center;
}
.orders_user #totals h1 {
  font-family: RobotoCondensed;
  font-size: 30px;
}
.orders_user #totals h1 #total {
  font-family: Roboto;
  font-weight: 300;
  font-size: 30px;
}
.orders_user #totals .submit-button {
  margin: 10px auto;
}

.crosscover-controller {
  z-index: 400!important;
  bottom: 5px!important;
}

/**
 * Next & Prev icons
 */
.crosscover-icon-next:after,
.crosscover-icon-prev:after {
  border-top: 4px solid rgba(92, 179, 28,1)!important;
  border-right: 4px solid rgba(92, 179, 28,1)!important;
}

/* Next and Prev hover */
.crosscover-next:hover .crosscover-icon-next:after,
.crosscover-prev:hover .crosscover-icon-prev:after {
  border-top: 4px solid rgba(92, 179, 28,.4)!important;
  border-right: 4px solid rgba(92, 179, 28,.4)!important;
}

@media only screen and (max-width: 768px) {
  .cart .table-responsive table {
    width: 85%;
  }

  /* Force table to not be like tables anymore */
  #no-more-tables table,
  #no-more-tables thead,
  #no-more-tables tbody,
  #no-more-tables th,
  #no-more-tables td,
  #no-more-tables tr,
  #no-more-tables tfoot {
    display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  #no-more-tables thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  #no-more-tables tr {
    border-top: 1px solid #ccc;
  }

  #no-more-tables td {
    /* Behave like a "row" */
    border: none;
    /*border-bottom: 1px solid #eee;*/
    position: relative;
    padding-left: 30%;
    white-space: normal;
  }

  #no-more-tables td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 70%;
    padding-right: 10px;
    white-space: nowrap;
    text-align:left;
    font-weight: bold;
  }

  /*
  Label the data
  */
  #no-more-tables td:before {
    content: attr(data-title);
  }

  #no-more-tables tfoot th {
    border: none;
  }

  #no-more-tables tfoot th.empty{
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  #no-more-tables tfoot tr th:after {
    content: ' 'attr(data-title);
  }

}
