/* New icon menu */
.module_menu {
	display: block;
	height: 100%;
	position: relative;
}

body.has_app_header .page_corner {
	background-color: var(--main-bg-color);
	border-color: var(--main-border-color);
	border-style: solid;
	border-width: 1px 0 0;
}
body.has_module_nav .page_corner {
	border-width: 1px 0 0 1px;
	border-top-left-radius: 8px;
}

body.no_app_help .app_help{
	display: none;
}


/* ASIDE NAVIGATION */
.navigation {
	position: relative;
	z-index: 10;
	width: 240px;
	height: 100%;
	background: #fff;
	border-right: solid 1px #EEEFF4;
	box-shadow: 0 0 5px 0 rgba(93, 99, 126, 0.1);
	transition: width 300ms ease-in-out;
	transform: translate3d(0px, 0px, 0px);
	/* will-change: transform; */
	/* overflow: hidden; */
}
body.hide_nav .navigation {
	width: 56px;
}
body.no_old_nav .navigation{
	display: none;
}
body.no_module_nav .module_menu {
	display: none;
}
body.no_app_header .app_header {
	display: none;
}

.navigation.has_grey_bg{
	background: #F6F7F8;
}
.navigation.is_fixed{
	position: fixed;
	top: 0;
	left: 0;
	width: 180px;
	height: 100%;
	z-index: 11;
}
.navigation_inner{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 240px;
	transition: width 300ms;
}
body.hide_nav .navigation_inner {
	width: 56px;
	/* transition: width 0ms 300ms; */
}

/* HEADER */
.navigation_header{
	border-bottom: solid 1px #EEEFF4;
	height: 56px;
	overflow: hidden;
	background: #fff;
}
.navigation_header_picto{
	width: 40px;
	height: 40px;
	border-radius: 40px;
	margin: 0 7px;
	cursor: pointer;
	transition: background 200ms;
}
.navigation_header_picto:hover,
.navigation_header_picto:focus{
	background: #f5f6f8;
}
.navigation_header_picto .icon_24{
	display: block;
	margin: 8px;
}
.navigation_header_logo{
	margin-left: 12px;
	transition: opacity 300ms;
	cursor: pointer;
}
body.hide_nav .navigation_header_logo {
	opacity: 0;
}

/* BODY */
.navigation_body{
	overflow-x: hidden;
}
.navigation_body::before,
.navigation_body::after{
	content: "";
	display: block;
	margin-bottom: 20px;
}

/* LIST */
.navigation_cat{
	color: var(--grey-4);
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	padding: 6px 18px;
	transition: all 300ms;
}
body.hide_nav .navigation_cat {
	opacity: 0;
	visibility: hidden;
	padding-top: 0;
	padding-bottom: 0;
}
.navigation_list{
	margin-bottom: 16px;
	transition: margin 300ms;
}
body.hide_nav .navigation_list {
	margin-bottom: 0;
}
.navigation_item{
	position: relative;
	cursor: pointer;
	transition: all 200ms;
	user-select: none;
}
.navigation_item:hover,
.navigation_item:focus{
	background: #f5f6f8;
}
.navigation_item.active{
	background: var(--turquoise-light);
}
.navigation_item.active::before{
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	bottom: 7px;
	width: 4px;
	border-radius: 0 4px 4px 0;
	transition: color 200ms;
}
.navigation_item_picto{
	width: 54px;
	min-height: 40px;
}
.navigation_item_picto .icon_24{
	display: block;
	margin-top: 8px;
	margin-left: 16px;
}
.navigation_item_text{
	color: #666C88;
	font-weight: 500;
	font-size: 14px;
	transition: opacity 300ms;
	padding-right: 10px;
}
.navigation_item.active::before{
	background: var(--turquoise);
}
.navigation_item.active .navigation_item_text{
	color: var(--turquoise);
	font-weight: 600;
}

.navigation_item_arrow{
	font-weight: 14px;
	color: #666C88;
	margin-right: 10px;
	transition: transform 250ms ease-out;
}
.navigation_item_arrow.reverse{
	transform: rotate(-180deg);
}

