/* NEW STYLES */
body,
html {
	width: 100%;
	height: 100%;
	font-family: "Montserrat", sans-serif;
	background-color: #000000;
	font-size: 0.6em;
	color: #FFFFFF;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain
}

main {
    height: 92%;
}

main .container {
    max-width: 480px;
    margin: 0 auto;
}

/***/

header {
    background-color: #000;
}

header .container {
    max-width: 480px;
    margin: 0 auto;
}

ul#step_nav {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

ul#step_nav li {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 2.75em;
    text-transform: uppercase;
    font-weight: 300;
    padding: 15px 25px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

ul#step_nav li[data-selected="true"] {
    background-color: #FFFFFF;
    color: #000000;
    position: relative;
}

ul#step_nav li[data-selected="true"]:before,
ul#step_nav li[data-selected="true"]:after {
    content: "";
    position: absolute;
    top: 0;
    width: 20px;
    height: 100%;
    background: white; /* couleur du fond */
    -webkit-transform: skewX(-20deg);
        -ms-transform: skewX(-20deg);
            transform: skewX(-20deg);
}

ul#step_nav li[data-selected="true"]:before {
    left: -10px;
}

ul#step_nav li[data-selected="true"]:after {
    right: -10px;
}

/***/

.step.preview .container,
.step.final .container {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}

.step.preview .container img {
    /* width: 100%;
    max-width: 480px; */
    /* transform: translateX(-25%) translateY(70%); */
    rotate: -50deg;
    pointer-events: auto;
    margin: 0 auto;
    display: block;
    height: 100px;
    width: auto;
    margin-left: -50%;
}

.step.final .container img {
    /* width: 100%; */
    /* max-width: 480px; */
    /* transform: translateX(-25%) translateY(70%); */
    rotate: -45deg;
    pointer-events: auto;
    margin: 0 auto;
    display: block;
    height: 100px;
    width: auto;
    margin-left: -50%;
}

.step.preview .container img.rotate_1,
.step.final .container img.rotate_1 {
    position: absolute;
    scale: 1 -1;
    z-index: -1;
}

.step.preview .container img.rotate_1 {
    rotate: 130deg;
}

.step.final .container img.rotate_1 {
    rotate: 135deg;
}

/***/

.global_container {
    height: 100%;
    /* height: 100dvh; /* IMPORTANT pour mobile */
}

/* track horizontal */
#steps {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-transition: -webkit-transform 300ms ease;
    transition: -webkit-transform 300ms ease;
    -o-transition: transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
    will-change: transform;
}

.step .container {
    margin: 3px auto;
}



/* stepper layout */
.stepper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

/* viewport scroll */
.viewport {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  height: 100%;
}

/* steps */
.step {
  min-width: 100%;
  /* height: 100%; */
  overflow-y: auto;
  /* padding: 20px; */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

/* footer sticky */
/* .footer {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 10px;
  padding: 12px;
  background: white;
  border-top: 1px solid #eee;

  padding-bottom: calc(12px + env(safe-area-inset-bottom));
} */

/* UX */
button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/***/

.vertical_choice_list{
    display: grid;
    grid-auto-rows: 30vh;
    height: -webkit-calc(100vh - 125px);
    height: calc(100vh - 125px);
}

.vertical_choice_list .choice {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border: 3px solid transparent;
}

.vertical_choice_list .choice input[type="radio"] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    display: none;
}

.vertical_choice_list .choice .choice_container {
    height: 100%;
}

.vertical_choice_list .choice .choice_title {
    font-size: 3.5em;
    font-weight: 300;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    left: -30%;
    top: 45%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    word-break: break-all;
}

.vertical_choice_list .choice:not(.selected) .choice_title {
    color: #978988;
}

.vertical_choice_list .choice .choice_img {
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-left: auto;
}

.vertical_choice_list .choice .choice_img_container {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background: -o-radial-gradient(30% 40%, circle, rgba(255,255,255,0.08), transparent 40%),
              -o-radial-gradient(70% 60%, circle, rgba(255,255,255,0.05), transparent 50%),
              -o-radial-gradient(50% 50%, circle, rgba(255,255,255,0.03), transparent 60%),
              #0a0a0a;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08), transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(255,255,255,0.05), transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03), transparent 60%),
              #0a0a0a;
}

.vertical_choice_list .choice .choice_img img {
    max-width: 140%;
    width: 140%;
    max-height: 100%;
    display: block;
    margin-right: -50%;
    margin-left: auto;
    z-index: 1;
}

.vertical_choice_list .choice.selected {
    border-color: #FFFFFF;
    position: relative;
    /* overflow: hidden; */
}

/* .vertical_choice_list .choice.selected .choice_container .choice_img .choice_img_container:after {
    position: absolute;
    content: "";
    width: 100%;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    opacity: 1.6;
    height: 120%;
    background-color: #fff;
    top: inherit;
    left: -20%;
    bottom: -117%;
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
} */

.vertical_choice_list .choice.selected:before,
.vertical_choice_list .choice.selected:after {
    content: "";
    width: 0;
    height: 0;
    left: -webkit-calc(50% - 10px);
    left: calc(50% - 10px);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
}

.vertical_choice_list .choice.selected:before {
    top: 0;
    border-top: 10px solid #fff;
}

.vertical_choice_list .choice.selected:after {
    bottom: 0;
    border-bottom: 10px solid #fff;
}

/***/

#tattoos_list .choice {
    display: none;
    height: 100%;
}

/***/

#recapConfig {
    display: none;
    position: absolute;
    top: -80%;
    width: 100%;
    text-align: center;
}

#recapConfig span {
    display: block;
    line-height: 1.5;
}

#recapConfig #recapConfigModel {
    font-size: 6em;
    font-weight: 700;
}

#recapConfig #recapConfigTattoo {
    font-weight: 300;
    font-size: 4em;
}

#mobile_fixed_bar {
    position: absolute;
    right: 10%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 25px;
    min-width: 500px;
}

#mobile_fixed_bar button {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    background: none;
    cursor: pointer;
}

#mobile_fixed_bar #contener-retourner-txt {
    margin-bottom: 25px;
    cursor: pointer;
    /* position: fixed;
    left: 35%;
    top: 35%;
    text-align: center;
    line-height: 1.3; */
}

#mobile_fixed_bar #contener-retourner-txt img {
    /* width: 45px; */
    width: 32px;
    height: 100%;
    margin-bottom: 10px;
}

