@font-face {
	font-family: "Vision";
	src: url("assets/fonts/Vision.woff") format("woff");
	font-weight: 400;
}

@font-face {
	font-family: "Vision";
	src: url("assets/fonts/Vision-light.woff") format("woff");
	font-weight: 300;
}

body {
	font-size: 16px;
	font-family: 'Vision', sans-serif;
	font-weight: 400;
	line-height: 1.4;
	color: #293133;
}

.hidden, body#body .hidden {
	display: none;
}

body.top-breadcrumb {
	margin-top: 50px;
}

body.aside-breadcrumb {
	margin-left: 20%;
}

.inner-header {
	color: #293133;
	text-align: center;
}

.inner-header h2 {
	font-family: "IBM Plex Sans", Arial, sans-serif;
	font-size: 25px;
	margin-bottom: 10px;
}

.inner-header p {
	font-size: 14px;
	max-width: 400px;
	margin: auto;
	color: #9E9E9E;
}

/* TOP BREADCRUMB */

.main-nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
}

.main-nav ul {
	height: 50px;
	background: #ECECEC;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
}

.main-nav ul li {
	width: 20%;
	background: transparent;
	transition: all .2s ease-in-out;
	color: #A7A7A7;
	position: relative;
}

.main-nav ul li:hover {
	color: #6600FF;
}

.main-nav ul li a {
	position: relative;
	height: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	padding-left: 15px;
	transition: all .2s ease-in-out;
}

.main-nav ul li:not(:first-child) a {
	padding-left: 40px;
}

.main-nav ul li span {
	display: block;
	width: 50px;
	height: 50px;
	right: -20px;
	position: absolute;
	top: 0;
	transform: rotatey(56deg);
	z-index: 9;
}

.main-nav ul li span:before {
	position: absolute;
	content: "";
	width: 50px;
	height: 50px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	background: #ECECEC;
}

.main-nav ul li.current span {
	display: none;
}

.main-nav ul li.current,
.main-nav ul li.current:hover {
	background: #6600FF;
	color: #FFF;
}

.main-nav ul li.current a:before {
	content: "";
	position: absolute;
	height: 0;
	width: 0;
	top: 0;
	left: 100%;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-left: 15px solid #6600FF;
}

.main-nav ul li.current a:before {}

.main-nav .new {
	font-size: 9px;
	line-height: 1;
	padding: 2px 5px 1px;
	border-radius: 10px;
	background-color: #6600FF;
	color: #FFF;
	margin-left: 4px;
}

.main-nav .new::after {
	content: "NEW";
}

.main-nav ul li.current .new {
	background-color: #fff;
	color: #6600FF;
}

.main-inner {
	position: relative;
}

.btn-logout {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	color: #666;
	width: 35px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.20);
	opacity: .5;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.btn-logout:hover {
	opacity: 1;
}

/* ASIDE BREADCRUMB */

.aside-nav {
	width: 20%;
	position: fixed;
	z-index: 1;
	top: 50px;
	left: 0;
	height: calc(100% - 50px);
	background: #F6F7F8;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
	padding: 25px 15px;
	color: #9E9E9E;
	overflow: auto;
}

.aside-nav.has_flex{
	display: flex;
	flex-direction: column;
}
.aside-nav.has_flex .aside-header{
	flex: 0 0 auto;
}
.aside-nav.has_flex .aside-container{
	flex: 1 1 auto;
}
.aside-nav.has_flex .aside-footer{
	flex: 0 0 auto;
}

.aside-nav.no-shadow{
	box-shadow: none;
}

.aside-header {}

.aside-header-title {}

.aside-header-text {
	margin: 10px 0 20px;
	font-size: 14px;
}

.aside-container {
	font-size: 14px;
}

.aside-container article {
	background: #FFF;
	border-radius: 10px;
	margin-bottom: 10px;
	overflow: hidden;
}