@media (max-height: 800px){
	.navigation_list{
		margin-bottom: 14px;
	}
	.navigation_item_picto{
		width: 54px;
		min-height: 36px;
	}
	.navigation_item_picto .icon_24{
		margin-top: 6px;
	}
}

body.hide_nav .navigation .navigation_item_text {
	opacity: 0;
}

/* HR */
.navigation_hr{
	border-top: solid 1px var(--main-border-color);
	margin: 8px 0;
}

/* FOOTER */
.navigation_card{
	margin: 8px;
	border-radius: 4px;
	background: #F5F6F8;
	cursor: pointer;
	user-select: none;
}
.navigation_card_yellow{
	background: #FFE762;
}
.navigation_card .navigation_item_picto{
	width: 46px;
}
.navigation_card .navigation_item_picto .icon_24{
	margin-left: 8px;
}
.navigation_item_picto .avatar{
	margin: 6px;
}

.navigation_dropdown.dropdown_outer{
	top: auto;
	left: 10px;
	bottom: 56px;
	width: 210px;
}


/* ONLY for Simplify */
.navigation h1 {
	margin: 0;
	text-align: center;
	background: var(--turquoise);
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.navigation h1 a {
	margin-top: 0;
	min-height: 50px;
	display: flex;
	align-items: center;
	padding: 0 20px 0 10px;
	justify-content: space-between;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.navigation h1 a img {
	vertical-align: middle;
	max-width: 120px;
}
.navigation h1 a:hover {
	background: var(--turquoise-dark);
}






.navigation.nav-open {
	left: 0;
}


/* HIDE MAIN NAV */
.navigation.overlay_nav {
	left: 0px;
}

.hide_nav .new-module {
	max-width: 1220px;
	width: 100%;
}

.hide_nav .module-inner aside.sub-nav {
	left: 0;
	top: 50px;
}

/* Creation */
.navigation nav.thumbail-nav {
	position: relative;
	margin: 20px 0 20px 10px;
}

.navigation nav.thumbail-nav .thumbail-position {
	position: absolute;
	z-index: 4;
	top: 102px;
	left: 31px;
	display: block;
	width: 2px;
	height: 33px;
	background: var(--turquoise);
}

.navigation nav.thumbail-nav .thumbail-position:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: -4px;
	display: block;
	width: 10px;
	height: 10px;
	border: 3px solid var(--turquoise);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #FFFFFF;
}

.navigation nav.thumbail-nav p {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 20px;
}

.navigation nav.thumbail-nav ul {
	position: relative;
	margin-bottom: 15px;
	color: var(--grey-2);
}

.navigation nav.thumbail-nav ul:not(:last-child):after {
	content: "";
	position: absolute;
	top: 15px;
	left: 8px;
	display: block;
	width: 2px;
	height: 100%;
	background: var(--grey-2);
}

.navigation nav.thumbail-nav ul.active:after {
	background: var(--turquoise);
}

.navigation nav.thumbail-nav ul li {
	margin-bottom: 4px;
	padding-left: 30px;
	cursor: pointer;
	font-size: 13px;
}

.navigation nav.thumbail-nav ul li:first-child:hover {
	color: var(--turquoise);
}

.navigation nav.thumbail-nav ul li:first-child {
	font-size: 14px;
	position: relative;
	margin-bottom: 8px;
}

.navigation nav.thumbail-nav ul li:first-child a:before {
	content: "1";
	font-size: 10px;
	font-weight: bold;
	line-height: 16px;
	position: absolute;
	z-index: 5;
	left: 0;
	display: inline-block;
	width: 18px;
	height: 18px;
	text-align: center;
	color: var(--turquoise);
	border: 2px solid var(--turquoise);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #F6F7F8;
}

.navigation nav.thumbail-nav ul.active li:first-child {
	color: var(--turquoise);
	font-weight: 500;
}

.navigation nav.thumbail-nav ul li.active {
	color: var(--turquoise);
	font-weight: 500;
}

.navigation nav.thumbail-nav ul.inactive li {
	color: var(--grey-2);
}

.navigation nav.thumbail-nav ul.inactive li:first-child a:before {
	color: var(--grey-2);
	border-color: var(--grey-2);
}

.navigation nav.thumbail-nav ul:nth-of-type(2) li:first-child a:before {
	content: "2";
}

.navigation nav.thumbail-nav ul:nth-of-type(3) li:first-child a:before {
	content: "3";
}

.navigation nav.thumbail-nav ul:nth-of-type(4) li:first-child a:before {
	content: "4";
}

.navigation nav.thumbail-nav ul:nth-of-type(5) li:first-child a:before {
	content: "5";
}

.navigation nav.thumbail-nav ul:nth-of-type(6) li:first-child a:before {
	content: "6";
}

.navigation nav.thumbail-nav ul:nth-of-type(7) li:first-child a:before {
	content: "7";
}

.navigation nav.thumbail-nav ul li:first-child:hover a:before {
	color: var(--turquoise);
	border-color: var(--turquoise);
}

.thumbail-nav-check {
	position: relative;
	padding: 20px 0 20px 10px;
	font-size: 13px;
}

.thumbail-nav-check p {
	font-weight: bold;
	margin-bottom: 20px;
	color: #293133;
}

.thumbail-nav-check ul {
	position: relative;
	margin-bottom: 15px;
}

.thumbail-nav-check ul li {
	margin-bottom: 8px;
	padding-left: 30px;
	cursor: pointer;
	color: var(--grey-2);
	font-weight: 400;
}

.thumbail-nav-check ul li:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 8px;
	display: block;
	width: 2px;
	height: 100%;
	background: var(--grey-2);
}