#mobile_fixed_bar #contener-retourner-txt #txt-retourner {
    font-weight: 300;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

#mobile_fixed_bar #show_config {
    display: block;
    width: 20%;
    height: 100%;
    background: url(/mobile2/img/oeil.svg) no-repeat center top / 42px;
    color: #FFFFFF;
    padding-top: 30px;
    margin: 0 auto 25px auto;
    max-width: 85%;
    font-size: 2em;
    font-weight: 400;
    text-transform: uppercase;
}

#mobile_fixed_bar #prev_step {
    width: 40px;
    height: 40px;
    position: fixed;
    left: 10%;
    bottom: 15%;
    background-image: url(/mobile2/img/fleche.svg);
}

#mobile_fixed_bar #next_step {
    padding: 8px 25px;
    border: 1px solid #fff;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    font-size: 2.5em;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.35;
    min-width: 230px;
}

#mobile_fixed_bar #next_step > * {
    display: block;
    text-align: center;
}

#mobile_fixed_bar #next_step strong {
    font-weight: 600;
}

#mobile_fixed_bar #currentPrice {
    font-size: 3rem;
    text-align: center;
    padding-top: 40px;
}

/***/

#currentProductInfosTable {
    position: fixed;
    bottom: 5%;
    right: 2%;
    border-collapse: collapse;
}

#currentProductInfosTable tr > * {
    padding: 15px;
    font-size: 1em;
    border: 1px solid #FFFFFF;
    text-align: center;
}

#currentProductInfosTable tr > td {
    padding: 20px 15px;
}

/***/

@media screen and (max-height:720px) {
    .step.preview .container img,
    .step.final .container img {
        height: 85px;
        margin-left: -30%;
    }
}

@media screen and (max-width:768px) {
    main .container {
        width: 100%;
    }
    ul#step_nav {
        overflow: hidden;
    }
    ul#step_nav li {
        font-size: 2em;
        padding: 12px;
        width: 100%;
        margin: 0 auto;
        display: inline-block;
    }
    body {
        padding-top: 50px !important;
    }
    /* .topbarspecial-btn strong {
        font-size: 11px;
        white-space: normal;
    } */
    #steps {
        height: 80%;
    }
    .viewport {
        /* height: 180%; */
    }
    #step-1.preview .container img,
    #step-4.final .container img {
        height: auto;
        margin-left: -55px;
        /* transform: none; */
        margin-top: 30px;
        max-width: 100%;
        margin: 0 auto;
    }

    #recapConfig {
        top: auto;
        bottom: 100%;
    }

    #recapConfig #recapConfigModel {
        font-size: 4.5em;
        font-weight: 700;
    }

    #recapConfig #recapConfigTattoo {
        font-weight: 300;
        font-size: 3em;
    }
	#mobile_fixed_bar {
        right: 0;
        bottom: 0;
        width: 100%;
        position: fixed;
        padding-left: 0;
        background-color: #000000;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        min-width: 0;
    }
    #mobile_fixed_bar #prev_step {
        left: 5%;
        bottom: 2%;
    }
    #mobile_fixed_bar #next_step {
        position: fixed;
        bottom: 2%;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    #mobile_fixed_bar #show_config {
        height: auto;
        background-size: 32px;
        margin-bottom: 0;
        position: fixed;
        bottom: 2%;
        right: 0;
    }
    #mobile_fixed_bar #contener-retourner-txt{
        margin-bottom: 0;
        position: absolute;
        right: 3%;
        bottom: 17%;
        width: 15%;
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    #mobile_fixed_bar #contener-retourner-txt #txt-retourner {
        font-size: 11px;
    }
    #mobile_fixed_bar #contener-retourner-txt img {
        width: 24px;
        margin-bottom: 0;
        margin-top: 10px;
    }
    #currentPrice {
        margin-bottom: 50px;
    }
    #mobile_fixed_bar > .container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }
    #mobile_fixed_bar #currentPrice {
        padding: 15px 0;
    }
    .step.preview .container, .step.final .container {
        height: 70%;
    }
    .vertical_choice_list {
        grid-auto-rows: 25vh;
        height: 70%;
        /* overflow: hidden; */
    }
    #currentProductInfosTable {
        display: none;
    }
    .vertical_choice_list .choice {
        margin: 0 3px;
    }
    .vertical_choice_list .choice .choice_img {
        height: 99%; /* hack */
    }
    .vertical_choice_list .choice .choice_title {
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        position: static;
        margin-bottom: -50px;
    }
    #nav_mobile {
        width: 75% !important;
    }
}

/*******************/


/***************
** STYLES CSS **
***************/

.visible {
	overflow: visible
}

.hidden {
	overflow: hidden;
}

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

.trans_page {
	-webkit-transition: left 0.2s linear;
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.display_none {
	display: none !important;
}

.app-body {
	overflow: visible
}

.color_red {
	color: #db0000
}

.color_blue {
	color: #0f829d
}

.color_white {
	color: #fff
}

#loading_gif {
	width: 100%;
	height: 30px;
	min-width: 30px
}

.loading_gif {
	height: 40px;
	width: 100%;
	background-image: url(/mobile2/img/loading.gif)
}

.txt_nowrap {
	white-space: nowrap
}

.break_word {
	overflow-wrap: break-word
}

.background_blue {
	background-color: #0f829d
}

.trans_Y {
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.trans_XY {
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg)
}

.trans_Y_100 {
	-ms-transform: translateY(100%);
	-webkit-transform: translateY(100%);
	transform: translateY(100%)
}

.trans_Y_moins100 {
	-ms-transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%)
}

.txt_center {
	text-align: center
}

.trans_linear {
	-webkit-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear
}

.trans_linear_slow {
	-webkit-transition: all 2s linear;
	-o-transition: all 2s linear;
	transition: all 2s linear
}

.trans_linear_slow_height {
	-webkit-transition: height 2s linear;
	-o-transition: height 2s linear;
	transition: height 2s linear
}

.line_height_large {
	line-height: 1.2
}

.trans_X {
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}

.trans_X_100 {
	-ms-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%)
}

.trans_X_moins100 {
	-ms-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%)
}

.color_orange {
	color: #ff8e1d
}

.color_green {
	color: #0b9100
}

.grey_black {
	color: #363636
}

.grey_dark {
	color: #676767
}

.grey_light,
.grey_medium {
	color: #8d8d8d
}

.italic {
	font-style: italic
}

.semi_bold {
	font-weight: 500
}

.bold {
	font-weight: 700
}

.uppercase {
	text-transform: uppercase
}