.aside-content-title {
	cursor: pointer;
	display: flex;
	align-items: center;
	min-height: 35px;
	border-bottom: 1px solid transparent;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.aside-content-title:hover .number,
.aside-content-title:hover .title {
	color: #6600FF;
}

.aside-content-title .number {
	height: 100%;
	min-width: 36px;
	text-align: center;
	border-right: 1px solid #F6F7F8;
	margin-right: 10px;
	padding: 7px 0;
	border-top-left-radius: 10px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.aside-content-title .title {
	width: 100%;
	height: 100%;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	/* font-size: 14px; */
}

.aside-container .aside-list {
	padding: 10px 10px 10px 0px;
	font-size: 14px;
}

.aside-inner-list {
	max-height: 0px;
	-webkit-transition: all .7s ease-in-out;
	-moz-transition: all .7s ease-in-out;
	-o-transition: all .7s ease-in-out;
	transition: all .7s ease-in-out;
}

.extended .aside-inner-list {
	max-height: 300px;
}

.aside-checklist {
	padding: 10px 10px 10px 0px;
}

.aside-checklist li {
	display: flex;
}

.aside-checklist li span {
	min-width: 20px;
	height: 20px;
	display: block;
	margin: 0px 6px 0px;
	position: relative;
}

.aside-checklist li span:before, .aside-checklist li span:after {
	position: absolute;
	content: "";
	background: #808080;
	border-radius: 20px;
	top: 8px;
	left: 3px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.aside-checklist li span:before {
	width: 12px;
	height: 2px;
	transform: rotateZ(45deg);
}

.aside-checklist li span:after {
	width: 12px;
	height: 2px;
	transform: rotateZ(-45deg);
}

.aside-checklist li p {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.aside-checklist li.checked {}

.aside-checklist li.checked span {}

.aside-checklist li.checked span:before, .aside-checklist li.checked span:after {
	background: #67D6D7;
}

.aside-checklist li.checked span:before {
	width: 6px;
	top: 10px;
}

.aside-checklist li.checked span:after {
	left: 5px;
}

.aside-checklist li.checked p {
	color: #67D6D7;
}

.aside-list li {
	display: flex;
	justify-content: space-between;
}

.aside-list li:not(:last-child) {
	margin-bottom: 10px;
}

.aside-list li i {
	min-width: 36px;
	text-align: center;
}

.aside-list li p {
	width: 100%;
}

.aside-list li strong {
	color: #293133;
	text-align: right;
}

.aside-container .extended .aside-content-title {
	border-bottom: none;
}

.aside-container .extended .aside-content-title .number {
	border-bottom-left-radius: 10px;
}

.aside-container .extended {}

.aside-container .aside-expandable.extended .aside-content-title {
	border-bottom: 1px solid #6600FF;
}

.aside-container .extended .aside-content-title .number {
	background: #6600FF;
	color: #FFF;
}

.aside-container .aside-expandable.extended .aside-content-title .number {
	border-bottom-left-radius: 0;
}

.aside-container .extended .aside-content-title .title {
	color: #293133;
}

/* MAIN CONTENT */

.main-content {
	height: calc(100vh - 50px);
}
.main-content.has_toolbar{
	display: flex;
	flex-direction: column;
	background: #F6F7F8;
}
.preview_toolbar{
	flex: 0 0 auto;
	padding: 14px 10px;
	text-align: center;
}
.preview_device{
	flex: 1 1 auto;
	margin: 0 10px 10px 0;
	position: relative;
}
.preview_device_inner{
	position: absolute;
	border-radius: 10px;
    box-shadow: rgba(0,0,0,.1) 0 0 11px, rgba(0,0,0,.1) 0 0 3px;
    z-index: 1;
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
	height: 100%;
	max-height: 100%;
	margin: auto;
	left: 0;
	right: 0;
}
.preview_device_inner.animated{
	transition: all 300ms ease-in-out;
}
.preview_device_inner[data-device=mobile]{
	width: 375px;
	height: 667px;
}
.preview_device iframe{
	display: block;
	width: 100%;
	height: 100%;
}

/* B3 - TECHNO - CUSTOMER JOURNEY */

.techno-inner {}

.techno-journey-wrapper {
	margin-top: 100px;
	display: none;
}

.techno-journey-wrapper .inner-header {}

.techno-journey-wrapper .inner-header h2 {}

.techno-journey-wrapper .inner-header p {}

.journey-container {}

.journey-current {}

.journey-current p {
	text-align: center;
	font-weight: 700;
	margin: 50px 0 30px;
}

.journey-current p span {
	display: block;
	font-size: 20px;
}

.journey-schema {
	display: flex;
	justify-content: space-between;
	max-width: 90%;
	margin: auto;
}

.journey-schema li {
	width: 13.3%;
}

.journey-schema .journey-title {
	color: #FFF;
	font-weight: 700;
	position: relative;
	height: 37px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 12px;
	background: #67D6D7;
	position: relative;
}

.journey-schema li:not(:first-child) .journey-title:before, .journey-schema .journey-title:after {
	content: "";
	position: absolute;
	height: 0;
	width: 0;
	top: 0;
	border-top: 18px solid transparent;
	border-bottom: 19px solid transparent;
	border-left: 11px solid #FFF;
}

.journey-schema .journey-title:before {
	left: -1px;
}

.journey-schema .journey-title:after {
	left: 100%;
	z-index: 2;
}

.journey-schema .journey-percent {
	width: calc(100% + 2px);
	margin-left: -1px;
}

.journey-schema .journey-percent li {
	height: 15px;
	border: 1px solid #F3F3F3;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: -1px;
}

.journey-current p span.lost {
	color: #67D6D7;
}

.journey-current p span.discovery {
	color: #58BCC4;
}

.journey-current p span.consideration {
	color: #4FD984;
}

.journey-current p span.intention {
	color: #DDBF44;
}

.journey-current p span.purchase {
	color: #D76666;
}

.journey-current p span.experience {
	color: #317992;
}

.journey-current p span.repurchase {
	color: #215D7D;
}

.journey-schema li:nth-of-type(1) .journey-title, .journey-schema li:nth-of-type(1) .journey-percent li.full {
	background: #67D6D7;
}

.journey-schema li:nth-of-type(2) .journey-title, .journey-schema li:nth-of-type(2) .journey-percent li.full {
	background: #58BCC4;
}

.journey-schema li:nth-of-type(3) .journey-title, .journey-schema li:nth-of-type(3) .journey-percent li.full {
	background: #4FD984;
}

.journey-schema li:nth-of-type(4) .journey-title, .journey-schema li:nth-of-type(4) .journey-percent li.full {
	background: #DDBF44;
}

.journey-schema li:nth-of-type(5) .journey-title, .journey-schema li:nth-of-type(5) .journey-percent li.full {
	background: #D76666;
}

.journey-schema li:nth-of-type(6) .journey-title, .journey-schema li:nth-of-type(6) .journey-percent li.full {
	background: #317992;
}

.journey-schema li:nth-of-type(7) .journey-title, .journey-schema li:nth-of-type(7) .journey-percent li.full {
	background: #215D7D;
}

.journey-schema li:nth-of-type(1) .journey-title:after {
	border-left-color: #67D6D7;
}

.journey-schema li:nth-of-type(2) .journey-title:after {
	border-left-color: #58BCC4;
}

.journey-schema li:nth-of-type(3) .journey-title:after {
	border-left-color: #4FD984;
}

.journey-schema li:nth-of-type(4) .journey-title:after {
	border-left-color: #DDBF44;
}

.journey-schema li:nth-of-type(5) .journey-title:after {
	border-left-color: #D76666;
}

.journey-schema li:nth-of-type(6) .journey-title:after {
	border-left-color: #317992;
}

.journey-schema li:nth-of-type(7) .journey-title:after {
	border-left-color: #215D7D;
}

.journey-schema li:nth-of-type(1) .journey-percent li {
	color: #67D6D7;
}

.journey-schema li:nth-of-type(2) .journey-percent li {
	color: #58BCC4;
}

.journey-schema li:nth-of-type(3) .journey-percent li {
	color: #4FD984;
}

.journey-schema li:nth-of-type(4) .journey-percent li {
	color: #DDBF44;
}

.journey-schema li:nth-of-type(5) .journey-percent li {
	color: #D76666;
}

.journey-schema li:nth-of-type(6) .journey-percent li {
	color: #317992;
}

.journey-schema li:nth-of-type(7) .journey-percent li {
	color: #215D7D;
}

/* B4 - TECHNO - PRODUCTS MONITORING  */

.techno-monitoring-wrapper {
	margin-top: 100px;
	display: none;
}

.techno-monitoring-graph {
	width: 80%;
	height: 500px;
	margin: 50px auto 0;
}

/* B5 - TECHNO - SHARED */

.techno-shared-wrapper {
	margin-top: 100px;
	display: none;
}

.techno-shared {
	display: flex;
	justify-content: space-between;
	max-width: 80%;
	margin: 50px auto 100px;
}

.techno-shared article {
	width: calc(25% - 10px);
	overflow: hidden;
	background: #FFF;
	border: 2px solid;
	box-shadow: 0px 6px 49px 0px rgba(220, 220, 220, 0.9);
	border-radius: 15px;
}

.techno-shared article .title {
	background: #f5f6f7;
	text-align: center;
	padding: 25px 0;
}

.techno-shared article div {
	padding: 30px 15px;
}

.techno-shared article div img {
	width: 100%;
}

.techno-shared article:nth-of-type(1) {
	border-color: #f17703;
}

.techno-shared article:nth-of-type(2) {
	border-color: #4285f4;
}

.techno-shared article:nth-of-type(3) {
	border-color: #008373;
}

.techno-shared article:nth-of-type(4) {
	border-color: #67d6d7;
}

.techno-shared-plus {
	display: flex;
	justify-content: space-between;
	margin: 50px 0 100px;
	padding: 0 50px;
}

.techno-shared-plus article {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 45%;
}

.techno-shared-plus article p {
	font-weight: 700;
	color: #002453;
	max-width: 200px;
	text-align: center;
	margin-bottom: 10px;
}

.techno-shared-plus article img {
	width: 100%;
	display: block;
}

/* D1 - OFFSITE - EMAIL */

.offsite-email-wrapper {
	background: #EFEFEF;
	padding: 50px 20px;
}

.email-container {
	margin: auto;
	max-width: 550px;
	background: #FFF;
	padding: 40px;
	text-align: center;
}

.email-logo {
	max-width: 150px;
}

.email-banner {
	width: 100%;
}

.email-text {
	text-align: left;
	font-size: 14px;
	line-height: 1.4em;
	color: #808080;
	margin: 10px 0 30px;
}

.email-cart-title {
	position: relative;
}

.email-cart-title:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
	transform: translateY(-50%);
}

.email-cart-title span {
	font-weight: 700;
	font-size: 20px;
	background: #FFF;
	padding: 0 10px;
	position: relative;
}

.email-cart-products {
	margin-top: 30px;
}

.email-cart-products li {
	margin-bottom: 30px;
}

.email-cart-products li img {
	max-width: 200px;
}

.email-cart-products .email-product-name {
	margin: 5px 0;
}

.email-cart-products .email-product-price {
	font-weight: 700;
}

.email-cart-btn {
	font-size: 16px;
	background: #000;
	color: #FFF;
	padding: 8px 30px;
	margin: 30px 0 50px;
}

.email-mentions {
	font-size: 10px;
	text-align: left;
	color: #808080;
}

/* D2 - OFFSITE - ADWORDS */

.offsite-adwords-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	height: 100%;
	margin-top: 100px;
	display: none;
}

.offsite-adwords-wrapper .inner-header {
	margin: 50px 0;
}

.offsite-adwords-wrapper .adwords-img {}

.offsite-adwords-wrapper .adwords-img img {
	max-width: 800px;
}

/* <!-- Graph monitoring produit --> */

.graph_tooltip {
	padding: 5px;
	display: -ms-grid;
	display: grid;
	font-size: 14px;
	-ms-grid-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
}

.graph_tooltip>p {
	-ms-grid-column: 1;
	grid-column-start: 1;
	-ms-grid-column-span: 4;
	grid-column-end: 4;
	font-weight: bold;
	margin-bottom: 10px;
}

.graph_tooltip>p span {
	font-size: 8px;
	opacity: .6;
	text-transform: uppercase;
	display: block;
}

.graph_tooltip div {
	padding: 2px 0;
	position: relative;
	font-size: 11px;
}

.graph_tooltip div span {
	position: absolute;
	text-transform: uppercase;
	right: 10px;
	bottom: 100%;
	font-size: 7px;
	width: 100%;
	text-align: right;
	opacity: .4;
}

.graph_tooltip .tooltip_label {
	margin-right: 20px;
}

.graph_tooltip div:not(.tooltip_label) {
	text-align: right;
	padding: 2px 10px;
	margin-right: 10px;
}

.tooltip_compared {
	border-left: 1px solid rgba(243, 243, 243, 0.48);
}

.checkedP {
	color: #67D6D7;
}

/* POPIN */

.by-u7pci2#by_overlay {
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0;
	-webkit-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
}

.by_display .by-u7pci2#by_overlay {
	top: 0%;
	opacity: .65;
}