.thumbail-nav-check ul:last-child li:after {
	display: none;
}

.thumbail-nav-check ul li:first-child {
	position: relative;
}

.thumbail-nav-check ul li.currentNavLink {
	color: var(--turquoise);
	font-weight: bold;
}

/* Round */

.thumbail-nav-check ul li:first-child:before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	display: inline-block;
	width: 18px;
	height: 18px;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 2px solid currentColor;
	background: transparent;
}

.thumbail-nav-check ul li:first-child.activeNavLink:before {
	background: currentColor;
}

/* Check */

.thumbail-nav-check-icon {
	position: absolute;
	top: -1px;
	left: 0;
	width: 18px;
	height: 18px;
	line-height: 18px;
	color: #FFF;
	font-size: 9px;
	text-align: center;
}

.thumbail-nav-check ul li:first-child.activeNavLink .thumbail-nav-check-icon::before {
	content: "\f021";
	font-family: IcoFont!important;
}

/* Arrow */

.thumbail-nav-check .itemPageType {
	margin-top: 10px;
}
.thumbail-nav-check .itemPageType .fas {
	transform: rotateZ(90deg);
	margin-right: 3px;
}
.main-nav .main-nav-top li a {
	height: 35px;
	padding: 0 10px;
}
.main-nav .main-nav-top li a i {
	font-size: 16px;
	min-width: 23px;
	text-align: left;
}
.main-nav .main-nav-top li a i.main-nav-extandable {
	min-width: auto;
}
.main-nav .main-nav-top li a.selected i.main-nav-extandable {
	transform: rotateZ(180deg);
}
.main-nav .main-nav-top li a i span {}

.main-nav .main-nav-bottom {
	margin: 0;
}

.main-nav .main-nav-bottom li {}

.main-nav .main-nav-bottom a {
	flex-direction: row;
	padding: 8px 10px;
	opacity: .7;
}

.main-nav .main-nav-bottom a:hover, .main-nav .main-nav-bottom a.selected {
	opacity: 1;
}

.main-nav .main-nav-bottom a i {
	font-size: 13px;
}

.main-nav .main-nav-bottom a span {
	display: inline-block;
	margin-left: 8px;
}