.color_black {
	color: #000
}

.back_img {
	background-repeat: no-repeat;
	background-position: center
}

.pointer {
	cursor: pointer
}

.pointer_none {
	pointer-events: none
}

.contain {
	background-size: contain
}

.cover {
	background-size: cover
}

.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex
}

.j_start {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start
}

.j_end {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        justify-content: flex-end
}

.j_center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center
}

.j_around {
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around
}

.j_evenly {
	-webkit-box-pack: space-evenly;
	-webkit-justify-content: space-evenly;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly
}

.j_bet {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between
}

.a_start {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start
}

.a_center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center
}

.a_end {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end
}

.a_around {
	-webkit-box-align: space-around;
	-webkit-align-items: space-around;
	    -ms-flex-align: space-around;
	        align-items: space-around
}

.a_bet {
	-webkit-box-align: space-between;
	-webkit-align-items: space-between;
	    -ms-flex-align: space-between;
	        align-items: space-between
}

.size_title {
	font-size: 1.5em
}

.size_number {
	font-size: 3.5em
}

.size_txt {
	font-size: .9em
}

.flex_col {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column
}

.align_right {
	text-align: right
}

.col-12 {
	-ms-flex: inherit;
	-webkit-box-flex: inherit;
	-webkit-flex: inherit;
	        flex: inherit;
	max-width: 100%
}

.wrap {
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap
}

.width100 {
	width: 100%
}

.height100 {
	height: 100%
}

.background_white {
	background-color: #fff
}

.background_grey_dark {
	background-color: #e2e2e2
}

.background_grey_light {
	background-color: #f4f4f4
}

.letter_spacing_med {
	letter-spacing: 2px
}

.absolute {
	position: absolute
}

.relative {
	position: relative
}

.box_border {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box
}

.box_content {
	-webkit-box-sizing: content-box;
	        box-sizing: content-box
}

.lowercase {
	text-transform: lowercase
}

.margin_20_side {
	margin: 20px 0
}

.margin_10_left {
	margin-left: 10px
}

.margin_20_right {
	margin-right: 20px
}

.radius_10 {
	-webkit-border-radius: 10px;
	        border-radius: 10px
}

.radius_20 {
	-webkit-border-radius: 20px;
	        border-radius: 20px
}

.margin_10_right {
	margin-right: 10px
}

.margin_10_bottom {
	margin-bottom: 10px
}

.margin_10_top {
	margin-top: 10px
}

.button_padding {
	padding: 14px 28px
}

.letter_spacing_1 {
	letter-spacing: 1px
}

.bloc {
	padding: 25px 50px
}

.padding_15 {
	padding: 15px
}

@media screen and (max-width:1350px) {
	.size_number {
		font-size: 3em
	}
}

@media screen and (max-width:1250px) {
	.size_number {
		font-size: 2.5em
	}

	.size_txt {
		font-size: .8em
	}
}

@media screen and (max-width:1050px) {
	.size_number {
		font-size: 2em
	}

	.size_title {
		font-size: 1.3em
	}

	.ico_client {
		margin-right: 40px;
		height: 40px;
		width: 40px;
		background-size: contain
	}
}

/**********************/

.img_box,
.img_button {
	background-size: contain
}

#close-box,
#close-menu {
	position: absolute;
	top: 23px
}

#box-swipe,
.swipe-wrap {
	overflow: hidden;
	position: relative
}

#about-box,
*,
.box_about {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box
}

#indic_price,
p.txt_box {
	font-size: 2em
}

#copy-nav > * {
    font-size: 12px !important;
    font-weight: 400;
}

#button_valid[data-value="6"] .valid_button_img,
#button_valid[data-value="9"] .btn_txt2,
#nav_mobile.trans_X_moins100 #close-menu,
.color_manche,
.img_button,
.nav_header .arrow_left,
.nav_header .arrow_right,
.nav_header .number_nav,
.nav_header.selected .arrow_left,
.nav_header.selected .arrow_right,
.subsection .top_orange {
	display: none
}

#box-swipe,
#contener_butt,
.swipe-wrap,
.swipe-wrap>div {
	position: relative
}

#couteau_view_msg,
.box_about {
	max-height: 100%;
	max-width: 100%
}

#background-fond,
#section-6,
#section-7 {
	background-image: url("../img/fond.jpg")
}

#background-fond,
#section-6,
#section-7,
.img_box,
.img_button {
	background-repeat: no-repeat;
	background-position: center
}

#nav_mobile li,
#nav_mobile ul,
body,
html,
p {
	padding: 0;
	margin: 0
}

#button_validate_msg,
div#contener_input,
p#empty-manches {
	margin-top: 25px
}

.button,
a.link_bottom {
	text-transform: uppercase
}

#ok-input,
.title_box {
	letter-spacing: 1px
}

#background-fond {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: 120%;
	filter: blur(8px);
	-webkit-filter: blur(8px)
}

body {
	-ms-scroll-chaining: none;
	    overscroll-behavior: contain
}

.active,
.manche {
	z-index: 2
}

.z_index_zero {
	z-index: 0 !important
}

#couteau_bloc,
img {
	pointer-events: none
}

.trans_page2 {
	-webkit-transition: .1s linear;
	-o-transition: .1s linear;
	transition: .1s linear
}

* {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

/* header {
	height: 12%;
	z-index: 1
} */

/* main {
	height: 73%
} */

.img_button {
	width: 20px;
	height: 20px;
	margin-right: 20px
}

.start_button_img {
	background-image: url("../img/home.svg")
}

.perso_button_img,
.valid_button_img {
	background-image: url("../img/valid.svg")
}

#button_valid[data-value="9"] .valid_button_img {
	background-image: url("../img/command.svg")
}

#close-menu {
	left: 100%;
	margin-left: -45px
}

#about-box {
	background-color: rgba(0, 0, 0, .91);
	z-index: 999;
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px 30px 0
}

.img_box {
	width: 100%
}

#box1 .img_box {
	background-image: url("../img/box1.png");
	height: 200px;
	margin: 20px 0
}

#box2 .img_box {
	background-image: url("../img/box2.png");
	height: 150px;
	margin: 20px 0
}

#box3 .img_box {
	background-image: url("../img/box3.png");
	height: 150px;
	margin: 20px 0
}

.close {
	cursor: pointer;
	background: url("../img/close.svg") no-repeat center / 100%;
	width: 20px;
	height: 20px;
}

#close-box {
	right: 10px
}