.by-u7pci2.by-wrapper-popin {
	width: 800px;
	height: 500px;
	position: fixed;
	left: 0;
	right: 0;
	top: -100%;
	z-index: 1000000;
	padding: 0px;
	margin: auto;
	border-radius: 5px;
	font-family: 'Roboto', Arial, sans-serif;
	background: url('by_background.png') no-repeat left top #FFF;
	background-size: auto 100%;
	font-weight: 400;
	font-size: 20px;
	color: #444444;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.by_display .by-u7pci2.by-wrapper-popin {
	top: 10%;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.hide_popin .by-u7pci2.by-wrapper-popin {
	-webkit-transform: translate(-200%, 0%) scale(0, 0);
	-moz-transform: translate(-200%, 0%) scale(0, 0);
	-o-transform: translate(-200%, 0%) scale(0, 0);
	transform: translate(-200%, 0%) scale(0, 0);
}

.by-u7pci2 #by_close {
	position: absolute;
	padding: 0;
	top: 20px;
	right: 10px;
	width: 19px;
	height: 5px;
	background: #6b6b6b;
	cursor: pointer;
	opacity: 0.2;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	border-radius: 3px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.by-u7pci2 #by_close:after {
	position: absolute;
	top: -7px;
	right: 7px;
	content: "";
	width: 5px;
	height: 19px;
	background: inherit;
	border-radius: 3px;
}