.nav_client_email {
	background: #FFC618;
	color: black;
	position: relative;
	display: flex;
	justify-content: space-between;
	min-height: 30px;
}

.main-nav li.nav_client_email:before {
	content: "";
	position: absolute;
	height: 0;
	width: 0;
	top: 100%;
	border-top: 6px solid #FFC618;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	left: 50%;
	transform: translateX(-50%);
}

.nav_client_email a {
	display: flex;
	align-items: center;
	flex-direction: row;
	width: 100%;
	padding: 0 7px 0 10px;
	height: 30px !important;
	font-size: 13px;
	color: #293133;
}

.nav_client_email a:hover {
	background: #FFD863;
}

.nav_client_email span {
	width: 100%;
}

.nav_client_email button {
	background: transparent;
	transition: all .2s ease-in-out;
	padding: 0;
}

.nav_client_email button i {
	font-size: 13px;
}

/* CREATION NAVIGATION */
.creation-navigation {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	height: 35px;
	justify-content: space-between;
}
.creation-navigation.has_menu {
	left: 180px;
}
.creation-navigation div ul {
	display: flex;
	height: 100%;
}
.creation-navigation div ul li {
	margin-left: 2px;
	position: relative;
}
.creation-navigation div ul li span {
	font-size: 14px;
	line-height: 15px;
	position: absolute;
	z-index: 200;
	top: 200%;
	display: inline-block;
	visibility: hidden;
	padding: 10px 20px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	white-space: nowrap;
	opacity: 0;
	border-radius: 5px;
	color: #FFF;
	background: #444444;
	pointer-events: none;
}
.creation-navigation div ul li span:before {
	content: "";
	position: absolute;
	top: -7px;
	left: calc(50% - 3px);
	width: 0;
	height: 0;
	border-width: 0 6.5px 7px 6.5px;
	border-style: solid;
	border-color: transparent transparent #444444 transparent;
}
.creation-navigation div ul li button:not(:disabled):hover span {
	top: 125%;
	visibility: visible;
	opacity: 1;
}
.creation-navigation *[class^="btn-"] {
	background: #F6F7F8;
	color: var(--grey-2);
	min-width: 35px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0 10px;
	transition: all .2s ease-in-out;
}

.creation-navigation *[class^="btn-"].btn-hv-red:hover {
	background: #D76666;
	color: #FFF;
}

.creation-navigation *[class^="btn-"]:not(:disabled).btn-hv-blue:hover {
	background: var(--turquoise);
	color: #FFF;
}

.creation-navigation *[class^="btn-"].btn-blue {
	background: var(--turquoise);
	color: #FFF;
}

.creation-navigation *[class^="btn-"].btn-orange {
	background: #FFC618;
	color: #FFF;
}

.creation-navigation *[class^="btn-"].btn-blue:hover {
	background: var(--turquoise-dark);
}

.creation-navigation *[class^="btn-"].btn-orange:hover {
	background: #FFD863;
}

.creation-navigation .disabled {
	opacity: .3;
	cursor: not-allowed !important;
	pointer-events: none;
	background: #bebebe !important;
}

.new-campaign-inner {
	margin-left: 0;
	margin-top: 10%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.new-campaign-client {
	color: var(--grey-2);
}

.new-campaign-inner h1 {
	margin-bottom: 40px;
}

.new-campaign-content {
	display: flex;
}

.new-campaign-content article {
	background: #FFF;
	border-radius: 10px;
	box-shadow: 0px 0px 11px 0px rgba(220, 220, 220, 0.9);
	margin: 0 10px;
	width: 180px;
	overflow: hidden;
	position: relative;
}

.new-campaign-content article:before {
	position: absolute;
	content: "";
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .9);
	opacity: 0;
	visibility: hidden;
}

.new-campaign-content article.disable:before {
	visibility: visible;
	opacity: 1;
}

.new-campaign-content article a {
	display: block;
	padding: 40px 10px 20px;
	position: relative;
}

.new-campaign-content article.disable a {
	pointer-events: none;
}