#box-swipe {
	height: 90%;
	visibility: hidden
}

#back_arrow,
#landscape_blocker,
#menu,
#voir_rea,
.arrow_left,
.back_arrow_right,
.page {
	position: absolute
}

.swipe-wrap>div {
	float: left;
	width: 100%
}

.box_about {
	overflow: auto;
	padding: 20px 0
}

.title_box {
	font-size: 6em;
	font-family: 'Montserrat Bold', sans-serif;
	font-weight: 700;
	margin-bottom: 20px
}

#bloc2-box2 {
	margin: 0 5px
}

div#contener-caract-about {
	margin: 15px 0
}

#div-buttons-about {
	height: 10%
}

.circle {
	height: 20px;
	width: 20px;
	border: 1px solid #fff;
	-webkit-border-radius: 10px;
	        border-radius: 10px;
	margin: 0 10px
}

.circle.selected {
	background-color: #fff
}

.page {
	width: 100%;
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch
}

#section-1 {
	-webkit-overflow-scrolling: auto;
	padding-bottom: 10%;
	overflow: visible
}

/* footer {
	z-index: 20;
	position: absolute !important;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 15%
}

footer.height_change {
	height: 20%
}

main.height_change {
	height: 68%
} */

:root {
	--main: #e9b143;
	--dark: #bc8a3f
}

#landscape_blocker {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000;
	z-index: 999;
	display: none
}

#menu,
.social {
	background-size: 40%
}

#landscape_blocker img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -45px;
	margin-left: -45px
}

#menu {
	width: 60px;
	height: 35%;
	left: 2%;
	top: 50%
}

#logo {
	height: 40px;
	width: 85px
}

.rotate_45 {
	-ms-transform: rotate(35deg);
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg)
}

p.btn_txt1 {
	font-size: 2.5em;
	margin-bottom: 5px;
	font-weight: 600
}

p.btn_txt2 {
	font-size: 2.2em
}

/* Prix couteau dynamique (VAN202408) */

.page:not(.trans_Y_100) {
	height: -webkit-calc(100% - 58px);
	height: calc(100% - 58px);
}

#indic_price {
	left: 50%;
	bottom: 0;
	color: #fff;
	text-align: center;
	z-index: 10;
	width: 100%;
	font-size: 17px;
}

#indic_price:before {
	content: "";
	position: absolute;
	background: -o-linear-gradient(bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.85)), to(rgba(0,0,0,0.5)));
	background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
	top: 0;
	left: 0;
	height: 180px;
	width: 100%;
}

#indic_price #indic-final {
	position: relative;
	z-index: 20;
	letter-spacing: 1px;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
	max-height: 60px;
}

#indic-final .sub_size_txt,
#indic-final .indic-final-devise {
	font-size: 17px;
}

#indic-final .number_price_txt {
	font-size: 34px;
}

#indic_price_final {
	display: none;
}

/* #section-1.active ~ #indic_price {
	bottom: 25px;
} */

/***/

#header-bottom {
	-webkit-box-pack: space-evenly;
	-webkit-justify-content: space-evenly;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly;
	height: 30%;
	font-size: 1.4em;
	background-color: #000;
	overflow: hidden
}

#header-top {
	height: 70%;
    background-color: #ececea;
}

#header-bottom .nav_header {
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	color: #fff;
	text-transform: uppercase;
	font-size: 9px;
	width: 20%
}

#header-bottom .nav_header.selected {
	background-color: #fff;
	color: #000;
	padding-left: 10px
}

.back_arrow_right {
	right: -15px;
	bottom: 0;
	border-top: 28px solid transparent;
	border-bottom: 32px solid transparent;
	border-left: 15px solid #000
}

.arrow_left,
.nav_header.selected .back_arrow_right {
	border-left: 15px solid #fff;
	border-top: 28px solid transparent;
	border-bottom: 32px solid transparent
}

.arrow_left {
	left: 0;
	bottom: 0
}

.nav_header.selected .arrow_left {
	display: block !important;
	border-top: 28px solid transparent;
	border-bottom: 32px solid transparent;
	border-left: 15px solid #000
}

.nav_header.selected .number_nav {
	display: none !important
}

.number_nav {
	background-color: var(--dark);
	height: 6px;
	overflow: hidden;
	width: 6px;
	-webkit-border-radius: 3px;
	        border-radius: 3px;
	margin-right: 4px;
	color: #00d723;
	background-color: #00d723
}

.numbered .number_nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-left: 4px
}

.background_grey {
	background-color: #454647
}

#back_arrow {
	width: 40px;
	height: 40px;
	left: 4%;
	top: 50%
}

#voir_rea {
	width: 20%;
	height: 100%;
	right: 0;
	top: 50%
}

#eye-voir-rea {
	width: 40px
}

.txt_couteau_size {
	bottom: 5%;
	left: 50%;
	width: 90%
}

.all-sections-params,
.page {
	top: 0;
	left: 0
}

.price_couteau {
	font-size: 1.3em;
	padding: 8px 0
}

.sub_size_txt {
	font-size: .7em
}

.subsection {
	height: 33.333%;
	font-size: 2em;
	overflow: hidden;
	-webkit-box-shadow: inset 0 19px 37px 0 rgba(0, 0, 0, .75);
	box-shadow: inset 0 19px 37px 0 rgba(0, 0, 0, .75)
}

.sub_couteau_size {
	-ms-transform: rotate(-32deg);
	-webkit-transform: rotate(-32deg);
	transform: rotate(-32deg);
	margin-bottom: 10%;
	width: 90%
}

[data-id="37"] .sub_couteau_size {
	width: 75%
}

[data-id="27"] .sub_couteau_size {
	width: 80%
}

.top_orange:after,
.top_orange:before {
	content: "";
	width: 0;
	height: 0;
	left: -webkit-calc(50% - 10px);
	left: calc(50% - 10px);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	position: absolute
}

.medium {
	width: 68%
}

.small {
	width: 51%
}

.size_couteau {
	font-size: 1em;
	padding: 8px 0
}

.margin_bottom5 {
	margin-bottom: 5px
}

.txt_couteau_finition {
	left: 50%;
	top: 12%;
	font-size: 1.5em
}

.sub_couteau_finition {
	width: 125%;
	-ms-transform: rotate(-46deg) translateY(-100%);
	-webkit-transform: rotate(-46deg) translateY(-100%);
	transform: rotate(-46deg) translateY(-100%);
	position: absolute;
	left: 101%;
	top: 96%
}

