/* red */
/* green */
/* button */
/* body font color */
/* field required */
/* grey */
/* cta pink */
/* cta white */
/* light blue */
/* grey */
.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@supports (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d) {
  .carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.carousel-item-next,
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

@supports (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d) {
  .carousel-item-next,
.active.carousel-item-right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.carousel-item-prev,
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@supports (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d) {
  .carousel-item-prev,
.active.carousel-item-left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@supports (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d) {
  .carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: -webkit-sticky) or (position: sticky) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.page-wrapper .review-list .block-title strong {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
}
.page-wrapper .rating-summary .rating-result:before {
  content: "";
  background: url(../img/rating-stars.svg);
}
.page-wrapper .rating-summary .rating-result > span:before {
  content: "";
  background: url(../img/rating-stars-fill.svg);
  width: 10rem;
}
.page-wrapper .product.data.items, .page-wrapper .product.info.detailed {
  margin-bottom: 0;
}
.page-wrapper .product.info.detailed .product.data.items > .item.content {
  margin-top: 0;
}

/* red */
/* green */
/* button */
/* body font color */
/* field required */
/* grey */
/* cta pink */
/* cta white */
/* light blue */
/* grey */
.offer-star {
  background: transparent url("../img/offer/bg-offer-yellow.png") repeat-y 0 0;
  color: #0F0F11;
}
.offer-star h2 {
  padding: 4rem 2rem 0 2rem !important;
}
.offer-star .baseline {
  margin: 1.8rem 0 0;
  padding: 0 2rem 0 2rem;
  text-align: center;
  font-size: 2.4rem;
}
.offer-star .baseline p {
  margin: 0;
  padding: 0;
}
.offer-star .baseline .mention {
  font-size: 1.8rem;
}
.offer-star .offer {
  width: 70%;
  margin: 3rem auto 0 auto;
  text-align: center;
}
.offer-star .offer::after {
  display: block;
  content: " ";
  clear: both;
}
.offer-star .offer .item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 46%;
  float: left;
  background: transparent url("../img/offer/star-rounded.png") no-repeat center center;
  background-size: 100%;
  margin: 0 3%;
  border: 0px dashed teal;
}
.offer-star .offer .item:first-child {
  margin-left: 0;
}
.offer-star .offer .item:last-child {
  margin-right: 0;
}
.offer-star .offer .item.free .content-wrapper .content .price .offer-star-item-price-template:not(:first-child) {
  display: inline;
  font-size: 1.4rem;
  font-weight: 600;
}
.offer-star .offer .item.free .content-wrapper .content .price .offer-star-item-price-template:not(:first-child) sup {
  font-size: 1.4rem;
}
.offer-star .offer .item.sharped {
  background: transparent url("../img/offer/star-sharped.png") no-repeat center center;
  background-size: 100%;
}
.offer-star .offer .item .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* ie */
  height: 34vw;
  max-height: 40rem;
  border: 0px dashed aqua;
}
.offer-star .offer .item .wrapper .content-wrapper {
  border: 0px dashed red;
  text-align: left;
}
.offer-star .offer .item .wrapper .content-wrapper .content {
  margin: 0 auto;
}
.offer-star .offer .item .wrapper .content-wrapper .content .free-period {
  margin: 0 0 1.2rem 0;
  text-transform: uppercase;
}
.offer-star .offer .item .wrapper .content-wrapper .content .price {
  margin: 0 0 1.2rem 0;
  font-size: 2.5rem;
  font-weight: 700;
}
.offer-star .offer .item .wrapper .content-wrapper .content .price sup {
  font-size: 18px;
}
.offer-star .offer .item .wrapper .content-wrapper .content .price sup .duration-for {
  display: block;
  line-height: 3rem;
  font-size: 1.4rem;
}
.offer-star .offer .item .wrapper .content-wrapper .content .price .then {
  font-size: 1.4rem;
  font-weight: 400;
}
.offer-star .offer .item .wrapper .content-wrapper .content .description {
  margin: 0 0 0.8rem 0;
  line-height: 1.6rem;
}
.offer-star .offer .item .wrapper .content-wrapper .content .detail {
  font-weight: 600;
  margin: 0 0 2.2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-star .offer .item .wrapper .content-wrapper .content .detail .image-cadeau {
  text-align: center;
  margin: 0 auto;
  flex-basis: 50%;
}
.offer-star .offer .item .wrapper .content-wrapper .content .detail .image-cadeau img {
  max-width: 8rem;
}
.offer-star .offer .item .wrapper .content-wrapper .content .detail .name-cadeau {
  margin: 0 auto;
  flex-basis: 50%;
}
.offer-star .offer .item .wrapper .action-wrapper {
  width: 100%;
  /* ie */
  text-align: center;
  margin: 0 0 1rem 0;
}
.offer-star .offer .item .wrapper .action-wrapper .cta {
  background-color: #D50000;
  border: 3px solid #D50000;
  border-radius: 40px;
  color: #FFFFFF !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  min-width: 160px;
  padding: 12px 35px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: none;
}
.offer-star .offer .item .wrapper .action-wrapper .cta:hover, .offer-star .offer .item .wrapper .action-wrapper .cta.on {
  background-color: #C0000D;
  border-color: #C0000D;
  color: #FFFFFF !important;
}
.offer-star .offer .item .wrapper .action-wrapper .cta {
  transition-property: none;
  height: inherit;
  min-width: inherit;
  padding: 12px 20px;
}
.offer-star .offer .item .price-offer-star-item-0-0-1 {
  font-size: 1.4rem;
}
.offer-star .offer .item .price-offer-star-item-0-0-1 .duration-info {
  font-size: 1.4rem !important;
}
.offer-star .gift-list .items .gift label span {
  padding: 24% 3px;
}

/*******************************************/
@media only screen and (max-width: 1200px) {
  .offer-star .offer {
    width: 75%;
  }
}
/*******************************************/
@media only screen and (max-width: 992px) {
  .offer-star .offer {
    width: 95%;
  }
}
/*******************************************/
@media only screen and (max-width: 768px) {
  .offer-star .offer .item .wrapper {
    height: auto;
    min-height: 30rem;
  }
  .offer-star .offer .item .wrapper .content-wrapper .content {
    width: auto;
  }
  .offer-star .offer .item .wrapper .content-wrapper .content .price {
    font-size: 2.6rem;
  }
}
/*******************************************/
@media only screen and (max-width: 767px) {
  .offer-star {
    background-repeat: repeat-y;
  }
  .offer-star .baseline {
    font-size: 2rem;
  }
  .offer-star .baseline .mention {
    font-size: 1.6rem;
  }
  .offer-star .offer {
    text-align: center;
    margin: 4rem auto 0 auto;
  }
  .offer-star .offer .item {
    margin: 0 auto 3rem auto;
    float: inherit;
    max-height: 85vw;
    width: 75%;
  }
  .offer-star .offer .item:first-child {
    margin-left: inherit;
  }
  .offer-star .offer .item:last-child {
    margin-right: inherit;
    margin-bottom: 1rem;
  }
  .offer-star .offer .item .wrapper {
    min-height: 35rem;
  }
  .offer-star .offer .item .wrapper .content-wrapper {
    margin: 0;
  }
  .offer-star .offer .item .wrapper .content-wrapper .content {
    margin: 0;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .offer-star .offer .item {
    display: block;
    height: auto;
    max-height: inherit;
    margin: 0 auto 4rem;
  }
}
/*******************************************/
@media only screen and (max-width: 414px) {
  .offer-star .baseline .mention {
    font-size: 1.4rem;
  }
  .offer-star .offer {
    text-align: center;
  }
  .offer-star .offer .item {
    width: 90%;
  }
  .offer-star .offer .item .wrapper {
    min-height: 30rem;
  }
  .offer-star .offer .item .wrapper .content-wrapper {
    text-align: center;
  }
  .offer-star .offer .item .wrapper .content-wrapper .content {
    width: 100%;
  }
  .offer-star .offer .item .wrapper .content-wrapper .content .action-wrapper .cta {
    padding: 1.2rem 1.5rem;
  }
}
/* red */
/* green */
/* button */
/* body font color */
/* field required */
/* grey */
/* cta pink */
/* cta white */
/* light blue */
/* grey */
.faq {
  background: #eaf2f5;
  padding: 0 0 6rem;
}
.faq h2 {
  padding: 5rem 0 4rem 0 !important;
}
.faq .faq-content {
  width: 50%;
  margin: 0 auto;
  /* bold decimal list */
}
.faq .faq-content ul, .faq .faq-content ol {
  margin: 0 0 0 2rem;
}
.faq .faq-content ul li, .faq .faq-content ol li {
  list-style: disc;
  margin: 0 0 1rem 0;
}
.faq .faq-content ol {
  counter-reset: item;
}
.faq .faq-content ol li {
  counter-increment: item;
  list-style: none;
  text-indent: -1.2rem;
}
.faq .faq-content ol li::before {
  content: counter(item) ".";
  display: inline-block;
  font-weight: bold;
  padding-right: 0.5rem;
  text-align: right;
  width: 1.5rem;
}
.faq .faq-content .item {
  margin: 0 0 0.8rem 0;
}
.faq .faq-content .item:last-child {
  margin: 0;
}
.faq .faq-content .item .answer, .faq .faq-content .item .question {
  background: #cdd6dd;
  margin: 1px 0 0 0;
}
.faq .faq-content .item .answer a, .faq .faq-content .item .question a {
  text-decoration: underline;
}
.faq .faq-content .item .answer a:hover, .faq .faq-content .item .question a:hover {
  text-decoration: none;
}
.faq .faq-content .item .answer strong, .faq .faq-content .item .question strong {
  font-weight: 500;
}
.faq .faq-content .item .answer p, .faq .faq-content .item .question p {
  padding: 0;
  margin: 0;
}
.faq .faq-content .item .question {
  font-size: 24px;
  line-height: 28px;
  padding: 2rem 6rem 2rem 3rem;
  position: relative;
  cursor: pointer;
}
.faq .faq-content .item .answer {
  font-size: 19px;
  line-height: 24px;
  font-weight: 300;
  padding: 2rem 3rem 3rem;
}
.faq .faq-content .item .answer.slideup, .faq .faq-content .item .answer.slidedown {
  display: none;
  transition: display 0.5s ease-in-out;
}
.faq .faq-content .item .answer.slidedown {
  display: block;
}
.faq .faq-content .item .plus {
  display: inline-block;
  width: 30px;
  height: 25px;
  background: transparent url("../img/faq/faq-btn-01.png") no-repeat 0 -22px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
}
.faq .faq-content .item .plus.cross {
  background-position: 0 2px;
}

/*******************************************/
@media only screen and (max-width: 1200px) {
  .faq .faq-content {
    width: 60%;
  }
}
/*******************************************/
@media only screen and (max-width: 768px) {
  .faq .faq-content {
    width: 85%;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .faq h2 {
    padding: 3rem 0 2rem 0 !important;
  }
  .faq .faq-content {
    width: 90%;
  }
  .faq .faq-content ol li {
    text-indent: -2rem;
  }
  .faq .faq-content .item .question {
    font-size: 1.9rem;
    line-height: 2.4rem;
  }
  .faq .faq-content .item .answer {
    font-size: 1.7rem;
    line-height: 2.3rem;
  }
}
/*******************************************/
@media only screen and (max-width: 414px) {
  .faq .faq-content .item .question {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  .faq .faq-content .item .answer {
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 2rem 1.5rem 3rem;
  }
}
/* red */
/* green */
/* button */
/* body font color */
/* field required */
/* grey */
/* cta pink */
/* cta white */
/* light blue */
/* grey */
section.note {
  font-size: 11px;
}
section.note .content {
  width: 85%;
  margin: 5rem auto 3rem auto;
  color: #606060;
}

.gift-list {
  margin: 0 0 2rem 0;
}
.gift-list p strong {
  font-size: 1.5rem;
}
.gift-list .items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border: 0px dotted red;
}
.gift-list .items .gift {
  float: left;
  width: 30%;
  margin: 0 3% 0 0;
  background: #FFFFFF;
  border: 0.3rem solid #cdd6dd;
  border-radius: 1rem;
}
.gift-list .items .gift:hover {
  border-color: #D50000;
}
.gift-list .items .gift.checked {
  border-color: #D50000;
}
.gift-list .items .gift:last-child {
  margin-right: 0;
}
.gift-list .items .gift.col-2 {
  width: 45%;
  max-width: 10rem;
  margin: 0 6% 0 0;
}
.gift-list .items .gift.col-2:last-child {
  margin-right: 0;
}
.gift-list .items .gift label {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 10rem;
  cursor: pointer;
  border: 0px dashed teal;
}
.gift-list .items .gift label:hover .text {
  bottom: 1rem;
}
.gift-list .items .gift label .text {
  position: absolute;
  width: 100%;
  bottom: -15rem;
  left: 0;
  text-align: center;
  background: #E40413;
  color: #FFFFFF;
  transition: all 0.4s ease-out;
}
.gift-list .items .gift label .text .name {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4rem;
  padding: 0.3rem 0.3rem 0 0.3rem;
}
.gift-list .items .gift label .text .desc {
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding: 0.3rem 0.3rem 0.8rem;
}
.gift-list .items .gift label img {
  width: auto;
  margin: 0 auto;
  border-radius: 1rem;
  max-height: 8rem;
  max-width: 8rem;
}
.gift-list .items .gift label span {
  text-align: center;
  display: block;
  width: 95%;
  line-height: 1.6rem;
  margin: 5px auto 0 auto;
}
.gift-list .no-gift-wrapper {
  margin: 1rem 0 0 0;
}
.gift-list .no-gift-wrapper .no-gift label input[type=radio] {
  position: relative;
  display: inherit;
  left: inherit;
}

/*******************************************/
@media only screen and (max-width: 414px) {
  .gift-list .items .gift label .text .name {
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.3rem;
  }
  .gift-list .items .gift label .text .desc {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}
.explanation .content {
  padding: 4rem 1rem;
  text-align: center;
  background: #FAE743;
}
.explanation .content .steps .title {
  margin: 0 auto 2rem;
  font-size: 2.5rem;
}
.explanation .content .steps .wrapper {
  position: relative;
  width: 95%;
  margin: 0 auto;
}
.explanation .content .steps .wrapper .line {
  width: 78%;
  display: block;
  position: relative;
  margin: 0 auto;
  max-width: 92rem;
}
.explanation .content .steps .wrapper .line::before {
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 1.5rem;
  left: 0;
  border-bottom: 3px dotted #000;
}
.explanation .content .steps .wrapper .items {
  position: relative;
  z-index: 2;
  margin: 0 auto 4rem auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.explanation .content .steps .wrapper .items .item {
  flex-basis: 25%;
}
.explanation .content .steps .wrapper .items .item .step-num {
  width: 3.6rem;
  height: 3.6rem;
  min-width: 3.6rem;
  box-sizing: border-box;
  margin: 0 auto 0rem;
  font-weight: 900;
  text-align: center;
  line-height: 3rem;
  font-size: 1.8rem;
  border-radius: 50%;
  border: 3px solid #000;
  background-color: #FAE743;
}
.explanation .content .steps .wrapper .items .item .step-text {
  font-size: 1.6rem;
}
.explanation .content .steps .wrapper .items .item a.step-text {
  text-decoration: underline;
}
.explanation .content .steps .wrapper .items .item a.step-text::after {
  content: "";
  width: 18px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.3em;
  margin-left: 0.4em;
  background-image: url(https://static.bayard.io/e-bayard-jeunesse.com/2019/fil-rouge-prospection/images/sprites.svg);
  background-repeat: no-repeat;
  background-position: -1px -19px;
}
.explanation .content .checklist .title {
  margin: 0 auto 2rem;
  font-size: 2.1rem;
}
.explanation .content .checklist .items {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
}
.explanation .content .checklist .items .item {
  flex-basis: 33%;
}
.explanation .content .checklist .items .item .description {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
}
.explanation .content .checklist .items .item .description::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background-image: url(https://static.bayard.io/e-bayard-jeunesse.com/2019/fil-rouge-prospection/images/sprites.svg);
  background-repeat: no-repeat;
  background-position: -1px -1px;
  position: absolute;
  top: 3px;
  left: -3rem;
}
.explanation .content .action .cta {
  background-color: #D50000;
  border: 3px solid #D50000;
  border-radius: 40px;
  color: #FFFFFF !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  min-width: 160px;
  padding: 12px 35px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: none;
}
.explanation .content .action .cta:hover, .explanation .content .action .cta.on {
  background-color: #C0000D;
  border-color: #C0000D;
  color: #FFFFFF !important;
}

/*******************************************/
@media only screen and (max-width: 992px) {
  .explanation .content .steps .wrapper {
    width: 100%;
  }
  .explanation .content .steps .wrapper .items .item .step-text {
    font-size: 1.5rem;
  }
}
/*******************************************/
@media only screen and (max-width: 768px) {
  .explanation .content .steps .wrapper .line {
    display: none;
  }
  .explanation .content .steps .wrapper .items {
    display: block;
    width: 70%;
  }
  .explanation .content .steps .wrapper .items .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 1.2rem;
  }
  .explanation .content .steps .wrapper .items .item .step-num {
    margin: 0 1rem 0 0;
  }
  .explanation .content .steps .wrapper .items .item .step-text {
    text-align: left;
  }
  .explanation .content .checklist .items {
    display: block;
    width: 30%;
    margin: 0 auto;
  }
  .explanation .content .checklist .items .item {
    text-align: left;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .explanation .content .steps .wrapper .items {
    width: 85%;
  }
  .explanation .content .steps .wrapper .items .item {
    font-size: 1.3rem;
  }
  .explanation .content .checklist .items {
    width: 40%;
  }
}
/*******************************************/
@media only screen and (max-width: 414px) {
  .explanation .content .steps .wrapper .items {
    width: 95%;
  }
  .explanation .content .checklist .items {
    width: 55%;
  }
}
.cms-sticky-header {
  display: none;
  background: #FFFFFF;
}
.cms-sticky-header.fixed {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 5;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  max-width: 128rem;
  width: 100%;
  margin: 0 auto;
}
.cms-sticky-header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cms-sticky-header .content .logo {
  display: block;
  width: 66px;
  height: 66px;
  float: left;
  margin: 0.6rem;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.cms-sticky-header .content .logo::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://static.bayard.io/milan-jeunesse.com/2021/landing-page/maintenance/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.cms-sticky-header .content .action {
  margin: 1rem 1rem 1rem 0;
  text-align: right;
}
.cms-sticky-header .content .action .cta {
  background-color: #E40413;
  border: 3px solid #E40413;
  border-radius: 40px;
  color: #FFFFFF !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  min-width: 160px;
  padding: 12px 35px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: none;
}
.cms-sticky-header .content .action .cta:hover, .cms-sticky-header .content .action .cta.on {
  background-color: #C0000D;
  border-color: #C0000D;
  color: #E7E7E7 !important;
}

/*******************************************/
/*******************************************/
@media only screen and (max-width: 576px) {
  .cms-sticky-header .content .action .cta {
    min-width: 13rem;
    padding: 1rem 1rem;
    font-size: 1.3rem;
    line-height: 1.3rem;
  }
}
/* red */
/* green */
/* button */
/* body font color */
/* field required */
/* grey */
/* cta pink */
/* cta white */
/* light blue */
/* grey */
.section-bottom {
  position: relative;
  overflow: hidden;
  height: 80px;
}
.section-bottom:after {
  background: #FFFFFF;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: -25px;
  bottom: 0;
  transform-origin: 100% 100%;
  width: 150%;
}
.section-bottom.up:after {
  transform: rotate(-3deg);
}
.section-bottom.down:after {
  bottom: -80px;
  transform: rotate(3deg);
}
.section-bottom.bg-color-secondary:after {
  background: #eaf2f5;
}

.section-top-up {
  position: absolute;
  top: -3.5rem;
  left: -1rem;
  z-index: 3;
  width: 130rem;
  height: 7rem;
  transform: rotate(-3deg);
  background: #FFFFFF;
}
.section-top-up.bg-color-secondary {
  background: #eaf2f5;
}

/*******************************************/
@media only screen and (max-width: 992px) {
  .section-top-up {
    top: -4.5rem;
  }
}
/*******************************************/
@media only screen and (max-width: 768px) {
  .section-top-up {
    top: -6.3rem;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .section-top-up {
    display: none;
  }
}
.banner-video {
  position: relative;
  overflow: hidden;
}
.banner-video video {
  display: block;
}

/* red */
/* green */
/* button */
/* body font color */
/* field required */
/* grey */
/* cta pink */
/* cta white */
/* light blue */
/* grey */
.offer-thin {
  background: transparent url("../img/offer/bg-offer-yellow.png") repeat 0 0;
  color: #0F0F11;
  text-align: center;
}
.offer-thin .baseline {
  margin: 0;
  padding: 2rem 2rem 0 2rem;
  text-align: center;
  font-size: 2rem;
}
.offer-thin .baseline p {
  margin: 0;
  padding: 0;
}
.offer-thin .baseline .mention {
  font-size: 1.8rem;
}
.offer-thin .offer {
  width: 75%;
  /*height: 18rem;*/
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-thin .offer .item {
  width: 25%;
  max-width: 235px;
  float: left;
  margin: 3rem auto;
}
.offer-thin .offer .item:first-child {
  width: 17%;
}
.offer-thin .offer .item.free .content-wrapper .content .price .offer-thin-item-price-template:not(:first-child) {
  display: inline;
  font-size: 1.4rem;
  font-weight: 400;
}
.offer-thin .offer .item.free .content-wrapper .content .price .offer-thin-item-price-template:not(:first-child) sup {
  font-size: 1.4rem;
}
.offer-thin .offer .item.or {
  display: block;
  height: 2rem;
  width: 12%;
  margin: 5rem 0;
  background: transparent url("../img/ou.png") no-repeat center center;
}
.offer-thin .offer .item.or .text {
  display: none;
}
.offer-thin .offer .item .content-wrapper .content {
  text-align: left;
}
.offer-thin .offer .item .content-wrapper .content .price {
  margin: 0 0 0.8rem 0;
  font-size: 24px;
  line-height: 26px;
  font-weight: 800;
}
.offer-thin .offer .item .content-wrapper .content .price sup {
  font-size: 15px;
}
.offer-thin .offer .item .content-wrapper .content .price sup .free {
  font-size: 1.8rem;
}
.offer-thin .offer .item .content-wrapper .content .price .then {
  font-size: 1.4rem;
  font-weight: 400;
}
.offer-thin .offer .item .content-wrapper .content .description {
  margin: 0 0 0.8rem 0;
  line-height: 1.6rem;
}
.offer-thin .offer .item .content-wrapper .content .detail {
  font-weight: 600;
  margin: 0 0 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.offer-thin .offer .item .content-wrapper .content .detail .image-cadeau {
  display: block;
  margin: 0 1rem 0 0;
  max-width: 35%;
}
.offer-thin .offer .item.action-wrapper {
  width: 40%;
  max-width: 350px;
  padding: 1rem 0 0 0rem;
}
.offer-thin .offer .action {
  clear: both;
}
.offer-thin .offer .action .cta {
  background-color: #D50000;
  border: 3px solid #D50000;
  border-radius: 40px;
  color: #FFFFFF !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  min-width: 160px;
  padding: 12px 35px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: none;
}
.offer-thin .offer .action .cta:hover, .offer-thin .offer .action .cta.on {
  background-color: #C0000D;
  border-color: #C0000D;
  color: #FFFFFF !important;
}
.offer-thin .offer .action .cta {
  min-width: inherit;
  padding: 9px 15px;
  transition-property: none;
  margin: 0 auto 2rem;
}

/*******************************************/
@media only screen and (max-width: 1200px) {
  .offer-thin .offer {
    width: 90%;
  }
}
/*******************************************/
@media only screen and (max-width: 992px) {
  .offer-thin .offer {
    width: 95%;
  }
  .offer-thin .offer .item {
    width: 29%;
  }
  .offer-thin .offer .item:first-child {
    width: 23%;
  }
  .offer-thin .offer .item.or {
    width: 8%;
  }
  .offer-thin .offer .item.action-wrapper {
    width: 34%;
  }
}
/*******************************************/
@media only screen and (max-width: 768px) {
  .offer-thin .offer .item {
    width: 26%;
  }
  .offer-thin .offer .item:first-child {
    width: 25%;
  }
  .offer-thin .offer .item.or {
    width: 9%;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .offer-thin .baseline {
    font-size: 1.7rem;
  }
  .offer-thin .offer {
    display: block;
    /*height: 25rem;*/
  }
  .offer-thin .offer .item {
    float: inherit;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 1.7rem 0 0 0;
  }
  .offer-thin .offer .item:first-child {
    width: 100%;
  }
  .offer-thin .offer .item.or {
    width: 11%;
    margin: 0 auto;
    height: auto;
  }
  .offer-thin .offer .item.action-wrapper {
    width: 100%;
    padding: 1rem 0 1rem 0;
  }
  .offer-thin .offer .item .content-wrapper .content .price {
    width: 110%;
  }
}
.reviews-three-column {
  padding: 3rem 2rem 0 2rem;
}
.reviews-three-column h2 {
  margin: 0 0 3rem 0;
  padding: 3rem 0 0 0;
}
.reviews-three-column .items {
  display: block !important;
  max-width: 93%;
  margin: 0 auto;
}
.reviews-three-column .items div.col:last-child div.item:last-child {
  margin-bottom: 0px;
}
.reviews-three-column .items .quoted:before {
  content: " ";
  top: -8px;
  left: -6.5rem;
  position: absolute;
  background: transparent url("../img/review/pic-quote-green.png") no-repeat 0 0;
  width: 65px;
  height: 45px;
}
.reviews-three-column .items .quoted:after {
  content: " ";
  right: -3.5rem;
  position: absolute;
  background: transparent url("../img/review/pic-quote-green.png") no-repeat 0 0;
  width: 65px;
  height: 45px;
  transform: rotate(180deg);
}
.reviews-three-column .items .item {
  display: flex;
  justify-content: center;
  width: 30%;
  float: left;
  /* ie9 */
  margin: 0rem 2rem 0;
  padding: 6rem 0;
}
.reviews-three-column .items .item:nth-child(3) {
  margin-right: 0;
}
.reviews-three-column .items .item.text-none {
  padding: 0rem 0;
}
.reviews-three-column .items .item.bulle-0 {
  background: transparent url("../img/review/bulle-0.png") no-repeat top center;
  background-size: contain;
}
.reviews-three-column .items .item.bulle-1 {
  background: transparent url("../img/review/bulle-1.png") no-repeat center center;
  background-size: contain;
}
.reviews-three-column .items .item.bulle-2 {
  background: transparent url("../img/review/bulle-2.png") no-repeat center center;
  background-size: contain;
  padding: 6rem 0 2rem;
}
.reviews-three-column .items .item.bulle-2 .content {
  max-width: 80%;
}
.reviews-three-column .items .item.bulle-3 {
  background: transparent url("../img/review/bulle-3.png") no-repeat center center;
  background-size: contain;
  margin-top: -7%;
}
.reviews-three-column .items .item.bulle-4 {
  background: transparent url("../img/review/bulle-4.png") no-repeat center center;
  background-size: contain;
}
.reviews-three-column .items .item.bulle-4 .content {
  max-width: 80%;
  margin: 0 0 0 4rem;
}
.reviews-three-column .items .item.bulle-none .content {
  max-width: 70%;
}
.reviews-three-column .items .item .content {
  position: relative;
  max-width: 60%;
  padding: 10px;
  margin: 0 0 0 0rem;
}
.reviews-three-column .items .item .content .title {
  font-size: 20px;
  margin: 0 0 1.5rem 0;
}
.reviews-three-column .items .item .content .title.quoted strong {
  font-size: 1.5rem;
  font-weight: 400;
}
.reviews-three-column .items .item .content .title strong {
  font-weight: 800;
}
.reviews-three-column .items .item .content .text {
  margin: 0 0 2rem 0;
  font-size: 17px;
  width: calc(100% + 5rem);
}
.reviews-three-column .items .item .content .firstname strong {
  font-size: 16px;
  font-weight: 700;
}
.reviews-three-column .items .item .content .cv {
  font-size: 13px;
  font-weight: 700;
}

/*******************************************/
@media only screen and (max-width: 1200px) {
  .reviews-three-column .items {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .reviews-three-column .items .item {
    margin: 0rem 1% 0;
  }
  .reviews-three-column .items .item .content .title {
    font-size: 1.7rem;
  }
  .reviews-three-column .items .item .content .text {
    font-size: 1.5rem;
  }
}
/*******************************************/
@media only screen and (max-width: 992px) {
  .reviews-three-column .items .item.bulle-3 {
    margin-top: -13%;
  }
}
/*******************************************/
@media only screen and (max-width: 768px) {
  .reviews-three-column .items {
    height: 100vw;
    max-height: 45rem;
    display: block;
    max-width: inherit;
  }
  .reviews-three-column .items .item {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }
  .reviews-three-column .items .item .content {
    margin: 10rem !important;
    max-width: 100%;
  }
  .reviews-three-column .items .item .content .title {
    font-size: 1.7rem;
    margin: 0 0 1.5rem 0;
  }
  .reviews-three-column .items .item .content .text {
    font-size: 1.7rem;
    margin: 0 0 2rem 0;
  }
  .reviews-three-column .items .item .content .firstname strong {
    font-size: 1.6rem;
  }
  .reviews-three-column .items .item .content .cv {
    font-size: 1.3rem;
  }
  .reviews-three-column .items .owl-nav {
    margin: -10rem 0 7rem 0;
    z-index: 2;
    position: absolute;
    width: 100%;
  }
  .reviews-three-column .items .owl-nav:after {
    content: " ";
    clear: both;
  }
  .reviews-three-column .items .owl-nav button {
    width: 40px;
    height: 40px;
    background: #FF6464;
    border-radius: 25px;
  }
  .reviews-three-column .items .owl-nav button span {
    font-size: 35px;
    color: #FFFFFF;
  }
  .reviews-three-column .items .owl-nav button.owl-prev {
    float: left;
    margin: 0 0 0 1.5rem;
  }
  .reviews-three-column .items .owl-nav button.owl-next {
    float: right;
    margin: 0 1.5rem 0 0;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .reviews-three-column .items {
    max-height: 34rem;
  }
  .reviews-three-column .items .quoted::after, .reviews-three-column .items .quoted::before {
    display: none;
  }
  .reviews-three-column .items .item.text-none .content {
    margin: 8rem 2rem !important;
  }
  .reviews-three-column .items .item .content {
    margin: 7rem !important;
  }
  .reviews-three-column .items .item .content .title {
    font-size: 1.4rem;
  }
  .reviews-three-column .items .item .content .text {
    font-size: 1.4rem;
  }
  .reviews-three-column .items .item .content .firstname strong {
    font-size: 1.3rem;
  }
  .reviews-three-column .items .item .content .cv {
    font-size: 1.2rem;
  }
  .reviews-three-column .items .owl-nav {
    margin: -14rem 0 7rem 0;
  }
}
/*******************************************/
@media only screen and (max-width: 414px) {
  .reviews-three-column .items .item .content {
    margin: 3rem 3rem !important;
  }
  .reviews-three-column .items .owl-nav {
    margin: -4rem 0 7rem 0;
  }
}
.rounded-box .coupon-promo {
  background: #FFFFFF;
  padding: 0 0.5rem;
}
.rounded-box .gift-list .items .gift {
  position: relative;
}
.rounded-box .gift-list .items .gift::after {
  display: none;
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(45deg);
  height: 25px;
  width: 12px;
  margin-left: 60%;
  border-bottom: 7px solid #10AC99;
  border-right: 7px solid #10AC99;
}
.rounded-box .gift-list .items .gift.checked::after {
  display: block;
}
.rounded-box .is-promo {
  position: absolute;
  top: -1.3rem;
  right: calc(5%);
}
.rounded-box .is-promo .is-promo-content {
  margin: 0;
  padding: 0rem 0.8rem;
  background: #E40413;
  /* transparent url($baseUrl + "/offer/promo-icon-red.png") no-repeat center center */
  background-size: contain;
  border: 0px solid black;
}
.rounded-box .is-promo .is-promo-content strong {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 700;
}

.offer-thin.rounded-box .offer {
  height: auto;
  padding: 2rem 0;
}
.offer-thin.rounded-box .offer .content {
  margin: 0 auto 4rem auto;
}
.offer-thin.rounded-box .offer .content p strong {
  font-size: 2.2rem;
}
.offer-thin.rounded-box .offer .content .items {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.offer-thin.rounded-box .offer .content .items .item.product {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #cdd6dd;
  border-radius: 1rem;
  background: #FFFFFF;
  min-width: 19rem;
}
.offer-thin.rounded-box .offer .content .items .item.product::after {
  display: none;
  content: " ";
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  transform: rotate(45deg);
  height: 25px;
  width: 12px;
  margin-left: 60%;
  border-bottom: 7px solid #10AC99;
  border-right: 7px solid #10AC99;
}
.offer-thin.rounded-box .offer .content .items .item.product.on {
  border-color: #00A493;
}
.offer-thin.rounded-box .offer .content .items .item.product.on::after {
  display: block;
}
.offer-thin.rounded-box .offer .content .items .item.product label.choice {
  padding: 1.5rem 2.5rem;
}
.offer-thin.rounded-box .offer .content .items .item.product label.choice::after, .offer-thin.rounded-box .offer .content .items .item.product label.choice::before {
  display: none;
}
.offer-thin.rounded-box .offer .content .items .item.or {
  height: auto;
  width: auto;
  margin: 1rem auto;
}
.offer-thin.rounded-box .offer .content .items .item.or .text {
  display: block;
  padding: 0 5rem;
  text-indent: -30rem;
  overflow: hidden;
}
.offer-thin.rounded-box .offer .content .items .item .content-wrapper .content {
  margin: 0 auto 0;
}
.offer-thin.rounded-box .offer .content .items .item .content-wrapper .content .description.top h5 {
  margin: 0 auto 1.5rem;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.1rem;
}
.offer-thin.rounded-box .offer .content .items .item .content-wrapper .content .description hr {
  height: 3px;
  width: 90%;
  border: 0;
  margin: 1rem auto 0;
  padding: 0;
  background: #00A493;
}
.offer-thin.rounded-box .offer .content .items .item .content-wrapper .content .price {
  font-weight: 700;
  font-size: 2rem;
}
.offer-thin.rounded-box .offer .gift-list p strong {
  font-size: 2.2rem;
}
.offer-thin.rounded-box .offer .item.action-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 0;
  margin: 0 auto;
}

.offer-star.rounded-box {
  padding: 0 0 3rem 0;
}
.offer-star.rounded-box .offer .item {
  height: auto;
  max-height: inherit;
  background-size: contain;
}
.offer-star.rounded-box .offer .item:hover .wrapper .content-wrapper > .content, .offer-star.rounded-box .offer .item.checked .wrapper .content-wrapper > .content {
  border-color: #00A493;
}
.offer-star.rounded-box .offer .item.checked .wrapper .content-wrapper > .content {
  position: relative;
}
.offer-star.rounded-box .offer .item.checked .wrapper .content-wrapper > .content::after {
  display: block;
  content: " ";
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  transform: rotate(45deg);
  height: 25px;
  width: 12px;
  margin-left: 60%;
  border-bottom: 7px solid #10AC99;
  border-right: 7px solid #10AC99;
}
.offer-star.rounded-box .offer .item.sharped {
  background-size: contain;
}
.offer-star.rounded-box .offer .item .wrapper {
  height: auto;
  max-height: inherit;
}
.offer-star.rounded-box .offer .item .wrapper .content-wrapper {
  min-width: 49%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-star.rounded-box .offer .item .wrapper .content-wrapper > .content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border: 0.4rem solid #cdd6dd;
  border-radius: 1rem;
  background: #FFFFFF;
  padding: 2rem 1.5rem;
}
.offer-star.rounded-box .offer .item .wrapper .content-wrapper > .content .description {
  text-align: center;
}
.offer-star.rounded-box .offer .item .wrapper .content-wrapper > .content .free-period h5 {
  margin: 0 auto 1.5rem;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
}
.offer-star.rounded-box .offer .item .wrapper .content-wrapper > .content .free-period hr {
  height: 3px;
  width: 90%;
  border: 0;
  margin: 1rem auto 0;
  padding: 0;
  background: #00A493;
}
.offer-star.rounded-box .offer .item .wrapper .content-wrapper > .content .detail {
  margin: 0;
}
.offer-star.rounded-box .offer .item .wrapper .content-wrapper > .content .price .then {
  display: block;
  margin: 1rem 0 0.5rem;
}

/*******************************************/
/*******************************************/
/*******************************************/
@media only screen and (max-width: 767px) {
  .offer-thin.rounded-box {
    display: block;
  }
  .offer-thin.rounded-box .offer {
    display: block;
  }
  .offer-thin.rounded-box .offer .content .items {
    display: block;
  }
  .offer-thin.rounded-box .offer .content .items .item {
    float: none;
  }
  .offer-thin.rounded-box .offer .item {
    float: none;
  }

  .offer-star.rounded-box .offer {
    margin: 1rem auto 0 auto;
  }
  .offer-star.rounded-box .offer .item {
    margin: 0 auto 4rem;
  }
  .offer-star.rounded-box .offer .item .wrapper {
    min-height: inherit;
  }
  .offer-star.rounded-box .offer .item:last-child {
    margin: 0 auto 0rem;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .offer-star.rounded-box .offer .item .wrapper .content-wrapper {
    width: 75%;
  }
}
/* red */
/* green */
/* button */
/* body font color */
/* field required */
/* grey */
/* cta pink */
/* cta white */
/* light blue */
/* grey */
.ma-maternelle-montessori [type=radio]:checked,
.ma-maternelle-montessori [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.ma-maternelle-montessori [type=radio]:checked + label,
.ma-maternelle-montessori [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 3.5rem;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}
.ma-maternelle-montessori [type=radio]:checked + label:before,
.ma-maternelle-montessori [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.9rem;
  height: 1.9rem;
  border: 2px solid #0F0F11;
  border-radius: 100%;
  background: #fff;
}
.ma-maternelle-montessori [type=radio]:not(:checked) + label:hover:before {
  border: 2px solid #E7E7E7;
}
.ma-maternelle-montessori [type=radio]:checked + label:before {
  border-color: #E7E7E7;
}
.ma-maternelle-montessori [type=radio]:checked + label:after,
.ma-maternelle-montessori [type=radio]:not(:checked) + label:after {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background: #E7E7E7;
  position: absolute;
  top: 0.4rem;
  left: 0.5rem;
  bottom: 0.4rem;
  margin: auto;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.ma-maternelle-montessori [type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.ma-maternelle-montessori [type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* red */
/* green */
/* button */
/* body font color */
/* field required */
/* grey */
/* cta pink */
/* cta white */
/* light blue */
/* grey */
.banner-top {
  text-align: center;
}
.banner-top .liserai-horizontal {
  display: block;
  height: 1rem;
  width: 19rem;
  background: transparent url("../img/liserai-horizontal.png") no-repeat center center;
  background-size: contain;
  margin: 0 auto 2rem;
}
.banner-top .logo-bayam {
  margin: 0 0 3rem 0;
}
.banner-top .title, .banner-top .slogan {
  width: 90%;
  margin: 0 auto 1rem;
}
.banner-top .title {
  font-size: 4rem;
}
.banner-top .slogan {
  margin-bottom: 3rem;
  font-size: 1.7rem;
}
.banner-top .video-container {
  border: 0px solid blue;
  margin: 0 auto 2rem;
  overflow: hidden;
}
.banner-top .video-container .banner {
  position: relative;
}
.banner-top .video-container .banner .banner__video {
  border: 0px solid darkorchid;
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  transform: translateX(-50%) translateY(0%);
  z-index: -1;
}
.banner-top .video-container .content {
  border: 0px solid chocolate;
  height: 40vw;
  max-height: 51rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-top .action {
  width: 52rem;
  margin: 0 auto 3rem auto;
}
.banner-top .action .item {
  float: left;
  width: 48%;
  margin: 0 auto;
}
.banner-top .action .cta {
  background-color: #E40413;
  border: 3px solid #E40413;
  border-radius: 40px;
  color: #FFFFFF !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  min-width: 160px;
  padding: 12px 35px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: none;
}
.banner-top .action .cta:hover, .banner-top .action .cta.on {
  background-color: #C0000D;
  border-color: #C0000D;
  color: #FFFFFF !important;
}
.banner-top .action .cta {
  min-width: inherit;
  padding: 12px 20px;
}
.banner-top .action .grey .cta {
  background-color: #F4F4F4;
  border: 3px solid #F4F4F4;
  border-radius: 40px;
  color: #0F0F11 !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  min-width: 160px;
  padding: 12px 35px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: none;
}
.banner-top .action .grey .cta:hover, .banner-top .action .grey .cta.on {
  background-color: #F4F4F4;
  border-color: #606060;
  color: #0F0F11 !important;
}
.banner-top .supported-devices {
  margin: 0 0 0rem;
}
.banner-top .supported-devices .text {
  margin: 0 0 2rem 0;
}
.banner-top .supported-devices .list-os .os {
  margin: 0 auto;
  padding: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-top .supported-devices .list-os .os li {
  width: 19%;
  float: left;
  margin: auto 1rem;
}
.banner-top .supported-devices .list-os .os li:last-child {
  margin-right: 0;
}
.banner-top .supported-devices .list-os .os li.linux {
  width: 15%;
}
.banner-top .supported-devices .list-os .os li.ios {
  width: 12%;
}
.banner-top .main-scene-static {
  text-align: center;
}
.banner-top .main-scene-static .img-mobile, .banner-top .main-scene-static .img-tablet, .banner-top .main-scene-static .img-desktop {
  margin: 0 auto;
  width: 100%;
}
.banner-top .main-scene-static .img-mobile, .banner-top .main-scene-static .img-tablet {
  display: none;
}

/*******************************************/
/*******************************************/
/*******************************************/
@media only screen and (max-width: 768px) {
  .banner-top .title {
    font-size: 2.2rem;
  }
  .banner-top .main-scene-wrapper .text {
    width: 90%;
  }
  .banner-top .main-scene-wrapper .tablet-big {
    width: 50%;
    top: 17%;
  }
  .banner-top .supported-devices .list-os .os {
    display: block;
    width: 90%;
  }
  .banner-top .supported-devices .list-os .os li img {
    max-width: inherit;
  }
  .banner-top .main-scene-static .img-desktop {
    display: none;
  }
  .banner-top .main-scene-static .img-tablet {
    display: block;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .banner-top .action {
    width: inherit;
    margin: 0 auto;
  }
  .banner-top .action .item {
    float: inherit;
    min-width: 19.5rem;
    width: inherit;
    margin: 0 auto 1rem auto;
  }
  .banner-top .action .item:last-child {
    margin: 0 auto;
  }
  .banner-top .main-scene-wrapper .text {
    height: 70vw;
  }
  .banner-top .main-scene-wrapper .tablet-big {
    width: 90%;
  }
  .banner-top .main-scene-wrapper .animation {
    /* text */
  }
  .banner-top .main-scene-wrapper .animation .ariol {
    top: 0%;
    left: 2%;
    width: 24vw;
  }
  .banner-top .main-scene-wrapper .animation .pob {
    top: 18%;
    left: 30%;
    width: 20vw;
  }
  .banner-top .main-scene-wrapper .animation .samsam {
    top: 25%;
    right: 24%;
    width: 23vw;
  }
  .banner-top .main-scene-wrapper .animation .meditation-yoga {
    top: 0%;
    right: 8%;
    width: 10vw;
  }
  .banner-top .main-scene-wrapper .animation .tomtom-nana {
    bottom: 7%;
    left: 6%;
    width: 24vw;
  }
  .banner-top .main-scene-wrapper .animation .jason-bombix-anatole-latuile {
    bottom: 5%;
    right: 1%;
    width: 30vw;
  }
  .banner-top .main-scene-wrapper .animation .histoires-audio, .banner-top .main-scene-wrapper .animation .docus-intertactifs, .banner-top .main-scene-wrapper .animation .coloriages {
    display: none;
  }
  .banner-top .main-scene-wrapper .animation .podcasts {
    width: 15%;
    height: 6%;
    left: 40%;
    top: 10%;
  }
  .banner-top .main-scene-wrapper .animation .jeux {
    width: 10%;
    height: 9%;
    right: 30%;
    top: 13%;
  }
  .banner-top .main-scene-wrapper .animation .yoga {
    width: 10%;
    height: 8%;
    right: 6%;
    top: 30%;
  }
  .banner-top .main-scene-wrapper .animation .dessin {
    width: 15%;
    height: 6%;
    right: 12%;
    bottom: 2%;
  }
  .banner-top .main-scene-wrapper .animation .serie {
    width: 12%;
    height: 11%;
    left: 25%;
    bottom: -5%;
  }
  .banner-top .main-scene-wrapper .animation .tutos {
    width: 15%;
    height: 6%;
    left: 5%;
    bottom: 30%;
  }
  .banner-top .main-scene-wrapper .animation .brico {
    width: 10%;
    height: 5%;
    left: 7%;
    top: 41%;
  }
  .banner-top .supported-devices {
    margin: 0 0 2rem;
  }
  .banner-top .main-scene-static .img-tablet {
    display: none;
  }
  .banner-top .main-scene-static .img-mobile {
    display: block;
  }
}
/*******************************************/
@media only screen and (max-width: 414px) {
  .banner-top {
    border: 1px solid blue;
  }
  .banner-top .supported-devices .list-os .os li {
    width: 25% !important;
    height: 2rem;
    text-align: left;
  }
  .banner-top .main-scene-wrapper .animation {
    /* text */
  }
  .banner-top .main-scene-wrapper .animation .ariol {
    top: -9%;
    left: 1%;
    width: 24vw;
  }
  .banner-top .main-scene-wrapper .animation .pob {
    top: 16%;
    left: 30%;
    width: 20vw;
  }
  .banner-top .main-scene-wrapper .animation .samsam {
    top: 25%;
    right: 24%;
    width: 28vw;
  }
  .banner-top .main-scene-wrapper .animation .meditation-yoga {
    top: -6%;
    right: 5%;
    width: 12vw;
  }
  .banner-top .main-scene-wrapper .animation .tomtom-nana {
    bottom: 0%;
    left: 5%;
    width: 32vw;
  }
  .banner-top .main-scene-wrapper .animation .jason-bombix-anatole-latuile {
    bottom: 6%;
    right: 1%;
    width: 35vw;
  }
  .banner-top .main-scene-wrapper .animation .histoires-audio, .banner-top .main-scene-wrapper .animation .docus-intertactifs, .banner-top .main-scene-wrapper .animation .coloriages {
    display: none;
  }
  .banner-top .main-scene-wrapper .animation .podcasts {
    width: 24%;
    height: 9%;
    left: 32%;
    top: 3%;
  }
  .banner-top .main-scene-wrapper .animation .jeux {
    width: 12%;
    height: 13%;
    right: 24%;
    top: 5%;
  }
  .banner-top .main-scene-wrapper .animation .yoga {
    width: 15%;
    height: 12%;
    right: 2%;
    top: 30%;
  }
  .banner-top .main-scene-wrapper .animation .dessin {
    width: 18%;
    height: 9%;
    right: 12%;
    bottom: 0%;
  }
  .banner-top .main-scene-wrapper .animation .serie {
    width: 19%;
    height: 15%;
    left: 35%;
    bottom: -6%;
  }
  .banner-top .main-scene-wrapper .animation .tutos {
    width: 19%;
    height: 10%;
    left: 2%;
    bottom: 35%;
  }
  .banner-top .main-scene-wrapper .animation .brico {
    width: 15%;
    height: 8%;
    left: 5%;
    top: 36%;
  }
}
.carousel-vertical {
  background: #eaf2f5;
}
.carousel-vertical .owl-stage {
  overflow: hidden;
}
.carousel-vertical .owl-stage-outer {
  overflow: hidden;
}
.carousel-vertical-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* ie */
}
.carousel-vertical-wrapper:after {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  content: "";
}
.carousel-vertical-wrapper .col {
  display: inline-block;
  vertical-align: middle;
  background: transparent;
  position: relative;
}
.carousel-vertical-wrapper .col.text {
  width: 38%;
}
.carousel-vertical-wrapper .col.media {
  width: 62%;
  z-index: 2;
  overflow: hidden;
}
.carousel-vertical-wrapper .col h2 {
  margin: 10% auto 0;
  text-align: left;
  font-size: 28px;
  width: 88%;
}
.carousel-vertical-wrapper .col .content {
  width: 85%;
  margin: 2rem auto 2rem auto;
}
.carousel-vertical-wrapper .col .content .navigation {
  background: transparent;
}
.carousel-vertical-wrapper .col .content .navigation li {
  cursor: pointer;
  padding: 0 0 0 0rem;
  margin: 0 0 2rem 0;
  opacity: 0.4;
}
.carousel-vertical-wrapper .col .content .navigation li:last-child {
  margin-bottom: 0;
}
.carousel-vertical-wrapper .col .content .navigation li.active {
  background: transparent url("../img/arrow-right.png") no-repeat 0 0;
  opacity: 1;
}
.carousel-vertical-wrapper .col .content .navigation li .title {
  font-size: 20px;
  font-weight: 800;
}
.carousel-vertical-wrapper .col .content .navigation li .description {
  font-size: 16px;
  font-weight: 500;
}
.carousel-vertical-wrapper .col .idea-wrapper {
  width: 100%;
  float: left;
}
.carousel-vertical-wrapper .animation-wrapper {
  float: inherit;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  overflow-y: hidden;
  height: 100%;
  width: 62%;
}
.carousel-vertical-wrapper .animation-wrapper .tablet {
  background: transparent;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0%;
  width: 70%;
  margin: auto;
}
.carousel-vertical-wrapper .animation-wrapper .tablet-screen {
  background: transparent;
  position: absolute;
  left: 0rem;
  right: 0rem;
  top: 12.5rem;
  bottom: 0;
  width: 100%;
  margin: auto;
  height: 54%;
}
.carousel-vertical-wrapper .animation-wrapper img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px solid yellowgreen;
}

/*******************************************/
@media only screen and (max-width: 1200px) {
  .carousel-vertical-wrapper .col h2 {
    font-size: 2.4rem;
    margin: 22% auto 0;
    width: 95%;
  }
  .carousel-vertical-wrapper .col .content {
    width: 90%;
  }
  .carousel-vertical-wrapper .col .content .navigation li {
    margin: 0px 0 1.5rem 0;
  }
  .carousel-vertical-wrapper .col .content .navigation li .title {
    font-size: 1.9rem;
  }
  .carousel-vertical-wrapper .col .content .navigation li .description {
    font-size: 1.6rem;
  }
}
/*******************************************/
@media only screen and (max-width: 992px) {
  .carousel-vertical-wrapper .col.text {
    width: 40%;
  }
  .carousel-vertical-wrapper .col.media {
    width: 60%;
  }
  .carousel-vertical-wrapper .col h2 {
    font-size: 1.8rem;
    margin: 20% auto 0;
  }
  .carousel-vertical-wrapper .col .content {
    width: 90%;
  }
  .carousel-vertical-wrapper .col .content .navigation li {
    margin: 0 0 1rem 0;
  }
  .carousel-vertical-wrapper .col .content .navigation li .title {
    font-size: 1.5rem;
  }
  .carousel-vertical-wrapper .col .content .navigation li .description {
    font-size: 1.3rem;
  }
  .carousel-vertical .animation-wrapper {
    right: 4%;
  }
}
/*******************************************/
@media only screen and (max-width: 768px) {
  .carousel-vertical-wrapper {
    display: block;
  }
  .carousel-vertical-wrapper .col {
    display: block;
    height: auto;
  }
  .carousel-vertical-wrapper .col.media {
    width: 95%;
    margin: 0 auto;
  }
  .carousel-vertical-wrapper .col.text {
    width: 64%;
    margin: 10rem auto 0;
  }
  .carousel-vertical-wrapper .col h2 {
    position: relative;
  }
  .carousel-vertical-wrapper .col .content {
    margin: 2rem auto;
  }
  .carousel-vertical-wrapper .animation-wrapper {
    float: inherit;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
  }
  .carousel-vertical-wrapper .animation-wrapper .tablet {
    width: 76%;
  }
  .carousel-vertical-wrapper .animation-wrapper .tablet-screen {
    top: 0;
  }
  .carousel-vertical-wrapper .animation-wrapper .star-big {
    left: -4%;
    width: 45%;
  }
  .carousel-vertical-wrapper .animation-wrapper .lightning {
    right: 10%;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .carousel-vertical-wrapper .col.text {
    width: 90%;
    margin: 3rem auto 0;
  }
  .carousel-vertical-wrapper .animation-wrapper {
    top: 55%;
  }
  .carousel-vertical-wrapper .animation-wrapper .tablet {
    width: 76%;
  }
  .carousel-vertical-wrapper .animation-wrapper .star-big {
    left: -4%;
  }
  .carousel-vertical-wrapper .animation-wrapper .lightning {
    right: 10%;
  }
}
/*******************************************/
@media only screen and (max-width: 414px) {
  .carousel-vertical-wrapper .animation-wrapper {
    top: 62%;
  }
  .carousel-vertical-wrapper .animation-wrapper .star-big {
    top: 35%;
  }
  .carousel-vertical-wrapper .animation-wrapper .lightning {
    bottom: 20%;
  }
}
/* red */
/* green */
/* button */
/* body font color */
/* field required */
/* grey */
/* cta pink */
/* cta white */
/* light blue */
/* grey */
.features .section-header {
  width: 51%;
  margin: 6rem auto 4rem auto;
}
.features .section-header .title {
  margin: 0 auto 1rem;
}
.features .section-header .description {
  text-align: center;
  font-size: 16px;
}
.features .items {
  display: flex;
  justify-content: space-around;
  align-items: start;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto 4rem auto;
  text-align: center;
}
.features .items .item {
  display: flex;
  flex-direction: column;
  float: left;
  /* ie9 */
  width: 19%;
  text-align: left;
  margin: 0px 1% 0 0;
}
.features .items .item .title,
.features .items .item .text,
.features .items .item .btn-more {
  margin: 0 0 0 0;
}
.features .items .item .title {
  margin: 0 0 2rem;
  display: flex;
  align-items: start;
  min-height: 7rem;
  justify-content: start;
}
.features .items .item .title h3 {
  align-self: center;
  font-size: 26px;
  text-align: left;
}
.features .items .item .text {
  flex-shrink: 1;
  flex-grow: 1;
  font-size: 16px;
}
.features .items .item .btn-more {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0px;
  margin: 15px 0 0 15px;
  text-transform: uppercase;
  text-align: left;
}
.features .items .item .btn-more:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  margin: 0px auto 0 auto;
  background: none repeat scroll 0 0 transparent;
  content: "";
  display: block;
  height: 2px;
  background: #E40413;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 85%;
}
.features .items .item .btn-more:hover:after {
  width: 0;
}
.features .items .item .btn-more:after {
  margin: 0;
  max-width: 110px;
}
.features .items .item .btn-more a {
  display: block;
  height: 25px;
  width: auto;
  overflow: hidden;
}
.features .items .item .btn-more a:hover .chevron {
  display: inline-block;
  animation: fadeOutRight 1s;
  animation-iteration-count: 1;
}
.features .items .item .image {
  position: relative;
  text-align: center;
}
.features .items .item .image::after {
  position: absolute;
  top: 10%;
  left: 1rem;
  z-index: 1;
  display: block;
  content: " ";
  border-radius: 6rem;
  width: 11rem;
  height: 11rem;
}
.features .items .item .image.blue::after {
  background: #629ED5;
}
.features .items .item .image.yellow::after {
  background: #F9DB61;
}
.features .items .item .image.pink::after {
  background: #F3797D;
}
.features .items .item .image.green::after {
  background: #49BEA3;
}
.features .items .item .image img {
  max-width: 15rem;
  position: relative;
  z-index: 2;
}
.features .items .item .image img:hover {
  animation: shake 0.5s;
  animation-iteration-count: 1;
}
.features .items div:last-child {
  float: right;
  /* ie9 */
  margin: 0;
}
.features .cta {
  margin: 5rem 0 3rem;
}

/*******************************************/
/*******************************************/
@media only screen and (max-width: 1200px) {
  .features .section-header {
    width: 65%;
  }
}
/*******************************************/
@media only screen and (max-width: 992px) {
  .features .section-header {
    width: 75%;
  }
  .features .items .item {
    width: 32%;
    margin: 0 2% 4rem 0;
  }
}
/*******************************************/
@media only screen and (max-width: 768px) {
  .features .section-header {
    width: 90%;
  }
  .features .items {
    display: block;
  }
  .features .items .item {
    float: none;
    width: 40%;
    margin: 0 auto 3rem;
    border-radius: 1rem;
    box-shadow: 0rem 0.5rem 2rem rgba(0, 0, 0, 0.075);
    padding: 2rem 3rem;
  }
  .features .items .item .title {
    min-height: inherit;
  }
  .features .items .item .title h3 {
    font-size: 1.9rem;
  }
  .features .items .item .text {
    font-size: 1.5rem;
  }
  .features .items div:last-child {
    float: none;
    margin: 0 auto;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .features .section-header .title {
    font-size: 2.1rem;
  }
  .features .items {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .features .items .item {
    display: inline-block;
    text-align: left;
    float: none;
    width: 75%;
    margin: 0 auto 3rem;
    overflow: hidden;
  }
  .features .items .item .image, .features .items .item .title, .features .items .item .text {
    margin: 0 auto 2.5rem;
  }
  .features .items .item .image {
    text-align: center;
  }
}
/* red */
/* green */
/* button */
/* body font color */
/* field required */
/* grey */
/* cta pink */
/* cta white */
/* light blue */
/* grey */
.col-3-image {
  background: #eaf2f5;
  padding: 6rem 0 0 0;
}
.col-3-image .section-header {
  width: 90%;
  margin: 0 auto 4rem auto;
}
.col-3-image .section-header .title {
  margin: 0 auto 1rem;
}
.col-3-image .section-header .description {
  text-align: center;
  font-size: 16px;
}
.col-3-image .items {
  display: flex;
  padding: 0px 0px 5rem;
  margin: 0 auto;
  text-align: center;
  align-items: stretch;
  justify-content: space-between;
  width: 95%;
}
.col-3-image .items .item {
  position: relative;
  flex-basis: 28%;
  margin: 0;
}
.col-3-image .items .item .content {
  position: relative;
}
.col-3-image .items .item .content .title,
.col-3-image .items .item .content .text {
  text-align: left;
}
.col-3-image .items .item .content .title {
  margin: 0 0 1.5rem;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: start;
}
.col-3-image .items .item .picture {
  z-index: 1;
  position: relative;
  width: 18rem;
  margin: 0 auto 2.5rem;
  border-radius: 2rem;
  padding: 2rem;
}
.col-3-image .items .item .picture.blue {
  background: #629ED5;
}
.col-3-image .items .item .picture.yellow {
  background: #F9DB61;
}
.col-3-image .items .item .picture.pink {
  background: #F3797D;
}
.col-3-image .items .item .picture.green {
  background: #49BEA3;
}
.col-3-image .items .item .picture img {
  height: 10rem;
}
.col-3-image .items div:last-child {
  margin: 0;
}

/*******************************************/
/*******************************************/
@media only screen and (max-width: 992px) {
  .col-3-image .items .item .content .title h3 {
    font-size: 1.8rem;
  }
}
/*******************************************/
@media only screen and (max-width: 768px) {
  .col-3-image {
    padding: 5rem 0 0 0;
  }
  .col-3-image .items {
    width: 95%;
  }
  .col-3-image .items .item {
    width: 29%;
    margin: 0px 6% 0 0;
  }
  .col-3-image .items .item .picture {
    width: 70%;
    max-width: 18rem;
    text-align: center;
  }
  .col-3-image .items .item .content .title h3 {
    font-size: 1.8rem;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .col-3-image .items {
    display: block;
  }
  .col-3-image .items .item {
    display: inline-block;
    text-align: left;
    width: 100%;
    margin: 0 auto 3rem;
    float: none;
  }
  .col-3-image .items .item .content .title {
    max-height: 10rem;
    margin-bottom: 0.5rem;
  }
  .col-3-image .items .item .content .text {
    margin: 0;
  }
  .col-3-image .items div:last-child {
    margin: 0 auto;
    float: none;
  }
}
.methodology .liserai-horizontal {
  display: block;
  height: 1rem;
  width: 19rem;
  background: transparent url("../img/liserai-horizontal.png") no-repeat center center;
  background-size: contain;
  margin: 0 auto 2rem;
}
.methodology .wrapper {
  margin: 1rem auto;
}
.methodology .wrapper .section-header {
  width: 51%;
  margin: 6rem auto 4rem auto;
}
.methodology .wrapper .section-header .title {
  margin: 0 auto 1rem;
}
.methodology .wrapper .section-content {
  text-align: center;
}
.methodology .wrapper .section-content .title {
  margin: 1rem auto;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1E90FF;
}
.methodology .wrapper .section-content .items {
  display: flex;
  justify-content: space-around;
  align-items: start;
  width: 75%;
  margin: 0 auto;
}
.methodology .wrapper .section-content .items .item {
  flex-basis: 20%;
}
.methodology .wrapper .section-content .items .item .picture {
  display: block;
  background: #1E90FF;
  border-radius: 50%;
  height: 15rem;
  width: 15rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.methodology .wrapper .section-content .items .item .title {
  font-size: 2rem;
  font-weight: 400;
  color: #0F0F11;
}

.supported-platforms {
  overflow: hidden;
  background: #eaf2f5;
}
.supported-platforms .content {
  width: 90%;
  margin: 0 auto;
  padding: 0px 0 4rem;
}
.supported-platforms .content .media, .supported-platforms .content .description {
  width: 49%;
  float: left;
}
.supported-platforms .content .media {
  text-align: center;
}
.supported-platforms .content .media img {
  max-width: inherit;
}
.supported-platforms .content .media .device {
  width: 100%;
}
.supported-platforms .content .description {
  z-index: 2;
  position: relative;
  padding: 2rem 0 0 0;
}
.supported-platforms .content .description .device {
  clear: both;
  margin: 0 0 2.5rem 2rem;
}
.supported-platforms .content .description .device .text {
  font-size: 20px;
  margin: 0 0 0.8rem 0;
}
.supported-platforms .content .description .device .list-os {
  background: transparent url("../img/liserai-vertical-sm.png") no-repeat 0 0;
  padding: 0 0 0 3rem;
  background-size: contain;
}
.supported-platforms .content .description .device .list-os .os li {
  display: flex;
  align-items: center;
  float: left;
  margin: 0 2.5rem 0 0;
  height: 4rem;
}

/*******************************************/
/*******************************************/
/*******************************************/
@media only screen and (max-width: 1200px) {
  .supported-platforms .content {
    width: 95%;
  }
  .supported-platforms .content .description .device {
    margin: 0 0 2.5rem 1rem;
  }
  .supported-platforms .content .description .device .list-os .os li {
    margin: 0 1.5rem 0 0;
  }
  .supported-platforms .content .description .device .list-os .os li:last-child {
    margin: 0;
  }
}
/*******************************************/
@media only screen and (max-width: 992px) {
  .supported-platforms .content .description .device .list-os .os li img {
    max-width: 9.5rem;
  }
}
/*******************************************/
@media only screen and (max-width: 768px) {
  .supported-platforms .content {
    padding: 0 0 2rem;
  }
  .supported-platforms .content .media, .supported-platforms .content .description {
    float: inherit;
    margin: 0 auto;
    width: 100%;
  }
  .supported-platforms .content .media .gimmick {
    width: 75vw;
  }
  .supported-platforms .content .media .device {
    top: 0;
  }
  .supported-platforms .content .description .device {
    margin: 0 0 2.5rem 15%;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .supported-platforms .content .description .device {
    margin: 0 0 2.5rem 5%;
  }
}
/*******************************************/
@media only screen and (max-width: 414px) {
  .supported-platforms .content {
    padding: 0;
  }
  .supported-platforms .content .description .device {
    margin: 0 0 2.5rem 1%;
  }
  .supported-platforms .content .description .device .list-os .os li img {
    max-width: 8.5rem;
  }
}
.columns .column.main {
  overflow: hidden;
}

.category-cms {
  display: block;
  overflow: hidden;
}

body.catalog-category-view .columns {
  display: none;
}

.ui-dialog {
  top: inherit;
  border: none;
  width: 100%;
}
.ui-dialog .ui-dialog-content {
  position: absolute;
  border: 0.1rem solid #e7e7e7;
  padding: 0rem;
  background: #FFFFFF;
  /* overflow: inherit; */
}
.ui-dialog .block-customer-login-content.ui-dialog-content {
  padding: 2rem;
}

.ui-widget {
  font-family: "Museo Sans";
}

.ui-widget.ui-widget-content {
  border: inherit;
}

.columns {
  display: block;
}

.clearfix:before,
.clearfix:after {
  line-height: 0;
  content: "";
  display: block;
  height: 0;
}

.clearfix:after {
  clear: both;
}

.line-through {
  text-decoration: line-through;
}

.rounded-box .is-promo {
  position: absolute;
  top: -1.3rem;
  right: 0;
  left: 0;
  width: 86%;
  margin: auto;
  text-align: center;
  min-width: 16.6rem;
}

#offer-star-item-0-0 {
  position: relative;
}
#offer-star-item-0-0:after {
  display: block;
  content: "OU";
  position: absolute;
  right: -10%;
  font-size: 2.1rem;
  font-weight: 600;
}

.bc-adcpopin .popin-heading .popin-items .product-item .product-item-photo {
  flex: 0 0 25%;
}
.bc-adcpopin .actions a {
  cursor: pointer;
}

.ma-maternelle-montessori {
  max-width: 128rem;
  margin: 0 auto;
  color: #0F0F11;
}
.ma-maternelle-montessori a {
  text-decoration: none;
  color: #0F0F11;
}
.ma-maternelle-montessori ul, .ma-maternelle-montessori ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ma-maternelle-montessori h1, .ma-maternelle-montessori h2, .ma-maternelle-montessori h3, .ma-maternelle-montessori h4, .ma-maternelle-montessori h5, .ma-maternelle-montessori h6 {
  margin: 0;
  padding: 0;
}
.ma-maternelle-montessori h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
}
.ma-maternelle-montessori h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
}
.ma-maternelle-montessori h4 {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
}
.ma-maternelle-montessori section {
  border: 0px solid red;
}
.ma-maternelle-montessori hr {
  height: 8px;
  background: #FFEC00;
  width: 58px;
  border: 0;
}
.ma-maternelle-montessori .chevron {
  float: none;
  margin: 0;
}
.ma-maternelle-montessori .chevron:before {
  border-color: #E40413;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 0.45em;
  left: 0.15em;
  position: relative;
  top: 6px;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 0.45em;
}
.ma-maternelle-montessori .chevron.right:before {
  left: 0;
  transform: rotate(45deg);
}
.ma-maternelle-montessori .chevron.bottom:before {
  top: 0;
  transform: rotate(135deg);
}
.ma-maternelle-montessori .chevron.left:before {
  left: 0.25em;
  transform: rotate(-135deg);
}

/*******************************************/
/*******************************************/
/*******************************************/
@media only screen and (max-width: 768px) {
  .bayam h1 {
    font-size: 3.5rem;
  }
}
/*******************************************/
@media only screen and (max-width: 767px) {
  #offer-star-item-0-0 {
    margin: 0 auto 6rem;
  }
  #offer-star-item-0-0:after {
    right: 0;
    left: 0;
    margin: auto;
    bottom: -4rem;
  }

  .bc-adcpopin .popin-heading .popin-items .product-item {
    display: flex;
  }
  .bc-adcpopin .popin-heading .popin-items .product-item .product-item-photo {
    flex: 0 0 auto;
  }
  .bc-adcpopin .popin-heading .popin-items .product-item .product-item-photo .product-image-container {
    display: inline-block;
    text-align: left;
  }
  .bc-adcpopin .popin-heading .popin-items .product-item .product-item-photo .product-image-container .-product-image-wrapper {
    width: auto;
    display: block;
    margin: 0px auto;
  }
  .bc-adcpopin .popin-heading .popin-items .product-item .product-item-details {
    display: block;
  }
}
/*******************************************/
@media only screen and (max-width: 576px) {
  .bayam h1 {
    font-size: 2.7rem;
  }
  .bayam h2 {
    font-size: 2.5rem;
  }
  .bayam h4 {
    font-size: 2.1rem;
  }
  .bayam .section-bottom {
    height: 4rem;
  }
}
/*******************************************/
@media only screen and (max-width: 414px) {
  .bayam h1 {
    font-size: 2.2rem;
  }
  .bayam h2 {
    font-size: 2.1rem;
  }
  .bayam h4 {
    font-size: 2rem;
  }
}