.new-campaign-content article a:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: none;
	border-radius: 10px;
	transition: all .2s ease-in-out;
	border: 0px solid var(--turquoise);
}

.new-campaign-content article a:hover:before {
	border-width: 3px;
}

.new-campaign-content article:nth-of-type(1) a:before {
	border-color: #8966d8;
}

.new-campaign-content article:nth-of-type(2) a:before {
	border-color: var(--turquoise);
}

.new-campaign-content article:nth-of-type(3) a:before {
	border-color: #FFC618;
}

.new-campaign-content article:nth-of-type(4) a:before {
	border-color: #5CB85C;
}

.new-campaign-content article:nth-of-type(5) a:before {
	border-color: #D76666;
}

.new-campaign-add-icon {
	position: absolute;
	top: 0;
	left: 0;
}

.new-campaign-add-icon i {
	position: relative;
	z-index: 2;
	top: 4px;
	left: 5px;
	font-size: 16px;
	color: #FFF;
	opacity: .5;
}

.new-campaign-add-icon:before {
	position: absolute;
	content: "";
	display: inline-block;
	height: 0;
	width: 0;
	border-top: 40px solid var(--turquoise);
	border-right: 40px solid transparent;
	z-index: 0;
}

.new-campaign-content article:nth-of-type(1) .new-campaign-add-icon:before {
	border-top-color: #8966d8;
}

.new-campaign-content article:nth-of-type(2) .new-campaign-add-icon:before {
	border-top-color: var(--turquoise);
}

.new-campaign-content article:nth-of-type(3) .new-campaign-add-icon:before {
	border-top-color: #FFC618;
}

.new-campaign-content article:nth-of-type(4) .new-campaign-add-icon:before {
	border-top-color: #5CB85C;
}

.new-campaign-content article:nth-of-type(5) .new-campaign-add-icon:before {
	border-top-color: #D76666;
}

.new-campaign-content article img {
	max-width: 120px;
}

.new-campaign-content article p {
	font-family: "Vision", sans-serif;
	font-weight: 700;
	font-size: 15px;
	margin: 20px 0 5px;
	position: relative;
	z-index: 4;
}

.new-campaign-content article .new-campaign-mention {
	font-size: 12px;
	color: var(--grey-2);
	position: relative;
	z-index: 2;
	opacity: 0;
}

.new-campaign-content article.disable .new-campaign-mention {
	opacity: 1;
}

@media screen and (max-width: 1024px) and (min-width: 480px) {
	.navigation {
		width: 50px;
	}
	.navigation h1 a {
		line-height: 50px;
	}
	.navigation h1 a img {
		display: none;
	}
	.navigation h1 a img.logo-mobile {
		display: inline;
	}
	.main-nav a {
		line-height: 50px;
		position: relative;
		padding: 0;
		text-align: center;
	}
	.main-nav a:hover, .main-nav a.selected {
		padding-left: 0;
		color: #FFFFFF;
		background: var(--turquoise);
	}
	.main-nav a span {
		position: absolute;
		left: 100px;
		visibility: hidden;
		width: 230px;
		padding-left: 20px;
		-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;
		text-align: left;
		opacity: 0;
		background: var(--turquoise);
	}
	.main-nav a:hover span {
		left: 50px;
		visibility: visible;
		opacity: 1;
		color: #FFFFFF;
	}
	.navigation nav.thumbail-nav p {
		display: none;
	}
	.navigation.thumbail-nav {
		overflow: hidden;
	}
	.navigation nav.thumbail-nav {
		padding: 30px 0 30px 15px;
	}
	.navigation nav.thumbail-nav ul {
		height: 60px;
	}
}

@media screen and (max-width: 480px) {
	.navigation h1 {
		display: none;
	}
	.navigation {
		top: 50px;
		left: -300px;
	}
	.main-nav a.selected {
		padding-left: 10%;
	}
	.main-nav a:hover {
		padding-left: 10%;
	}
	.main-nav a {
		padding: 5% 0 5% 5%;
	}
}