.top_orange {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 3px solid #fff
}

.top_orange:before {
	top: 0;
	border-top: 10px solid #fff
}

.top_orange:after {
	bottom: 0;
	border-bottom: 10px solid #fff
}

.subsection.selected .top_orange {
	display: block;
	z-index: 1
}

#couteau_manche,
#section-7,
#section-8 {
	z-index: 10
}

.sub_couteau_manche {
	width: 150%;
	position: absolute;
	top: 40%;
	left: -22%;
	-ms-transform: rotate(-40deg) translateY(-65%);
	-webkit-transform: rotate(-40deg) translateY(-65%);
	transform: rotate(-40deg) translateY(-65%)
}

.sub_couteau_tattoo {
	width: 140%;
	height: auto;
	-ms-transform: rotate(-40deg) translateY(-65%);
	-webkit-transform: rotate(-40deg) translateY(-65%);
	transform: rotate(-40deg) translateY(-65%);
	position: absolute;
	right: -110%;
	top: 50%
}

.txt_couteau_manche {
	bottom: 7%;
	right: 15%;
	font-size: 1.3em
}

.color_manche {
	position: absolute;
	bottom: 100%;
	margin-bottom: 10px;
	left: 50%;
	color: var(--main);
	width: 100%;
	text-align: center
}

.contener_couteau {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center
}

#section-4 .subsection,
#section-5 .subsection,
#section-8 .subsection {
	height: 33.3%
}

#section-4 .subsection {
	height: 28%
}

#contener_butt {
	height: 70%;
	overflow: visible
}

.sub_page {
	will-change: transform
}

#couteau_view_msg {
	height: 500px;
	width: 100%
}

#section-6,
#section-7 {
	overflow: hidden;
	background-size: cover;
	z-index: 1
}

#zoom_couteau {
	right: 8%;
	z-index: 3;
	top: 8%;
	width: 150px;
	height: 150px;
	-webkit-border-radius: 75px;
	        border-radius: 75px;
	border: 2px solid #fff;
	overflow: hidden;
	background: #000;
	background: -o-linear-gradient(top, #000 0, #1a1a19 37%, #2e3034 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000), color-stop(37%, #1a1a19), to(#2e3034));
	background: linear-gradient(top, #000 0, #1a1a19 37%, #2e3034 100%)
}

#zoom_couteau_legende {
	left: 54%;
	bottom: 13%;
	width: 120px;
	height: 120px
}

#legende-zoom {
	bottom: 0;
	left: 0;
	width: 100%;
	margin-top: 8px;
	font-size: 3em;
	text-align: center
}

#legende-zoom span {
	font-size: 1.3em
}

#couteau_zoom_img,
.size-27 #couteau_zoom_img {
	-ms-transform: rotate(-24deg);
	-webkit-transform: rotate(-24deg);
	-moz-transform: rotate(-24deg);
	-o-transform: rotate(-24deg)
}

.size-27 #zoom_couteau_legende {
	left: 56%;
	bottom: 14%;
	width: 110px;
	height: 110px
}

.size-15 #zoom_couteau_legende {
	left: 53%;
	bottom: 21%;
	width: 100px;
	height: 100px
}

#couteau_zoom_img {
	width: 960px;
	height: auto;
	z-index: 0;
	left: -668px;
	top: -405px;
	-webkit-transform: rotate(-24deg);
	    -ms-transform: rotate(-24deg);
	        transform: rotate(-24deg)
}

.size-27 #couteau_zoom_img {
	width: 1108px;
	left: -773px;
	top: -480px;
	-webkit-transform: rotate(-24deg);
	    -ms-transform: rotate(-24deg);
	        transform: rotate(-24deg)
}

.size-15 #couteau_zoom_img {
	width: 1160px;
	left: -759px;
	top: -494px;
	-ms-transform: rotate(-24deg);
	-webkit-transform: rotate(-24deg);
	transform: rotate(-24deg)
}

#zoom_couteau p {
	color: #000;
	position: absolute;
	bottom: 4%;
	font-size: 2em;
	left: 54%;
	width: 100%;
	text-align: left;
	-ms-transform: rotate(18deg) translateX(-50%);
	-webkit-transform: rotate(18deg) translateX(-50%);
	transform: rotate(22deg) translateX(-50%);
	overflow: visible
}

.size-27 #zoom_couteau p {
	bottom: 16%;
	left: 50%;
	width: 100%;
	text-align: left;
	-ms-transform: rotate(18deg) translateX(-50%);
	-webkit-transform: rotate(18deg) translateX(-50%);
	transform: rotate(18deg) translateX(-50%)
}

.size-15 #zoom_couteau p {
	bottom: 12%;
	left: 50%;
	width: 100%;
	text-align: left;
	-ms-transform: rotate(22deg) translateX(-50%);
	-webkit-transform: rotate(22deg) translateX(-50%);
	transform: rotate(22deg) translateX(-50%)
}

#section-7 input {
	outline: 0;
	background-color: transparent;
	border: none;
	border-bottom: 3px solid #fff;
	width: 80%;
	max-width: 80%;
	min-width: 80%;
	height: 60px;
	color: #fff;
	font-size: 20px;
	text-align: center
}

#title_input {
	margin-top: 45px;
	font-size: 2.3em
}

#button_validate_empty_msg {
	margin-top: 20px
}

#indic_price_final {
	left: 50%;
	bottom: 5%;
	color: #fff;
	font-size: 2.7em
}

#indic-2-final {
	font-size: 1.8em
}

#indic-3-final,
.subsection_size .sub_size_txt {
	font-size: 1em
}

#voir_rea p {
	font-size: 1.9em;
	color: #bcbab8;
	margin-top: 5px;
	font-weight: 700;
	max-width: 85%
}

#nav_mobile span,
p#empty-manches {
	font-size: 2.5em
}

.montserrat {
	font-family: Montserrat, sans-serif
}

input {
	-webkit-touch-callout: auto;
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto
}

.contener_couteau {
	width: 100%;
	height: 100%;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	max-width: 100%;
	overflow: visible;
	-ms-transform: rotate(57.5deg);
	-webkit-transform: rotate(57.5deg);
	transform: rotate(57.5deg)
}

#section-demarrage {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex
}

.contener_couteau img {
	width: 125%;
	height: auto
}

.size-27 .contener_couteau img {
	width: 135%
}

.size-15 .contener_couteau img {
	width: 145%
}

.subsection_style_txt p,
.texte-couteau,
p#txt_zoom_inside {
	white-space: pre
}