.by-u7pci2 #by_close:hover, .by-u7pci2 #by_close:focus {
	opacity: 1;
}

.by-u7pci2 .by_right {
	padding: 40px 0px 0 0px;
	text-align: center;
	height: 100%;
	float: right;
	width: 61%;
}

.by-u7pci2 .by_right>img {
	margin-bottom: 40px;
}

.by-u7pci2 .by_title {
	font-weight: bold;
	font-size: 26px;
	margin-bottom: 7px;
}

.by-u7pci2 .by_text {
	font-weight: 300;
	font-size: 22px;
	line-height: 37px;
	margin-bottom: 2px;
}

.by-u7pci2 .by_popin_offer {
	color: #d1ab68;
	margin-bottom: 6px;
}

.by-u7pci2 .by_popin_offer strong {
	font-size: 55px;
	font-weight: 700;
}

.by-u7pci2 .by_subtext {
	font-weight: 300;
}

a#by_popin_btn {
	border-radius: 3px;
	background: #183028;
	color: #FFF;
	font-size: 16px;
	padding: 18px 0px;
	margin: 50px auto 0;
	cursor: pointer;
	display: block;
	width: 190px;
	text-align: center;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	text-transform: uppercase;
	font-weight: bold;
}

#by_popin_btn:hover {
	color: #FFF;
	text-decoration: none;
	background: #5F8628;
}