p#empty-manches {
	text-align: center;
	max-width: 85%;
	margin-left: auto;
	margin-right: auto
}

.color_white {
	color: #fff !important
}

.color_black {
	color: #000 !important
}

#couteau_clip,
#couteau_clip.rotate_1 {
	z-index: -1
}

.rotate .rotate_1 {
	z-index: 1 !important
}

.subsection_size .number_price_txt {
	font-size: 1.4em
}

.rotate .rotate_moins_1 {
	z-index: -1 !important
}

.rotate img:not(.rotate_knife) {
	-webkit-transform-style: preserve-3d;
	        transform-style: preserve-3d;
	-ms-transform: scale(1, -1);
	-webkit-transform: scale(1, -1);
	transform: scale(1, -1)
}

.rotate img.rotate_knife {
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.subsection_style_txt p {
	font-size: 2.3em
}

.rotate .txt_couteau_change {
	opacity: 0
}

.arrow_scroll {
	width: 35px;
	height: auto;
	left: 50%;
	position: fixed;
	z-index: 5
}

#nav_mobile,
#section-demarrage,
.share_menu {
	left: 0;
	background-color: #000
}

.arrow_top {
	top: 16%;
	-webkit-animation: 3s ease-in-out infinite arrow_slide_top;
	        animation: 3s ease-in-out infinite arrow_slide_top
}

.arrow_bottom {
	bottom: 18%;
	-webkit-animation: 3s ease-in-out infinite arrow_slide_down;
	        animation: 3s ease-in-out infinite arrow_slide_down
}

@-webkit-keyframes arrow_slide_top {

	0%,
	100% {
		-ms-transform: translate(-50%, 5px);
		-webkit-transform: translate(-50%, 5px);
		transform: translate(-50%, 5px);
		opacity: 0
	}

	50% {
		-ms-transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		opacity: 1
	}
}

@keyframes arrow_slide_top {

	0%,
	100% {
		-ms-transform: translate(-50%, 5px);
		-webkit-transform: translate(-50%, 5px);
		transform: translate(-50%, 5px);
		opacity: 0
	}

	50% {
		-ms-transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		opacity: 1
	}
}

@-webkit-keyframes arrow_slide_down {

	0%,
	100% {
		-ms-transform: translate(-50%, 5px);
		-webkit-transform: translate(-50%, 5px);
		transform: translate(-50%, 5px);
		opacity: 0
	}

	50% {
		-ms-transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		opacity: 1
	}
}

@keyframes arrow_slide_down {

	0%,
	100% {
		-ms-transform: translate(-50%, 5px);
		-webkit-transform: translate(-50%, 5px);
		transform: translate(-50%, 5px);
		opacity: 0
	}

	50% {
		-ms-transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		opacity: 1
	}
}

#nav_mobile li {
	margin: 10px 0;
	list-style: none
}

#nav_mobile a {
	color: #fff;
	text-decoration: none
}

#nav_mobile {
	position: fixed;
	top: 0;
	height: 100%;
	z-index: 999999;
	width: 25%;
    /* padding: 10px 16px 15%; */
	/* overflow: visible */
    overflow-y: scroll;
    max-height: 100dvh;
}

#bloc-nav-mobile > nav ~ .border_white {
    margin-bottom: 35px;
}

#bloc-nav-mobile {
	padding-bottom: 15%;
    /* padding: 10px 5px 20%; */
    padding: 0 8px 0;
	overflow: auto;
    position: relative;
    width: 100%;
}

#link-home {
    padding: 10px 0 0 20px;
    display: table;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center
}

#logo-deejo {
	width: 80px;
	height: auto
}

.border_white {
	width: 100%;
	height: 1px;
	border-top: 1px solid #fff
}

.share_menu {
	position: absolute;
	bottom: 0;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 10px 16px
}

.share_fb {
	background-image: url('/mobile2/img/social/facebook.png')
}

.share_pinterest {
	background-image: url('/mobile2/img/social/pinterest.png')
}

.share_twitter {
	background-image: url('/mobile2/img/social/twitter.png')
}

.share_instagram {
	background-image: url('/mobile2/img/social/instagram.png')
}

.social {
	width: 30px;
	height: 30px;
	margin: 0 5px;
	border: 1px solid #fff
}

.share_fb {
	background-size: 21%
}

.move_pos_rotate {
	position: absolute;
	right: initial;
	top: initial;
	left: 10%;
	bottom: 20%;
	height: 80px
}

.button,
.button_specific {
	position: relative;
	display: block;
	text-align: center
}

span.slash {
	margin: 0 3px
}

a.link_bottom {
	font-size: 1.8em
}

.trans_opacity {
	-webkit-transition: opacity .3s linear;
	-o-transition: opacity .3s linear;
	transition: opacity .3s linear
}

#section-demarrage {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 999
}

.translateY_100 {
	-ms-transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%)
}

#logo-demarrage {
	width: 75px;
	height: 50px
}

.trans_start {
	-webkit-transition: .4s ease-in-out;
	-o-transition: .4s ease-in-out;
	transition: .4s ease-in-out
}

.trans_butt {
	-webkit-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out
}

/* ÉVO ergo menu 2025 */
body {
    padding-top: 40px;
}

/* header{
	height: 15%;
} */

.contener_couteau img {
    width: 120%;
}

/* #header-top {
    height: 70%;
} */

#header-top .header-top-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    /* margin-top: 40px; */
}

#menu {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    height: 50px;
    width: 50px;
    background-size: 25px;
}

/* | evo header - switch */
#switch_deejo_knife_type {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
}

#switch_deejo_knife_type * {
    -webkit-tap-highlight-color: transparent;
}

#switch_deejo_knife_type .switch_deejo_knife_type_container {
    margin: 8px;
}

#switch_deejo_knife_type .switch_deejo_knife_type_inputs {
    border: 1px solid #000000;
    -webkit-border-radius: 60px;
            border-radius: 60px;
    padding: 3.5px 2px;
    background-color: #FFFFFF;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

#switch_deejo_knife_type .switch_deejo_knife_type_inputs > div {
    padding: 8px 10px;
    -webkit-border-radius: 50px;
            border-radius: 50px;
    width: 48px;
}

#switch_deejo_knife_type .switch_deejo_knife_type_inputs > div[data-selected="true"] {
    position: relative;
}

#switch_deejo_knife_type .switch_deejo_knife_type_inputs > div[data-selected="true"]:before {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    z-index: 0;
    background-color: #000000;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 60px;
            border-radius: 60px;
}

#switch_deejo_knife_type .switch_deejo_knife_type_inputs > div[data-category="pocket"] .picto_background {
    background: url("/medias/poche-black.png") no-repeat center / 27px;
}

#switch_deejo_knife_type .switch_deejo_knife_type_inputs > div[data-selected="true"][data-category="pocket"] .picto_background {
    background-image: url("/medias/poche-white.png");
}

#switch_deejo_knife_type .switch_deejo_knife_type_inputs > div[data-category="table"] .picto_background {
    background: url("/medias/table-black.png") no-repeat center / 27px;
}

#switch_deejo_knife_type .switch_deejo_knife_type_inputs > div[data-selected="true"][data-category="table"] .picto_background {
    background-image: url("/medias/table-white.png");
}

#switch_deejo_knife_type .switch_deejo_knife_type_inputs > div[data-category="cuisine"] .picto_background {
    background: url("/medias/cuisine-black.png") no-repeat center / 27px;
}

#switch_deejo_knife_type .switch_deejo_knife_type_inputs > div[data-selected="true"][data-category="cuisine"] .picto_background {
    background-image: url("/medias/cuisine-white.png");
}

#switch_deejo_knife_type .switch_deejo_knife_type_inputs img,
#switch_deejo_knife_type .switch_deejo_knife_type_inputs .picto_background {
    height: 27px;
    width: 27px;
    display: block;
    position: relative;
}

/* evo main */

#menu_categories {
    margin: 15px 0;
    max-height: 70vh;
    overflow-y: scroll;
}

.menu_category_item {
    margin: 0 auto;
}

.menu_category_item_container {
    background-color: rgba(95, 80, 65, 1);
    -webkit-border-radius: 10px;
            border-radius: 10px;
    padding: 8px;
    padding-top: 50px;
    position: relative;
    margin: 0 15px;
}

.menu_category_item_container:after {
    content: "";
    display: block;
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px;
    border: 0.75px solid #FFFFFF;
    -webkit-border-radius: 50px;
            border-radius: 50px;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 8px;
    right: 8px;
}

.menu_category_item.poche .menu_category_item_container:after {
    background-image: url("/medias/poche-white.png");
}

.menu_category_item.table .menu_category_item_container:after {
    background-image: url("/medias/table-white.png");
}

.menu_category_item.cuisine .menu_category_item_container:after {
    background-image: url("/medias/cuisine-white.png");
}

.menu_category_item:not(:first-child) .menu_category_item_container {
    background-color: rgba(234, 224, 214, 1);
}

.menu_category_item_image {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 90%;
    margin-bottom: 5px;
}

.menu_category_item_title {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    padding: 5px 0;
}

#menu_categories .menu_category_item_title * {
    font-size: 14px;
}

.menu_category_item_title strong {
    font-weight: 700;
    display: block;
    text-transform: uppercase;
}

.menu_category_item_title .btn {
    padding: 3px 15px;
    width: 100%;
    max-width: 80%;
    background-color: #000000;
    color: #FFFFFF;
    display: block;
    margin: 0 auto;
    -webkit-border-radius: 10px;
            border-radius: 10px;
    line-height: 120%;
}

.image_sep {
    display: block;
    margin: 5px auto;
    height: 29px;
}

#menu_options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 12px;
}

/** Devise selector **/

#mobile_devise_selector {
    border: 0;
    font-size: 16px;
    color: #FFFFFF;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    background: #000000;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: -webkit-calc(100% + 8px) center;
    background-position: calc(100% + 8px) center;
    padding: 0 15px 0 0;
    margin: 0;
    height: auto;
}

/** Language selector **/

#mobile_language_selector {
    border: 0;
    font-size: 38px;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    background-color: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: -webkit-calc(100% + 8px) center;
    background-position: calc(100% + 8px) center;
    padding: 0 15px 0 0;
    margin: 0;
    height: auto;
}

/* - custom select (fix chrome desktop emoji flags) */
#mobile_language_selector.custom-select {
    position: relative;
    width: 65px;
    cursor: pointer;
    background: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat right center / 24px;
    padding: 0;
}

#mobile_language_selector .selected, 
#mobile_language_selector .options li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 5px 8px;
}

#mobile_language_selector .selected img, 
#mobile_language_selector .options img {
    width: 32px;
}

#mobile_language_selector .options {
    position: absolute;
    /* top: 100%; */
    top: -200%;
    left: 0;
    right: 0;
    display: none;
    z-index: 10;
    background-color: #000000;
}

#mobile_language_selector.custom-select.open .options {
    display: block;
}

#mobile_language_selector .options li:hover {
    background-color: #070707;
}

/* end - custom select fix chrome */

/*** END ***/

@media screen and (max-device-width:414px) and (orientation:portrait) {
	.sub_couteau_manche {
		width: 160%
	}
}

@media screen and (max-device-width:380px) and (orientation:portrait) {
	#voir_rea p {
		font-size: 1.8em
	}

	.sub_couteau_manche {
		width: 145%
	}

	#zoom_couteau {
		right: 7%;
		top: 7%;
		width: 140px;
		height: 140px;
		-webkit-border-radius: 70px;
		        border-radius: 70px
	}

	#zoom_couteau p {
		bottom: 0;
		font-size: 1.6em;
		-ms-transform: rotate(18deg) translateX(-50%);
		-webkit-transform: rotate(18deg) translateX(-50%);
		transform: rotate(22deg) translateX(-50%)
	}

	#zoom_couteau_legende {
		left: 51%;
		bottom: 18%;
		width: 120px;
		height: 120px
	}

	.size-27 #zoom_couteau_legende {
		left: 51%;
		bottom: 19%;
		width: 110px;
		height: 110px
	}

	.size-15 #zoom_couteau_legende {
		left: 50%;
		bottom: 24%;
		width: 100px;
		height: 100px
	}

	.size-27 #zoom_couteau p {
		bottom: 11%
	}

	.size-15 #zoom_couteau p {
		bottom: 10%
	}

	.size-15 .texte-couteau {
		-ms-transform: rotate(6deg);
		-webkit-transform: rotate(6deg);
		transform: rotate(6deg)
	}

	#legende-zoom {
		font-size: 2.5em
	}
}