a#by_popin_btn_code {
	display: none;
	border-radius: 3px;
	border: 1px dashed #183028;
	color: #183028;
	font-size: 25px;
	padding: 13px 0px;
	margin: 50px auto 0;
	cursor: pointer;
	width: 190px;
	text-align: center;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	text-transform: uppercase;
	font-weight: bold;
}

.by-u7pci2 .by_private {
	color: #CACACA;
	font-size: 13px;
	text-decoration: none;
	position: absolute;
	bottom: 10px;
	right: 10px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.by-u7pci2 .by_private:hover {
	text-decoration: underline;
	color: #909090;
}

.by-u7pci2 .by_note {
	position: absolute;
	font-size: 13px;
	bottom: 10px;
	padding-left: 10px;
	opacity: 0.6;
}

@media screen and (max-width: 1400px) {
	.by-u7pci2.by-wrapper-popin {
		-webkit-transform: scale(0.7);
		-moz-transform: scale(0.7);
		-o-transform: scale(0.7);
		transform: scale(0.7);
	}
	.by_display .by-u7pci2.by-wrapper-popin {
		top: 2%;
	}
	.by-u7pci2.by_myoffers {
		-webkit-transform: rotate(90deg) scale(0.7);
		-moz-transform: rotate(90deg) scale(0.7);
		-o-transform: rotate(90deg) scale(0.7);
		transform: rotate(90deg) scale(0.7);
	}
	.show_btn .by-u7pci2.by_myoffers {
		left: -64px;
	}
	.by-u7pci2.by_panel {
		width: 275px;
	}
	.by-u7pci2 .by_panel_container {
		padding: 0 10px;
	}
	.by-u7pci2 .by_panel_title, .by-u7pci2 .by_offers_title {
		font-size: 16px;
		line-height: 18px;
	}
	.by-u7pci2 .by_offer {
		margin-bottom: 10px;
	}
	.by-u7pci2 .by_panel_detail p:first-child strong {
		font-size: 15px;
	}
	.by-u7pci2 .by_description {
		padding: 10px;
	}
	.by-u7pci2 .by_price {
		font-size: 17px;
	}
	.by-u7pci2 .by_produit_title {
		font-size: 13px;
	}
	.by-u7pci2 a.by_btn_product {
		font-size: 12px;
	}
	.by-u7pci2 .by_panel_wsoffers article img {
		width: 95px;
	}
	.by-u7pci2 .by_panel_wsoffers article {
		margin-bottom: 10px;
	}
}