@media screen and (max-device-width:340px) and (orientation:portrait) {
	.sub_couteau_manche {
		width: 140%
	}

	#zoom_couteau {
		right: 7%;
		top: 7%;
		width: 120px;
		height: 120px;
		-webkit-border-radius: 60px;
		        border-radius: 60px
	}

	#couteau_zoom_img {
		width: 860px;
		left: -579px;
		top: -366px
	}

	.size-27 #couteau_zoom_img {
		width: 860px;
		left: -579px;
		top: -348px;
		-ms-transform: rotate(-29deg);
		-webkit-transform: rotate(-29deg);
		transform: rotate(-27deg)
	}

	.size-15 #couteau_zoom_img {
		width: 920px;
		left: -590px;
		top: -369px;
		-ms-transform: rotate(-29deg);
		-webkit-transform: rotate(-29deg);
		transform: rotate(-29deg)
	}

	.size-27 #zoom_couteau p {
		bottom: 17%;
		left: 52%;
		width: 100%;
		text-align: left;
		-ms-transform: rotate(13deg) translateX(-50%);
		-webkit-transform: rotate(13deg) translateX(-50%);
		transform: rotate(13deg) translateX(-50%)
	}

	.size-15 #zoom_couteau p {
		bottom: 18%;
		left: 50%;
		width: 100%;
		text-align: left;
		-ms-transform: rotate(15deg) translateX(-50%);
		-webkit-transform: rotate(15deg) translateX(-50%);
		transform: rotate(15deg) translateX(-50%)
	}

	p.btn_txt1 {
		font-size: 2.3em
	}

	p.btn_txt2 {
		font-size: 1.5em
	}

	#legende-zoom {
		font-size: 2em
	}
}

@media screen and (max-device-width:400px) and (orientation:portrait) {
	.sub_couteau_manche {
		width: 160%
	}
}

#ok-input,
div#ok-input {
	width: auto;
	font-size: 1.7em;
	height: auto;
	padding: 5px;
	top: 50%
}

.button {
	min-width: 50%;
	padding: 10px 32px;
	border: 1px solid #fff;
	-webkit-border-radius: 50px;
	        border-radius: 50px
}

.button_specific {
	padding: 12px 0;
	border: 0;
	min-width: inherit
}

.button_specific:after,
.button_specific:before {
	height: 4px;
	-webkit-border-radius: 4px;
	        border-radius: 4px;
	width: 160%;
	position: absolute;
	left: 50%;
	content: ""
}

.button_specific:before {
	top: 0;
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 49%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(49%, #fff), to(rgba(255, 255, 255, 0)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 49%, rgba(255, 255, 255, 0) 100%)
}

.button_specific:after {
	bottom: 0;
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 49%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(49%, #fff), to(rgba(255, 255, 255, 0)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 49%, rgba(255, 255, 255, 0) 100%)
}

div#ok-input {
	-webkit-border-radius: 3px;
	        border-radius: 3px;
	right: 10%;
	z-index: 20
}

#ok-input {
	position: absolute;
	min-width: inherit;
	-webkit-border-radius: 30%;
	        border-radius: 30%;
	border-width: 2px;
	right: 13%;
	font-weight: 700
}

/* footer.background_grey {
	background-color: #000
} */

.weight_txt {
	font-size: 1.5em
}

.blur_container {
	display: none;
	z-index: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	    transform: translateY(0)
}

.smoke,
.subsection.selected:after {
	position: absolute;
	height: 120%;
	background-color: #fff
}

.smoke {
	display: none;
	bottom: 0;
	left: 62%;
	width: 30px;
	-webkit-border-radius: 7.5px;
	        border-radius: 7.5px;
	-webkit-filter: blur(18px);
	filter: blur(18px);
	opacity: .3;
	-ms-transform: rotate(35deg);
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg)
}

.button,
.trans_linear_smoke {
	-webkit-transition: .5s linear;
	-o-transition: .5s linear;
	transition: .5s linear
}

.button.button_transition {
	background-color: #fff;
	color: #000
}

.button.button_transition .smoke {
	-webkit-filter: blur(50px);
	filter: blur(50px);
	opacity: .8
}

.subsection.selected:after {
	content: "";
	top: -108%;
	width: 100%;
	-webkit-border-radius: 50px;
	        border-radius: 50px;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	opacity: 1.6
}

#section-2 .subsection.selected:after {
	right: -20%;
	-ms-transform: rotate(15deg);
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg)
}

#section-4 .subsection.selected:after {
	top: inherit;
	left: -20%;
	bottom: -117%;
	-ms-transform: rotate(15deg);
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg)
}

#section-3 .subsection.selected:after {
	left: -20%;
	-ms-transform: rotate(-15deg);
	-webkit-transform: rotate(-15deg);
	transform: rotate(-15deg)
}

#section-5 .subsection.selected:after,
#section-8 .subsection.selected:after {
	right: -20%;
	-ms-transform: rotate(15deg);
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg);
	z-index: -1
}

#section-5 .subsection {
	height: 22.5%
}

.txt_couteau_tattoo {
	left: 5%;
	top: 15%;
	color: #fff;
	font-size: 1.2em
}

#section-1.preview_step1 {
	-ms-transform: translateY(-100%) !important;
	-webkit-transform: translateY(-100%) !important;
	transform: translateY(-100%) !important
}

#section-1.preview_step2 {
	-ms-transform: translateY(0) !important;
	-webkit-transform: translateY(0) !important;
	transform: translateY(0) !important
}

.txt_couteau_change span {
	font-size: 8px;
	height: 8px;
	display: inline-block
}

#txt_zoom_inside span {
	font-size: 12px;
	height: 10px
}

#button_valid[data-value="9"] .btn_txt1 {
	margin-bottom: 0
}

#button_valid[data-value="9"] {
	min-height: 45px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center
}

.texte-couteau {
	-webkit-transform: rotate(7deg) translateY(21px);
	    -ms-transform: rotate(7deg) translateY(21px);
	        transform: rotate(7deg) translateY(21px);
	left: 60%
}

@media screen and (max-device-width:380px) and (orientation:portrait) {
	.texte-couteau-position {
		height: 5px;
		width: 5px;
		position: absolute;
		left: 75%;
		top: 50.5%;
		overflow: visible
	}

	.txt_couteau_tattoo {
		left: 4%;
		top: 11%;
		color: #fff;
		font-size: 1.1em
	}

	.button {
		padding: 6px 32px
	}

	.button_specific {
		padding: 12px 0
	}

	p.btn_txt1 {
		margin-bottom: 2px
	}
}

@supports (-webkit-touch-callout:none) and (-webkit-overflow-scrolling:none) {
	body {
		cursor: pointer
	}
}