@import url(https://fonts.googleapis.com/css?family=Roboto:300,300italic,400,400italic,500,500italic,700,700italic);
.ng-hide.ng-hide-animate {
	display: none !important;
}

/* DASHBOARD */

html, body {
	height: 100%;
}

body {
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	background: #ffffff;
	/*padding: 0px 0px 0px 180px;
	transition: padding .3s ease-in-out;*/
	color: var(--black);

	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased !important;
	-moz-font-smoothing: antialiased !important;
	text-rendering: optimizelegibility !important;
}

@media screen and (max-width: 1024px) and (min-width: 480px) {
	body {
		padding-left: 50px;
	}
}

@media screen and (max-width: 480px) {
	body {
		padding-left: 0;
	}
}

button {
	font-size: inherit;
	color: inherit;
	border: none;
	background: none;
}

.mce-notification {
	display: none !important;
}

/* BOOTSTRAP OVERRIDE */

a:hover, a:focus {
	text-decoration: none;
	outline: none;
}

.custom-inner article .custom-settings-o {
	visibility: visible;
	max-height: 600px;
	opacity: 1;
}

p {
	margin-bottom: 0;
}

p {
	margin: 0;
}

h1 {
	margin: 0 0 30px 0;
}

@media screen and (max-width: 480px) {
	h1 {
		margin-bottom: 30px;
	}
}

.grid {
	overflow: visible;
	min-width: auto;
	max-width: none;
}

.bootstrap-select.btn-group .dropdown-menu {
	width: auto;
	min-width: 100%;
	max-width: none;
}

input:-webkit-autofill {
	background-color: var(--turquoise) !important;
	-webkit-box-shadow: 0 0 0 500px #FAFAFA inset !important;
}

.code_editor {
	overflow: hidden;
	height: 300px;
	position: relative;
	margin-bottom: 20px;
	font-family: inherit;
	padding: 10px;
	width: 100%;
	border: 1px solid #969696;
	background: #FFF;
}

.fromto-wrapper {
	display: flex;
}

.fromto-wrapper div {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 8px;
	-webkit-border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
	border: 1px solid #9E9E9E;
	margin-right: 0;
}

.fromto-wrapper .fromto_date input {
	border: none;
	padding: 0;
	font-size: 14px;
	width: 170px;
	text-align: center;
}

.fromto-wrapper .btn_refresh_data {
	margin-left: 0;
	background: #f6f7f8;
	color: #9e9e9e;
	margin-left: -1px;
	border: 1px solid #9E9E9E;
	-webkit-border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
	min-width: 44px;
	-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;
}

.fromto-wrapper .btn_refresh_data:hover {
	background: var(--turquoise);
	color: #FFF;
}

/* CONNEXION FORM */

.connexionform {
	padding-left: 0;
	background: #F5F6F8;
}

.connexionform aside {
	display: none;
}

.connexionform .popin {
	position: fixed;
	top: 10%;
	left: -webkit-calc(50% - 235px);
	left: -moz-calc(50% - 235px);
	left: calc(50% - 235px);
	overflow: hidden;
	width: 470px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #FAFAFA;
	-webkit-box-shadow: 0 3px 11px 0 rgba(74, 74, 74, .36);
	-moz-box-shadow: 0 3px 11px 0 rgba(74, 74, 74, .36);
	box-shadow: 0 3px 11px 0 rgba(74, 74, 74, .36);
}

.connexionform .popin h1 {
	line-height: 140px;
	margin-bottom: 0;
	text-align: center;
	background: var(--turquoise);
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
}

.connexionform .popin h1 img {
	vertical-align: middle;
	width: 317px;
}

.connexionform .popin form {
	padding: 6% 16% 6%;
}

.connexionform .popin form label {
	position: relative;
	display: block;
}

.connexionform .popin form label i {
	position: absolute;
	top: 10px;
	left: 11px;
	text-align: center;
	color: #8E8E8E;
}

.connexionform .popin form>label:first-child {
	margin-bottom: 25px;
}

.connexionform .popin form input {
	font-size: 16px;
	line-height: 35px;
	width: 100%;
	padding-left: 40px;
	-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;
	border: none;
	border-bottom: 1px solid #969696;
	background: transparent;
	border-radius: 0;
}

.connexionform .popin form input:focus {
	border-bottom: 1px solid var(--turquoise);
	outline: none;
}

.connexionform .popin form input:focus::-webkit-input-placeholder {
	color: var(--turquoise);
}

.connexionform .popin form .btn-checkbox label {
	margin-top: 15px;
	color: #8E8E8E;
}

.connexionform .popin form .btn-checkbox label p {
	font-size: 15px;
}

.connexionform .popin form .btn-checkbox label input:checked+span {
	border: 2px solid var(--turquoise);
}

.connexionform .popin form .btn-checkbox label span {
	width: 15px;
	height: 15px;
	border: 2px solid #CECECE;
}

.connexionform .popin form .btn-checkbox label span:before {
	top: -3px;
	left: -1px;
}

.connexionform .popin form button {
	display: block;
	margin: auto;
	margin-top: 35px;
	padding: 0 30px;
}

.connexionform .popin form>a {
	font-size: 13px;
	display: block;
	width: 175px;
	margin: 30px auto 0;
	text-align: center;
	color: #8E8E8E;
	border-bottom: 1px dotted transparent;
}

.connexionform .popin form a:hover {
	border-bottom: 1px dotted #8E8E8E;
}

.connexionform .popin .signup {
	padding: 20px 0;
	text-align: center;
	background: var(--turquoise);
	-webkit-background-size: 100% auto;
	-moz-background-size: 100% auto;
	background-size: 100% auto;
	-webkit-box-shadow: inset 0 0 8.64px .36px rgba(0, 0, 0, .14);
	-moz-box-shadow: inset 0 0 8.64px .36px rgba(0, 0, 0, .14);
	box-shadow: inset 0 0 8.64px .36px rgba(0, 0, 0, .14);
}

.connexionform .popin .signup p {
	font-size: 16px;
	font-weight: 300;
	margin-bottom: 10px;
	color: #FFFFFF;
}

.connexionform .popin .signup button {
	background: none;
	border: 1px solid #FFF;
	font-weight: 400;
}

.connexionform .popin .signup button a {
	color: #FFF;
}

.login-error-message {
	text-align: center;
	color: #EB6262;
}

.login-success-message {
	text-align: center;
	color: #84D72C;
}

.login-cgv {
	font-size: 12px;
	margin-top: 10px;
}

.login-cgv a {
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.connexionform {
		padding: 10px;
	}
	.connexionform .popin {
		position: relative;
		top: 0;
		left: 0;
		margin: auto;
	}
}

@media screen and (max-width: 530px) {
	.connexionform .popin {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	.connexionform .popin h1 {
		line-height: 100px;
	}
	.connexionform .popin h1 img {
		width: 80%;
	}
	.connexionform .popin form {
		padding: 6% 6% 2%;
	}
	.connexionform .popin form>label:first-child {
		margin-bottom: 20px;
	}
	.connexionform .popin .signup {
		-webkit-background-size: 100% 100%;
		-moz-background-size: 100% 100%;
		background-size: 100% 100%;
	}
}

/* WRAPPER */

.page_wrapper {
	position: relative;
	padding: 30px;
	min-height: 100%;
}

@media screen and (max-width: 480px) {
	.page_wrapper {
		padding: 20px;
	}
}

.center {
	max-width: 680px;
	margin: auto;
	-webkit-transition: margin .2s ease-in-out;
	-moz-transition: margin .2s ease-in-out;
	-o-transition: margin .2s ease-in-out;
	transition: margin .2s ease-in-out;
}

.wrap {
	position: relative;
	width: 110px;
	margin: auto;
	padding: 20px 0;
	text-align: center;
}

.wrap .text {
	font-size: 20px;
	font-weight: bold;
	color: var(--turquoise);
}

.bounceball {
	position: relative;
	width: 15px;
	height: 37px;
	margin: auto;
}

.bounceball:before {
	content: "";
	position: absolute;
	top: 0;
	display: block;
	width: 15px;
	height: 15px;
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	-ms-transform-origin: 50%;
	-o-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: bounce 500ms alternate infinite ease;
	-moz-animation: bounce 500ms alternate infinite ease;
	-o-animation: bounce 500ms alternate infinite ease;
	animation: bounce 500ms alternate infinite ease;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: var(--turquoise);
}

@-webkit-keyframes bounce {
	0% {
		top: 30px;
		height: 5px;
		-webkit-transform: scaleX(2);
		transform: scaleX(2);
		-webkit-border-radius: 60px 60px 20px 20px;
		border-radius: 60px 60px 20px 20px;
	}
	35% {
		height: 15px;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-border-radius: 50%;
		border-radius: 50%;
	}
	100% {
		top: 0;
	}
}

@-moz-keyframes bounce {
	0% {
		top: 30px;
		height: 5px;
		-moz-transform: scaleX(2);
		transform: scaleX(2);
		-moz-border-radius: 60px 60px 20px 20px;
		border-radius: 60px 60px 20px 20px;
	}
	35% {
		height: 15px;
		-moz-transform: scaleX(1);
		transform: scaleX(1);
		-moz-border-radius: 50%;
		border-radius: 50%;
	}
	100% {
		top: 0;
	}
}

@-o-keyframes bounce {
	0% {
		top: 30px;
		height: 5px;
		-o-transform: scaleX(2);
		transform: scaleX(2);
		border-radius: 60px 60px 20px 20px;
	}
	35% {
		height: 15px;
		-o-transform: scaleX(1);
		transform: scaleX(1);
		border-radius: 50%;
	}
	100% {
		top: 0;
	}
}

@keyframes bounce {
	0% {
		top: 30px;
		height: 5px;
		-webkit-transform: scaleX(2);
		-moz-transform: scaleX(2);
		-o-transform: scaleX(2);
		transform: scaleX(2);
		-webkit-border-radius: 60px 60px 20px 20px;
		-moz-border-radius: 60px 60px 20px 20px;
		border-radius: 60px 60px 20px 20px;
	}
	35% {
		height: 15px;
		-webkit-transform: scaleX(1);
		-moz-transform: scaleX(1);
		-o-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		border-radius: 50%;
	}
	100% {
		top: 0;
	}
}

/* SUPPORT */

.support-inner p a {
	color: var(--turquoise);
}

.support-inner .support-success, .support-inner .support-error {
	line-height: 30px;
	max-height: 1000px;
	margin-top: 35px;
	/*display: none;*/
	text-align: center;
}

.support-inner .support-success.ng-hide, .support-inner .support-error.ng-hide {
	max-height: 0;
}

.support-inner .support-success i, .support-inner .support-error i {
	font-size: 50px;
	display: inline;
	color: #84D72C;
}

.support-inner .support-success p, .support-inner .support-error p {
	font-size: 18px;
	font-weight: 400;
	color: #84D72C;
}

.support-inner .support-success p+p, .support-inner .support-error p+p {
	font-size: 16px;
	font-weight: 300;
	color: #293133;
}

.support-inner .support-error i {
	color: #EB6262;
}

.support-inner .support-error p {
	color: #EB6262;
}

.support-inner .label-select {
	display: block;
}

.support-inner form {
	margin-top: 35px;
}

.support-inner form label p {
	font-weight: 300;
}

.support-inner form textarea {
	height: 180px;
	margin-top: 25px;
}

.support-inner form>button {
	margin-top: 25px;
}

/* MY ACCOUNT */

.my_account_inner h3 {
	font-weight: 700;
	margin-top: 50px;
}

.my_account_inner input {
	width: 100%;
	margin-bottom: 25px;
}

.account_key {
	display: inline-block;
	background: #293133;
	color: #FFF;
	padding: 4px 13px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/* CREATE ACCOUNT */

.create_account_inner>button {
	margin-top: 40px;
}

.create_account_inner>label {
	margin-bottom: 30px;
}

/* DRAFT */

.draft-inner .draft-date {
	margin-bottom: 8px;
}

.draft-inner .draft-date:not(:first-child) {
	margin-top: 45px;
}

.draft-inner .draft {
	position: relative;
	margin-bottom: 10px;
	padding: 15px;
	border: 1px solid #D6D6D6;
	background: #FFFFFF;
}

.draft-inner .draft .draft-title, .draft-inner .draft .draft-no-title {
	font-size: 20px;
	padding-right: 60px;
}

.draft-inner .draft .draft-title a:hover, .draft-inner .draft .draft-no-title a:hover {
	-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;
	color: var(--turquoise);
}

.draft-inner .draft .draft-no-title {
	font-style: italic;
}

.draft-inner .draft .draft-description {
	margin-top: 10px;
	color: #8E8E8E;
}

.draft-inner .draft form {
	position: absolute;
	top: 16px;
	right: 7px;
}

.draft-inner .draft form button {
	-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;
	color: #8E8E8E;
}

.draft-inner .draft form button:hover {
	color: var(--turquoise);
}

/* CONNEXION CRM/EMAILING */

.crm-inner .btt-radio {
	margin: 40px 0 30px;
}

@media screen and (max-width: 480px) {
	.crm-inner .btt-radio p {
		width: 85%;
		margin-right: 0 !important;
	}
}

.crm-inner div+.label-top {
	display: none;
	margin-bottom: 55px;
}

.crm-inner .by_table button:hover {
	-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;
	color: var(--turquoise);
}

.crm_template_list li {
	max-width: 200px;
}

/* EDIT ACCOUNT */

.edit-inner article {
	margin-bottom: 40px;
}

.edit-inner article.account_marketing_pressure label>p span {
	display: block;
	color: #9E9E9E;
	font-size: 12px;
}

.edit-inner h1 strong {
	font-size: 30px;
}

.edit-inner .sub-title {
	font-weight: normal;
	margin-top: 20px;
}

.edit-inner .btt-checkbox .label-checkbox {
	margin-bottom: 0;
	font-size: 14px;
}

.edit-inner .btt-checkbox .label-checkbox input:checked+span:before {
	left: 1px;
	top: 1px;
}

.edit-inner .btt-checkbox .label-checkbox p {
	margin: 0 10px 5px 0;
}

.edit-inner .btt-radio .label-radio {
	font-size: 14px;
}

.edit-inner section>div {
	margin-bottom: 20px;
}

.edit-inner .indent2 {
	margin-left: 30px;
}

.edit-inner .flex-2 {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.edit-inner .flex-2>div {
	width: 50%;
}

.script_add .flex-2>div {
	width: auto;
}

.script_add .flex-2>div:nth-of-type(2) {
	width: 100%;
}

.script_add .flex-2>div:not(:last-child) {
	margin-right: 20px;
}

.script_add .delete_script_add {
	line-height: 21px;
	position: relative;
	top: 34px;
	width: 25px;
	height: 25px;
	margin-top: 7px;
	padding: 0;
	-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: center;
	color: #C0C0C0;
	border: 2px solid #C0C0C0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.script_add .delete_script_add:hover {
	color: #EB6262;
	border-color: #EB6262;
}

/* ACCOUNTS */

.accounts_inner .accounts_list {}

.accounts_inner .accounts_list td>a {
	-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;
}

.accounts_inner .accounts_list td>a:hover {
	color: var(--turquoise);
}

.accounts_inner .accounts_list td {
	line-height: 20px;
}

.accounts_inner .accounts_list .admin_account_key {
	color: #b3b3b3;
	font-size: 12px;
	font-weight: 300;
	cursor: pointer;
	-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;
	display: block;
}

.accounts_inner .accounts_list .admin_account_key:hover {
	color: #444;
}

.accounts_inner .accounts_list .admin_account_key.copy_success, .accounts_inner .accounts_list .admin_account_key.copy_success:hover {
	color: #5cb85c;
}

.accounts_inner .accounts_list .admin_account_key span {}

.accounts_inner .data-results {
	margin-top: 45px;
}

.accounts_inner .data-results>p {
	margin-bottom: 15px;
}

.accounts_inner .data-results article {
	display: inline-block;
	min-width: 290px;
	padding: 30px;
	color: #FFFFFF;
	background: var(--turquoise);
}

.accounts_inner .data-results article p:first-child {
	font-size: 45px;
}

.accounts_inner .data-results article p:first-child span {
	font-size: 15px;
}

.accounts_inner .data-results article p:last-child {
	margin-top: -10px;
}

.accounts_inner .data-results article+article {
	margin-left: 20px;
	background: #FBAF40;
}

.accounts_inner .by_table {
	margin-top: 30px;
	border-radius: 15px;
	padding: 30px;
}

.accounts_inner .by_table aside {
	margin-bottom: 30px;
}

.accounts_inner .by_table aside input {
	width: -webkit-calc(100% - 220px);
	width: -moz-calc(100% - 220px);
	width: calc(100% - 220px);
	height: 40px;
	border-radius: 0;
}

.accounts_inner .by_table aside input::-webkit-input-placeholder {
	color: #293133;
}

.accounts_inner .by_table aside a {
	float: right;
}

.edit_account_nav {
	position: fixed;
	top: 70px;
	right: 20px;
	padding: 0px 15px;
	font-weight: normal;
	font-size: 14px;
	line-height: 42px;
}

.edit_account_nav .save_btn {
	width: 35px;
	line-height: 35px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.account_nav ul {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.account_nav ul li {
	padding: 5px 10px;
	margin-right: 10px;
	margin-bottom: 5px;
	background: #FFF;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #9E9E9E;
	cursor: pointer;
	-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;
}

.account_nav ul li:hover {
	border-color: var(--turquoise);
}

.account_nav ul li.active {
	border-color: var(--turquoise);
	color: var(--turquoise);
}

.account_manager_wrapper {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.account_manager {
	width: 50%;
}

article.permissions-inner {
	border: 1px solid grey;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 0 20px 15px;
	margin-top: 20px;
}

.permissions-inner .title {
	display: inline-block;
	background: #ffffff;
	position: relative;
	top: -50%;
	margin-bottom: 0;
	padding: 0 5px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.permissions-inner hr {
	margin: 8px 0;
	border-top: 1px solid grey;
}

.edit-inner .save_btn {
	position: fixed;
	bottom: 10px;
	right: 10px;
}

.ip_address_empty {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 50px;
}

.ip_address_empty .msg {
	color: #9E9E9E;
}

.ip_address_empty button {
	padding: 10px;
	border: 1px solid;
	border-radius: 5px;
	font-size: 16px;
	transition: all .2s ease-in-out;
	background: var(--turquoise);
	color: #FFF;
	margin-top: 10px;
}

.ip_address_empty button:hover {
	background: var(--turquoise-dark);
}

.ip_address_table {
	max-width: 750px;
}

.ip_address_table .table-row {
	display: grid;
	grid-template-columns: 3fr 3fr 2fr;
	column-gap: 10px;
	align-items: center;
}
.ip_address_table .table-row.editing {
	align-items: flex-start;
}

.ip_address_table .table-header {
	position: sticky;
	top: 0;
	border-radius: 5px;
	background: #F6F7F8;
	padding: 10px 15px;
	font-size: 12px;
	font-weight: 700;
}

.ip_address_table .table-header button {
	text-align: right;
	transition: all .2s ease-in-out;
}

.ip_address_table .table-header button:hover {
	color: var(--turquoise);
}

.ip_address_table .table-body {
	border-bottom: 1px solid #F6F7F8;
	padding: 6px 15px;
}

.table-body {
	transition: all .2s ease-in-out;
}

.table-body:hover {
	background: #F6F7F8;
}

.ip_address_table .ip_address {
	position: relative;
}

.ip_address_table input[type=text] {
	width: 100%;
}

.table-action {
	text-align: right;
}

.table-action button {
	opacity: 0;
	color: #f6f7f8;
	transition: all .2s ease-in-out;
	background: #9E9E9E;
	padding: 4px 10px;
	border-radius: 3px;
	font-size: 12px;
}

.table-body:hover button {
	opacity: 1;
}

.table-action button:hover {
	background: var(--turquoise);
}

@media screen and (max-width: 1200px) {
	.accounts_inner .by_table table {
		font-size: 14px;
	}
}

@media screen and (max-width: 768px) {
	.accounts_inner .by_table table {
		text-align: center;
	}
	.accounts_inner .by_table table tbody {
		display: inline-block;
		text-align: left;
	}
	.accounts_inner .by_table th {
		display: none;
	}
	.accounts_inner .by_table td {
		display: block;
		padding: 3px 10px;
	}
	.accounts_inner .by_table td:first-child {
		display: none;
	}
	.accounts_inner .by_table tr:not(:first-child) {
		display: block;
		margin-top: 10px;
		padding-top: 10px;
		border-top: 1px solid #E1E1E1;
	}
	.accounts_inner .by_table td:not(:nth-of-type(2)):before {
		content: attr(data-th);
		display: inline-block;
		width: 160px;
		margin-right: 5px;
	}
	.accounts_inner .by_table tr td:nth-of-type(2) {
		font-weight: bold;
		color: var(--turquoise);
	}
	.accounts_inner .sub-nav ul {
		left: -80px;
	}
	.accounts_inner .sub-nav ul:after {
		right: 114px;
	}
}

@media screen and (max-width: 480px) {
	.accounts_inner .by_table aside input {
		width: 100%;
	}
	.accounts_inner .by_table aside a {
		float: none;
		width: 100%;
		margin-top: 10px;
		text-align: center;
	}
	.accounts_inner .by_table {
		padding: 10px;
	}
	.accounts_inner .by_table table {
		display: block;
	}
	.accounts_inner .by_table table tbody {
		width: 100%;
	}
	.accounts_inner .by_table td:not(:nth-of-type(2)):before {
		content: attr(data-th)" : ";
		font-weight: normal;
		width: auto;
	}
	.accounts_inner .by_table td:not(:nth-of-type(4)):not(:nth-of-type(5)):not(:nth-of-type(7)):before {
		display: block;
	}
}

/* POPIN */

.popin {
	position: fixed;
	z-index: 3;
}

.popin .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(69, 69, 69, .85);
}

.popin .popin-inner {
	position: fixed;
	z-index: 1;
	top: 100px;
	left: 39%;
	width: 600px;
	max-height: 80%;
	padding: 20px 60px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #FFFFFF;
}

.popin .popin-inner h3 {
	margin: 30px 0 20px;
}

.popin .popin-inner section:nth-of-type(1) button {
	font-weight: normal;
	min-width: 227px;
	padding: 7px 0;
	-webkit-transition: all .1s .2s ease-in-out;
	-moz-transition: all .1s .2s ease-in-out;
	-o-transition: all .1s .2s ease-in-out;
	transition: all .1s .2s ease-in-out;
	text-align: center;
	border: 1px solid #8E8E8E;
}

.popin .popin-inner section:nth-of-type(1) button:last-child {
	margin-left: 20px;
}

.popin .popin-inner section:nth-of-type(1) button:hover {
	color: var(--turquoise);
	border: 1px solid var(--turquoise);
}

.popin .popin-inner section:nth-of-type(1) button.selected {
	color: #FFFFFF;
	border: 1px solid var(--turquoise);
	background: var(--turquoise);
}

.popin .popin-inner button.btt-primary {
	margin-top: 30px;
}

.popin .popin-close {
	position: absolute;
	top: 15px;
	right: 15px;
	-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;
	color: #8E8E8E;
}

.popin .popin-close:hover {
	color: #EB6262;
}

.popin .label-select {
	display: block;
}

.popin .label-date .input-group.date {
	width: 160px;
}

.popin button+button {
	margin-left: 10px;
}

.popin .btn_confirm {
	background: var(--turquoise);
}

.popin .btn_cancel {
	background: #C0C0C0;
	color: #FFF;
}

.popin_help {
	font-family: "Vision", Roboto, Arial, sans-serif;
	position: fixed;
	top: -100%;
	left: 180px;
	right: 0;
	margin: auto;
	background: #FFF;
	width: 450px;
	max-height: 60%;
	padding: 25px;
	z-index: 9999999;
	text-align: center;
	border-radius: 5px;
	overflow-y: auto;
	-webkit-transform: scale(.2);
	-moz-transform: scale(.2);
	-ms-transform: scale(.2);
	-o-transform: scale(.2);
	transform: scale(.2);
	visibility: hidden;
	-webkit-transition: transform .3s ease-in-out;
	-moz-transition: transform .3s ease-in-out;
	-o-transition: transform .3s ease-in-out;
	transition: transform .3s ease-in-out;
}

.popin_help.showed {
	top: 21%;
	visibility: visible;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.popin_help {
	text-align: left;
}

.popin_help {
	text-align: left;
}

.popin_help .close {
	font-size: 12px;
	z-index: 9999;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	text-transform: uppercase;
	opacity: .8;
	color: #FFFFFF;
	width: 45px;
	height: 45px;
}

.popin_help .close:before, .popin_help .close:after {
	content: "";
	top: 50%;
	left: 50%;
	position: absolute;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	border-radius: 3px;
	background: #9E9E9E;
}

.popin_help .close:before {
	width: 22px;
	height: 2px;
}

.popin_help .close:after {
	width: 2px;
	height: 22px;
}

.popin_help .close:hover {
	opacity: 1;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.popin_help .title {
	font-size: 20px;
	margin-bottom: 20px;
}

.popin_help .subtitle {
	font-size: 14px;
	font-weight: 700;
}

.popin_help .text {
	font-size: 14px;
	color: #9E9E9E;
	line-height: 1.4;
}

.popin_help_inpage .tags {
	display: flex;
	justify-content: space-around;
	margin-top: 5px;
}

.popin_help_inpage .tags li {
	cursor: pointer;
	text-align: center;
	transition: all .2s ease-in-out;
	border-bottom: 1px solid transparent;
}

.popin_help_inpage .tags li.active, .popin_help_inpage .tags li.active:hover {
	border-bottom: 1px solid var(--turquoise);
}

.popin_help_inpage .tags li:hover {
	color: var(--turquoise);
}

.popin_help_inpage .image {
	max-width: 100%;
	margin-top: 10px;
}

.popin_help_inpage .image img {
	max-width: 100%;
	display: block;
	border: 1px solid #F6F7F8;
}

.popin_starting_options {
	width: 650px;
}

.popin_starting_options .radio_box_inner {}

.popin_starting_options .modal_header, .popin_starting_options .modal_footer {
	text-align: center;
}

.starting_options_ip_intro {
	margin: 16px 0 -10px;
}

.starting_options_action {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--turquoise);
	cursor: pointer;
}

.starting_options_action .fas {
	font-size: 13px;
}

.starting_options_icon {
	display: inline-block;
	padding: 7px 7px;
	color: #9E9E9E;
	cursor: pointer;
	font-size: 16px;
	margin: -7px 0;
}

.starting_options_icon:hover {
	color: var(--turquoise);
}

.starting_options_icon .fa-save, .starting_options_icon:hover .fa-save {
	color: var(--turquoise);
}

.starting_options_icon .fa-times, .starting_options_icon:hover .fa-times {
	color: #d76666;
}

.starting_options_no_ip {
	color: #9E9E9E;
	text-align: center;
	margin: 30px;
}

.starting_options_message {
	font-size: 17px;
	margin: 20px 0 40px;
}

.starting_options_loading {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, .4);
}

.starting_options_loading .spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 40px;
	padding-top: 0;
	margin-left: -25px;
	margin-top: -20px;
}

.popin_permissions {
	width: 650px;
	text-align: center;
}

.popin_permissions .subtitle {
	margin-bottom: 20px;
}

.popin_permissions .step_row {}

.popin_permissions .step_row article {
	justify-content: center;
}

.popin_permissions .radio_box {
	padding: 30px 10px 15px;
	width: 100px;
}

.popin_permissions button {
	padding: 10px;
	color: #FFFFFF;
	font-size: 13px;
	border-radius: 5px;
}

.popin_excution_mode .switch {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px 0 30px;
	font-size: 16px;
	font-weight: 500;
}

.popin_excution_mode .switch p {
	transition: all .2s ease-in-out;
	cursor: pointer;
}

.popin_excution_mode .switch:not(.active) .switch-live {
	color: var(--turquoise);
}

.popin_excution_mode .switch.active .switch-test {
	color: var(--turquoise);
}

.popin_excution_mode .btn_switch {
	width: 40px;
	height: 20px;
	margin: 0 10px;
	border-radius: 40px;
	background: var(--turquoise);
	position: relative;
	cursor: pointer;
}

.popin_excution_mode .btn_switch:hover {
	background: var(--turquoise-dark);
}

.popin_excution_mode .btn_switch span {
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #F6F7F8;
	top: 2px;
	left: 2px;
	transition: all .2s ease-in-out;
}

.popin_excution_mode .switch.active span {
	left: 22px;
}

.popin_labels {
	width: 600px;
	max-height: 80%;
}

.popin_labels.showed {
	top: 0;
	bottom: 0;
}

.popin_labels_inner {
	position: relative;
	font-family: "Roboto", Arial, sans-serif;
}

.popin_labels_empty {
	font-size: 22px;
	text-align: center;
	color: #999;
	margin: 40px 0;
}

.popin_labels_empty .fas {
	font-size: 40px;
	width: 60px;
	margin-bottom: 10px;
}

.popin_labels_campaign {
	margin-top: 12px;
	font-size: 15px;
	font-weight: bold;
}

.popin_labels_add {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	margin-left: 20px;
}

.popin_labels_add, .popin_labels_add:hover {
	color: var(--turquoise);
	cursor: pointer;
}

.popin_labels_add .fas {
	font-size: 12px;
}

.popin_labels_new input[type=text] {
	width: 100%;
}

.popin_labels_category {
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--grey-2);
	margin-bottom: 6px;
}

.label_delete_message {
	font-size: 16px;
	text-align: center;
}

/* PANEL */

.panel-wrapper {
	position: fixed;
	z-index: 50;
	background: #FFF;
	top: 0;
	right: -360px;
	width: 360px;
	height: 100%;
	padding: 40px 30px 30px;
	font-family: "Vision", "Roboto", Arial, sans-serif;
	transition: all .2s ease-in-out;
}

.panel-wrapper.showed {
	right: 0;
}

.panel-inner {}

.panel-header {
	margin-bottom: 30px;
}

.panel-header .title {
	font-size: 20px;
	margin-bottom: 10px;
}

.panel-header .subtitle {
	font-size: 14px;
}

.panel-content {}

.panel-content label {
	width: 100%;
	margin-bottom: 30px;
}

.panel-content label .input-name {
	font-weight: 400;
}

.panel-content label input {
	width: 100%;
	margin-bottom: 0;
}

.current-ip {
	display: flex;
	align-items: center;
	margin: -20px 0 30px;
}

.current-ip p {
	font-size: 12px;
	font-weight: 400;
	margin-right: 5px;
}

.current-ip button {
	background: #F6F7F8;
	display: inline-flex;
	align-items: center;
	border-radius: 3px;
	padding: 5px 5px 5px 10px;
	transition: all .2s ease-in-out;
}

.current-ip button i {
	font-size: 11px;
}

.current-ip button:hover {
	background: var(--turquoise);
	color: #FFF;
}

.panel-btn {
	display: flex;
	justify-content: space-between;
}

.panel-btn button {
	padding: 10px;
	width: calc(50% - 10px);
	border: 1px solid;
	border-radius: 5px;
	font-size: 16px;
	transition: all .2s ease-in-out;
}

.panel-btn .btn-cancel {
	border-color: #707070;
	color: #707070;
}

.panel-btn .btn-cancel:hover {
	border-color: #D76666;
	color: #FFF;
	background: #D76666;
}

.panel-btn .btn-confirm {
	background: var(--turquoise);
	border-color: var(--turquoise);
	color: #FFF;
}

.panel-btn .btn-confirm:hover {
	background: var(--turquoise-dark);
	border-color: var(--turquoise-dark);
}

.panel-wrapper .btn-delete {
	position: absolute;
	bottom: 20px;
	right: 0;
	left: 0;
	margin: auto;
	color: #707070;
	transition: all .2s ease-in-out;
}

.panel-wrapper .btn-delete:hover {
	color: #D76666;
}

/* DESIGN */

.upload_design {
	max-width: 900px;
	margin: 0 auto 40px;
	padding: 50px 30px;
	background: #FFFFFF;
	-webkit-box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
	-moz-box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
	box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
}

.upload_design article {
	padding: 20px;
}

.upload_design .upload_file {
	text-align: center;
	border-right: 2px solid #F5F5F5;
}

.upload_design .upload_move_to {
	font-size: 20px;
	padding: 0 50px 0 70px;
}

.upload_design .upload_move_to>p {
	margin-bottom: 20px;
}

.upload_design .upload_move_to label {
	font-size: 16px;
	font-weight: 400;
	display: block;
	padding: 10px;
	color: #8E8E8E;
	background: #F5F5F5;
}

.upload_design .upload_move_to label span {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #D9D9D9;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #FFFFFF;
}

.upload_design .upload_move_to label input:checked+span {
	border-color: #3B98BF;
}

.upload_design .upload_move_to label input:checked+span+p {
	color: var(--turquoise);
}

.upload_design .upload_move_to label p {
	display: inline;
}

.upload_design .upload_move_to button {
	display: block;
	margin: 22px auto 0;
}

.upload_design .drop_zone {
	line-height: 120px;
	width: 150px;
	height: 100px;
	margin: auto;
	text-align: center;
	vertical-align: middle;
	color: var(--turquoise);
	border: 2px dashed var(--turquoise);
}

.upload_design .drop_zone i {
	display: inline;
}

.upload_design .drop_zone+p {
	font-size: 20px;
	margin-top: 15px;
}

.upload_design p+p {
	margin: 15px 0 20px;
}

.upload_design .label-file+span {
	font-size: 13px;
	display: inline-block;
	color: #8E8E8E;
}


/* GRID */
.column {
	float: left;
}

/* LIGHT GALLERY */

.lg-outer.lg-visible, .lg-sub-html {
	padding-left: 220px;
}

@media screen and (max-width: 1024px) and (min-width: 480px) {
	.lg-outer.lg-visible, .lg-sub-html {
		padding-left: 50px;
	}
}

@media screen and (max-width: 480px) {
	.lg-outer.lg-visible, .lg-sub-html {
		padding-left: 0;
	}
}

/* DASHBOARD */

.dashboard-inner .date-fromto {
	margin-bottom: 60px;
}

.dashboard-inner .modules-inner {
	margin-top: 20px;
	padding: 25px;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
	box-shadow: 0px 6px 49px 0px rgba(220, 220, 220, 0.9);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 15px;
}

.dashboard-inner .modules-inner aside {
	margin-bottom: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.dashboard-inner .modules-inner aside .input_wrapper {
	width: 100%;
	margin-right: 20px;
	position: relative;
}

.dashboard-inner .modules-inner aside .input_wrapper input {
	margin-right: 0;
}

.dashboard-inner .modules-inner aside input {
	width: 100%;
	margin-right: 20px;
	border-radius: 0;
}

.dashboard-inner .modules-inner aside input::-webkit-input-placeholder {
	color: #9E9E9E;
}

.dashboard-inner .modules-inner aside input::-moz-placeholder {
	color: #9E9E9E;
}

.dashboard-inner .modules-inner aside input:-ms-input-placeholder {
	color: #9E9E9E;
}

.dashboard-inner .modules-inner aside input:-moz-placeholder {
	color: #9E9E9E;
}

.dashboard-inner .modules-inner aside .input_cross {
	position: absolute;
	left: 0;
	padding-left: 10px;
	padding-right: 34px;
	max-width: 100%;
	font-weight: 400;
	pointer-events: none;
	color: transparent;
	white-space: nowrap;
	top: 6px;
}

.dashboard-inner .modules-inner aside .input_cross i {
	position: absolute;
	right: 0;
	cursor: pointer;
	pointer-events: auto;
	color: #9E9E9E;
	box-sizing: content-box;
	padding: 8px 4px;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

.dashboard-inner .modules-inner aside .input_cross i:hover {
	color: #d76666;
}

.dashboard-inner .modules-inner aside input:focus+.input_cross {
	display: none;
}

.dashboard-inner .modules-inner aside label {
	float: right;
	width: 210px;
}

.dashboard-inner .modules-inner aside button {
	/*float: right;*/
	/*margin-top: 5px;*/
}

.dashboard-inner .modules-inner aside .btt_filter_past {
	border: 1px solid #b6b6b6;
	cursor: pointer;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-left: 10px;
	padding: 0 10px;
	font-size: 14px;
	margin-bottom: 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;
}

.dashboard-inner .modules-inner aside .btt_filter_past:hover {
	border: 1px solid var(--turquoise);
	color: var(--turquoise);
}

.dashboard-inner .modules-inner aside .btt_filter_past.active, .dashboard-inner .modules-inner aside .btt_filter_past.active:hover {
	border: 1px solid var(--turquoise);
	background: var(--turquoise);
	color: #FFF;
}

.header_inbox {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 60%;
	-webkit-justify-content: flex-end;
	-webkit-box-pack: end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.header_inbox .fromto-wrapper {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 44px;
	margin-left: 20px;
}

.header_inbox .fromto-wrapper .fromto_date {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 8px;
	-webkit-border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
	border: 1px solid #9E9E9E;
	margin-right: 0;
}

.header_inbox .fromto-wrapper button {
	background: #f6f7f8;
	color: #9e9e9e;
	margin-left: -1px;
	border: 1px solid #9E9E9E;
	-webkit-border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
	min-width: 44px;
	-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;
}

.header_inbox .fromto-wrapper button:hover {
	background: var(--turquoise);
	color: #FFF;
}

.dashboard-inner .modules-inner .modules-table tr>*:nth-of-type(2), .dashboard-inner .modules-inner .modules-table tr>*:nth-of-type(2) {
	max-width: 550px;
}

.dashboard-inner .modules-inner .modules-table th a {
	-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;
}

.dashboard-inner .modules-inner .modules-table th {
	position: relative;
}

.dashboard-inner .modules-inner .modules-table th span {
	position: absolute;
	top: -50px;
	display: block;
	visibility: hidden;
	padding: 5px 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;
	white-space: nowrap;
	opacity: 0;
	color: #FFFFFF;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #293133;
}

.dashboard-inner .modules-inner .modules-table th span:after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 10px;
	display: block;
	width: 0;
	height: 0;
	border-width: 7px 8px 0 8px;
	border-style: solid;
	border-color: #293133 transparent transparent transparent;
}

.dashboard-inner .modules-inner .modules-table th:hover span {
	top: -30px;
	visibility: visible;
	opacity: 1;
}

.dashboard-inner .modules-inner .modules-table th a:hover {
	cursor: pointer;
	color: var(--turquoise);
}

.dashboard-inner .modules-inner .modules-table .module-expire-date {
	display: block;
}

.dashboard-inner .modules-inner .modules-table th i {
	margin-left: 10px;
	color: #DCDCDC;
}

.dashboard-inner .modules-inner .modules-table th a:hover i {
	color: var(--turquoise);
}

.dashboard-inner .modules-inner .modules-table tr td:nth-of-type(2) .module-title {
	font-size: 20px;
	line-height: 35px;
}

.dashboard-inner .modules-inner .modules-table tr td:nth-of-type(2) .module-title span {
	font-size: 15px;
}

.dashboard-inner .modules-inner .modules-table tr td:nth-of-type(2) .module-title a {
	-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;
	color: inherit;
}

.dashboard-inner .modules-inner .modules-table tr td:nth-of-type(2) .module-title a:hover {
	color: var(--turquoise);
}

.dashboard-inner .modules-inner .modules-table tr td:nth-of-type(2) p+p {
	color: #8E8E8E;
}

.campaign-sub-nav .sub-nav {}

.campaign-sub-nav.sub-nav>button {
	padding: 0;
	color: #9E9E9E;
	-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;
}

.campaign-sub-nav.sub-nav .campaign-sub-nav-visible {
	cursor: pointer;
	color: #F6F7F8;
	-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;
}

.dashboard_table_onsite .dashboard_row:hover .campaign-sub-nav.sub-nav .campaign-sub-nav-visible {
	color: #9E9E9E;
}

.campaign-sub-nav.sub-nav .campaign-sub-nav-visible:hover, .dashboard_table_onsite .dashboard_row:hover .campaign-sub-nav.sub-nav .campaign-sub-nav-visible:hover, .campaign-sub-nav.sub-nav>button:hover {
	color: var(--turquoise);
}

.dashboard-inner .sub-nav ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	width: auto;
	margin: 0 auto;
	white-space: nowrap;
}

.dashboard-header {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	-webkit-box-align: start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.dashboard-header h1 {
	margin-bottom: 0;
}

.dashboard_new_campaign {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.dashboard_new_campaign a {
	margin: auto;
	background: var(--turquoise);
	padding: 10px;
	color: #FFF;
	display: inline-block;
	text-align: center;
}

.dashboard_new_campaign a i {
	margin-right: 5px;
}

.module-inner {
	position: relative;
	margin-left: 270px;
}

.module-inner h1 {
	margin-bottom: 0;
	flex: 1 1 auto;
}

.module-inner aside.sub-nav {
	position: fixed;
	display: block;
	top: 0px;
	left: 180px;
	overflow-y: auto;
	width: 250px;
	height: 100%;
	padding: 13px 20px;
	background: #FFFFFF;
	-webkit-box-shadow: 0 0 7px 0.11px rgba(197, 197, 197, 0.5);
	-moz-box-shadow: 0 0 7px 0.11px rgba(197, 197, 197, 0.5);
	box-shadow: 0 0 7px 0.11px rgba(197, 197, 197, 0.5);
	-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;
}

.module-inner aside.sub-nav h3 {
	margin: 30px 0;
}

.module-inner aside.sub-nav article {
	margin-bottom: 15px;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 12px;
}

.module-inner aside.sub-nav article a {
	word-wrap: break-word;
	color: #9e9e9e;
}

.module-inner aside.sub-nav article a:hover {
	color: #444;
}

.module-inner aside.sub-nav article span {
	width: 10px;
	height: 10px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin: 3px 10px 0 0;
}

.module-inner aside.sub-nav article p[class*="module"] {
	display: inline-block;
}

.module-inner aside.sub-nav a.current-module {
	font-weight: bold;
	color: #444;
}

.module-inner aside.module-actions {
	position: absolute;
	top: 0;
	right: 0;
}

.module-inner aside.module-actions>* {
	display: inline;
}

.module-inner aside.module-actions div {
	position: relative;
}

.module-inner aside.module-actions div:hover p {
	cursor: pointer;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}

.module-inner aside.module-actions div p.btt-orange:hover {
	background: #FBAF40;
}

.module-inner aside.module-actions div ul {
	position: absolute;
	left: 0;
	overflow: hidden;
	width: 100%;
	max-height: 0;
	padding: 10px 14px;
	-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;
	opacity: 0;
	border: 1px solid #FBAF40;
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
	background: #FFFFFF;
}

.module-inner aside.module-actions div:hover ul {
	max-height: 200px;
	opacity: 1;
}

.module-inner aside.module-actions div li {
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}

.module-inner aside.module-actions div li:hover {
	cursor: pointer;
	color: #FBAF40;
}

.module-inner aside.module-actions div li:not(:last-child) {
	margin-bottom: 10px;
}

.module-inner .module-data {
	margin-top: 30px;
}

.dashboard-inner .module-data .empty-state {
	height: 540px;
	padding: 30px 50px 50px;
	text-align: center;
	background: #FFFFFF;
	-webkit-box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
	-moz-box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
	box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
}

.dashboard-inner .module-data .empty-state h2 {
	margin: 10% 0 20px;
}

.dashboard-inner .module-data .empty-state button {
	margin-top: 60px;
}

.dashboard-inner .modules-table .empty-state {
	text-align: center;
}

.dashboard-inner .modules-table .empty-state p {
	font-size: 19px;
	font-style: italic;
}

.dashboard-inner .modules-table .empty-state button {
	margin-top: 10px;
}

.btn_create_remarketing {
	margin-top: 50px;
}

@media screen and (max-width: 1275px) {
	.dashboard-inner .modules-table th, .dashboard-inner .modules-table td:first-child {
		display: none;
	}
	.dashboard-inner .modules-table tr:not(:first-child) {
		display: block;
		margin-top: 10px;
		padding-top: 10px;
		border-top: 1px solid #E1E1E1;
	}
	.dashboard-inner .modules-table td {
		padding: 5px;
	}
	.dashboard-inner .modules-table td {
		display: block;
	}
	.dashboard-inner .modules-table td[data-th="Title"] .module-title {
		font-weight: bold;
		color: var(--turquoise);
	}
	.dashboard-inner .modules-table td[data-th="State"] p {
		display: inline;
		padding: 3px 5px;
	}
	.dashboard-inner .modules-table td[data-th="Start"], .dashboard-inner .modules-table td[data-th="End"] {
		display: inline;
	}
	.dashboard-inner .modules-table td[data-th="Start"]:before {
		content: "from ";
		margin-right: 6px;
		color: #BBBBBB;
	}
	.dashboard-inner .modules-table td[data-th="End"]:before {
		content: " to ";
		margin-right: 6px;
		color: #BBBBBB;
	}
	span.label {
		display: inline-block;
		padding: 5px 10px;
	}
	.dashboard-inner .modules-table td:nth-of-type(n+6):not(:last-child):before {
		content: attr(data-th) " : ";
	}
}

@media screen and (max-width: 768px) {
	.dashboard-inner .modules-inner {
		padding: 20px 30px;
	}
	.dashboard-inner .modules-inner aside input {
		width: 100%;
	}
	.dashboard-inner .modules-inner aside label {
		width: 100%;
		margin: 10px 0 20px;
	}
}

@media screen and (max-width: 480px) {
	.dashboard-inner .modules-table td[data-th="Start"], .dashboard-inner .modules-table td[data-th="End"] {
		display: block;
	}
}

.modules-header {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}

.modules-header>h2 {
	margin-top: 0;
	margin-bottom: 0;
}

.dashboard_table {
	display: -ms-grid;
	display: grid;
	font-family: "IBM Plex Sans", "Roboto", Arial, sans-serif;
}

.dashboard_table_onsite {}

.dashboard_table_onsite .dashboard_row {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 2.1fr 1fr 1fr 1fr 1fr 90px;
	grid-template-columns: 2.1fr 1fr 1fr 1fr 1fr 90px;
	padding: 0;
	background: #FFF;
	transition: all .1s ease-in-out;
}

.dashboard_table_onsite .dashboard_row:hover {
	background: #f6f7f8;
}

.dashboard_table_onsite .dashboard_row>div {
	padding: 10px;
}

.dashboard_table_email {
	-ms-grid-columns: 500px 1fr 1fr 1fr 1fr 90px;
	grid-template-columns: 500px 1fr 1fr 1fr 1fr 90px;
}

.dashboard_table>div {
	padding: 10px;
}

.dashboard_table .grid-head {
	cursor: pointer;
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	background: #F6F7F8;
	font-size: 12px;
	font-weight: 700;
	color: #293133;
	text-transform: uppercase;
	transition: all .2s ease-in-out;
}

.dashboard_table .grid-head:hover {
	color: var(--turquoise);
}

.dashboard_table .grid-head i {
	color: var(--turquoise);
}

.dashboard_table .grid-campaign {
	border-top: 1px solid #EDEDED;
}

.dashboard_table .campaign-title {
	font-weight: 600;
}

.campaignId {}

.campaign-id p {
	color: #b3b3b3;
	font-size: 12px;
	font-weight: 300;
	cursor: pointer;
	display: inline-block;
	-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;
}

*.copy_success {
	-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;
}

*.copy_success, *.copy_success:hover {
	color: #5cb85c;
}

.campaignId p:not(.copy_success):hover {
	color: #444;
}

.dashboard_table .campaign-detail {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: flex-start;
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 3px 0;
}

.dashboard_table .campaign-links-label {
	font-size: 14px;
}

.urldebug {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 3px 0;
}

.urldebug div {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #F6F7F8;
	color: #9E9E9E;
	font-size: 11px;
	border-radius: 3px;
	margin: 3px 8px 3px 0;
}

.urldebug div a {
	border: 1px solid #EDEDED;
	color: #9E9E9E;
	padding: 5px;
	border-radius: 3px 0 0 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;
	white-space: nowrap;
}

.urldebug div a i {
	font-size: 10px;
}

.urldebug i {}

.urldebug div button {
	border: 1px solid #EDEDED;
	border-left: none;
	padding: 5px 3px;
	border-radius: 0 3px 3px 0;
	-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;
}

.urldebug div a:hover, .urldebug div button:hover {
	background: var(--turquoise);
	color: #FFF;
}

.urldebug div button span {
	position: absolute;
	opacity: 0;
	z-index: -999999;
	left: -10000px;
}

.urldebug div button.copy_success {
	background: #5cb85c;
	color: #FFF;
}

/* Label */

.campaign_label {
	display: inline-block;
	vertical-align: middle;
	padding: 2px 8px;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: #8A8FA3;
	border: solid 1px currentColor;
	background: transparent;
	border-radius: 20px;
	user-select: none;
}

a.campaign_label {
	cursor: pointer;
}

/* Default */
.campaign_label:not(.selected):hover,
.campaign_label.campaign_label_color:not(.selected) {
	color: #6a7084;
}

.campaign_label_blue:not(.selected):hover,
.campaign_label_blue.campaign_label_color:not(.selected) {
	color: #5DA9EA;
}

.campaign_label_green:not(.selected):hover,
.campaign_label_green.campaign_label_color:not(.selected) {
	color: #5CB85C;
}

.campaign_label_red:not(.selected):hover,
.campaign_label_red.campaign_label_color:not(.selected) {
	color: #E35D5D;
}

.campaign_label_orange:not(.selected):hover,
.campaign_label_orange.campaign_label_color:not(.selected) {
	color: #F59727;
}

.campaign_label_yellow:not(.selected):hover,
.campaign_label_yellow.campaign_label_color:not(.selected) {
	color: #FFCD36;
}

.campaign_label_purple:not(.selected):hover,
.campaign_label_purple.campaign_label_color:not(.selected) {
	color: #8967D7;
}

/* Hover */

.campaign_label:not(.selected):hover {
	background-color: #6a708411;
}

.campaign_label_blue:not(.selected):hover {
	background-color: #5DA9EA11;
}

.campaign_label_green:not(.selected):hover {
	background-color: #5CB85C11;
}

.campaign_label_red:not(.selected):hover {
	background-color: #E35D5D11;
}

.campaign_label_orange:not(.selected):hover {
	background-color: #F5972711;
}

.campaign_label_yellow:not(.selected):hover {
	background-color: #FFCD3611;
}

.campaign_label_purple:not(.selected):hover {
	background-color: #8967D711;
}

/* Selected */

.campaign_label.selected {
	color: #fff;
	background: #6a7084;
}

.campaign_label.campaign_label_blue.selected {
	background: #5DA9EA;
}

.campaign_label.campaign_label_green.selected {
	background: #5CB85C;
}

.campaign_label.campaign_label_red.selected {
	background: #E35D5D;
}

.campaign_label.campaign_label_orange.selected {
	background: #F59727;
}

.campaign_label.campaign_label_yellow.selected {
	background: #FFCD36;
}

.campaign_label.campaign_label_purple.selected {
	background: #8967D7;
}

.campaign_label_remove {
	color: #fff;
	width: 0;
	overflow: hidden;
	display: inline-block;
	vertical-align: text-bottom;
	transition: width 100ms;
}

.campaign_label.selected .campaign_label_remove {
	width: 16px;
}

.campaign_label_remove i {
	vertical-align: middle;
}

.dashboard_labels {
	margin: -24px 0 16px;
	overflow: hidden;
}

.campaign_label_list {
	margin-top: -4px;
}

.campaign_label_list.inline{
	display: inline-block;
}

.campaign_label_list>li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
	margin-top: 4px;
}

.campaign_label_list.l {
	margin-top: -8px;
}

.campaign_label_list.l>li {
	margin-right: 8px;
	margin-top: 8px;
}

.campaign_label_list.l .campaign_label,
.campaign_label.l {
	font-size: 13px;
	padding: 6px 12px;
}

.campaign_label_list.xl {
	margin-top: -8px;
}

.campaign_label_list.xl>li {
	margin-top: 10px;
}
.campaign_label_list_vert>li:nth-child(odd){
	margin-right: 16px;
}
.campaign_label_list_vert>li:nth-child(even){
	margin-right: 0;
}

.campaign_label_list.xl .campaign_label {
	font-size: 14px;
	padding: 8px 14px;
}

.campaign_label_list_vert>li {
	width: calc(50% - 8px);
}
.campaign_label_list_vert_3>li {
	width: calc(33.33% - 8px);
}
.campaign_label_list_vert_3>li:nth-child(3n+1),
.campaign_label_list_vert_3>li:nth-child(3n+2){
	margin-right: 12px;
}
.campaign_label_list_vert_3>li:nth-child(3n+3){
	margin-right: 0;
}

.campaign_label_list_vert .campaign_label {
	display: flex;
	align-items: center;
}

.campaign_label_list_vert .campaign_label_txt {
	flex: 1 1 auto;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.campaign_label_list_vert .fas {
	flex: 0 0 auto;
}

.campaign_label_action {
	display: inline-block;
	vertical-align: middle;
	font-weight: 500;
	font-size: 14px;
	color: var(--turquoise);
	text-transform: uppercase;
	cursor: pointer;
	margin-left: 6px;
	padding: 7px 0;
	line-height: 16px;
}

.opertion_campaign_label_action {
	display: inline-block;
	margin-top: 10px;
}

/* label_list */

.label_edition_list>li {
	padding: 4px 0;
	border-bottom: solid 1px #eee;
}

.label_edition_list>li:first-child {
	padding-top: 0;
}

.label_edition_list .flex_item_full {
	margin-right: 10px;
}

.label_edition_action {
	display: block;
	padding: 7px 7px;
	color: #9E9E9E;
	cursor: pointer;
	font-size: 16px;
}

.label_edition_action:hover {
	color: var(--turquoise);
}

.label_edition_action .fa-save, .label_edition_action:hover .fa-save {
	color: var(--turquoise);
}

.label_edition_action .fa-times, .label_edition_action:hover .fa-times {
	color: #d76666;
}

.label_edition_list .color_picker {
	margin-right: 10px;
}

/* Status */

.campaign-status .label {
	display: inline-block;
	font-size: 11px;
	padding: 3px 6px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #FFF;
	margin-right: 10px;
}

.campaign-status.label-success {
	background: #5cb85c;
}

.campaign-status.label-scheduled {
	background: #FFC300;
}

.campaign-status.label-primary {
	background: #8E8E8E;
}

.campaign-status.label-warning {
	background: #EB6262;
}

.dashboard_table .campaign-status .label {
	min-width: 60px;
	vertical-align: top;
}

.dashboard_table .campaign-test {
	display: inline-block;
}

.dashboard_table .campaign-test span {
	background: #F6F7F8;
	color: #9E9E9E;
	border: 1px solid #F6F7F8;
	font-size: 11px;
	font-weight: 500;
	margin-top: 5px;
	display: inline-block;
	text-align: center;
	transition: all .2s ease-in-out;
}

.dashboard_table_onsite .dashboard_row:hover .campaign-test span {
	border-color: #9E9E9E;
}

.dashboard_table .campaign-test:hover span, .dashboard_table_onsite .dashboard_row:hover .campaign-test span:hover {
	background: var(--turquoise);
	color: #FFF;
	border-color: var(--turquoise);
	cursor: pointer;
}

.dashboard_table .campaign-test span i {
	width: auto;
}

.dashboard_table .campaign-date {
	font-size: 14px;
}

.dashboard_table .campaign-date span {
	color: #b3b3b3;
	font-size: 14px;
}

.dashboard_table .campaign-description {
	color: #b3b3b3;
	font-size: 14px;
}

/* DASHBOARD - WELCOME SCREEN */

section.welcome {
	position: relative;
	top: -60px;
	left: -61px;
	width: -webkit-calc(100% + 121px);
	width: -moz-calc(100% + 121px);
	width: calc(100% + 121px);
	padding: 20px 60px 30px;
	background: #FFFFFF;
	-webkit-box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
	-moz-box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
	box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
}

section.welcome h2 {
	margin-bottom: 30px;
}

section.welcome>p:not(:last-child) {
	margin-bottom: 10px;
}

section.welcome article {
	float: left;
	width: 30%;
	margin-bottom: 30px;
	padding-right: 30px;
}

section.welcome article h5 {
	font-weight: bold;
}

section.welcome article p {
	line-height: 25px;
}

section.welcome article a {
	margin-top: 20px;
}

section.welcome article+p {
	clear: both;
	padding-top: 20px;
}

section.welcome article+p a {
	color: var(--turquoise);
}

section.welcome article+p a:hover {
	border-bottom: 1px dotted var(--turquoise);
}

section.welcome .welcome_close {
	position: absolute;
	right: 50px;
	bottom: 30px;
	padding: 10px 20px;
	cursor: pointer;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
	color: #919191;
	background: #EEEEEE;
}

section.welcome .welcome_close:hover {
	color: #6C6C6C;
	background: #DFDFDF;
}

section.welcome {
	overflow: hidden;
	/*visibility: visible;*/
	max-height: 1000px;
	-webkit-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}

section.welcome.welcome-none {
	top: -400px;
	max-height: 0;
	/*visibility: hidden;*/
	padding: 0;
}

@media screen and (max-width: 480px) {
	section.welcome article {
		width: 100%;
	}
}

/* CREATE MODULE - MODULE NAVIGATION */

.campaign-warnings {
	position: fixed;
	bottom: 0;
	z-index: 99999;
	background: #FFC618;
	width: calc(100% - 180px);
	right: 0;
	padding: 10px;
	text-align: center;
}

.campaign-warnings p {}

.campaign-warnings p strong {
	font-weight: 700;
}

.campaign-warnings p a {
	display: inline-block;
	border-bottom: 1px solid;
}

/* CREATE MODULE - FIRST STEP */

.new-module {
	max-width: 1000px;
	min-width: 720px;
	margin: 0 auto;
}

.new-module>button {
	margin-bottom: 150px;
	float: right;
}

.step_row .title {
	font-weight: 500;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	margin-bottom: 10px;
	font-size: 15px;
}

.step_row .sub_title {}

.step_row .desc {
	margin-top: -10px;
	margin-bottom: 10px;
	color: #777;
	font-size: 13px;
}

.step_row .tooltip_inner {
	position: relative;
	display: inline-block;
}

.step_row .tooltip_inner i {
	margin-left: 5px;
	opacity: .4;
	-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;
}

.step_row .tooltip_inner:hover i {
	opacity: 1;
}

.step_row .tooltip_content {
	position: absolute;
	font-size: 13px;
	font-weight: normal;
	background: #38444A;
	padding: 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	top: 0;
	cursor: pointer;
	left: 250%;
	width: 350px;
	color: #FFF;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	-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;
}

.step_row .tooltip_inner:hover .tooltip_content, .step_row .tooltip_inner:focus .tooltip_content {
	opacity: 1;
	left: 150%;
	visibility: visible;
}

.step_row.l {
	margin-bottom: 40px;
}

.new-module section {
	position: relative;
	margin-bottom: 30px;
}

.new-module section .step {
	position: absolute;
	top: 4px;
	left: -60px;
	color: #C0C0C0;
	font-size: 12px;
}

.new-module section h3 {
	font-weight: normal;
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #C3C3C3;
}

.new-module section label .format-name {
	font-size: 14px;
	line-height: 1.2;
	margin: 10px 0 5px;
}

.new-module section label .format-description {
	font-weight: 400;
	color: #9E9E9E;
	line-height: 1.4;
	font-size: 12px;
	padding: 0 10px 5px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .2s .1s ease-in-out;
	-moz-transition: all .2s .1s ease-in-out;
	-o-transition: all .2s .1s ease-in-out;
	transition: all .2s .1s ease-in-out;
}

.new-module section li:hover label .format-description, .new-module section li.active label .format-description, .new-module section li.active:hover label .format-description {
	visibility: visible;
	opacity: 1;
}

.new-module section .label-top {
	margin-bottom: 30px;
}

.new-module section .label-top.has-siblings {
	margin-bottom: 10px;
}

.new-module .indicators article {
	margin: 20px 0;
	padding-left: 35px;
}

.new-module .indicators .indicator-btt {
	padding: 0;
}

.new-module .indicators .indicator-btt i {
	line-height: 21px;
	display: inline-block;
	width: 25px;
	height: 25px;
	margin-right: 5px;
	color: #C0C0C0;
	border: 2px solid #C0C0C0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.retarget {
	margin-top: 30px;
}

.inbox_main {}

.inbox_main div {}

.inbox_main .inbox_schema {
	text-align: center;
	margin: 50px 0 20px;
}

.inbox_main .inbox_schema img {
	max-width: 350px;
}

.inbox_main div label {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: flex-start;
	-webkit-box-align: start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.inbox_main div label p {
	min-width: 140px;
	margin-top: 10px;
}

.inbox_main div label input {
	width: 100%;
}

.inbox_main div label textarea {
	width: 100%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	resize: none;
	border: 1px solid #969696;
	padding: 10px;
}

.divide_flow {
	margin-top: 50px;
}

.divide_flow .label-range {
	width: 100%;
}

.divide_flow .slider.slider-horizontal {
	width: 100%;
}

.campaign_from_to article {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.campaign_from_to article>p:not(:first-child) {
	margin-left: 10px;
}

.campaign_from_to article>label {
	margin-left: 10px;
}

.new-module .btt-checkbox p {
	margin-bottom: 0;
}

.splitted_flow {}

.splitted_flow .label-number {
	width: 110px;
}

.splitted_flow>article {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-wrap: wrap;
}

.splitted_flow .text {
	width: 100%;
	margin-bottom: 10px;
}

.splitted_flow>article label {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.radio_box_inner {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.radio_box_inner input {
	display: none;
}

.radio_box {
	background: #FFF;
	border: 1px solid #969696;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	width: 125px;
	position: relative;
	text-align: center;
	line-height: 14px;
	font-weight: normal;
	padding: 30px 15px 15px;
	margin-bottom: 20px;
	position: relative;
}
.radio_box.no_bottom_margin {
	margin-bottom: 0;
}

.radio_box.s {
	padding: 20px 12px 12px;
}

.radio_box:not(:last-child) {
	margin-right: 15px;
}

.radio_box.disabled {
	opacity: .3;
	pointer-events: none;
}

.radio_box:before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: -webkit-calc(100% + 2px);
	width: -moz-calc(100% + 2px);
	width: calc(100% + 2px);
	height: -webkit-calc(100% + 2px);
	height: -moz-calc(100% + 2px);
	height: calc(100% + 2px);
	border: 3px solid var(--turquoise);
	opacity: 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-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;
}

.radio_box:hover:before, .radio_box:focus:before, .radio_box.checked:before {
	opacity: 1;
}

.radio_box span {
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	background: var(--turquoise);
	color: #FFF;
	font-size: 12px;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 2px;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-border-radius: 5px 0 5px 0;
	-moz-border-radius: 5px 0 5px 0;
	border-radius: 5px 0 5px 0;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-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;
}

.radio_box.checked span {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.radio_box>i {
	width: 60px;
	font-size: 25px;
	margin-bottom: 14px;
}

.radio_box p {
	overflow: hidden;
	text-overflow: ellipsis;
}

.custom_content_option {}

.custom_content_option .title {
	font-weight: bold;
	margin-bottom: 10px;
}

.custom_content_option article {
	margin: 0 20px 20px 0;
	border: 1px solid #969696;
}

.custom_content_option article label {
	margin: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border: none;
}

.custom_content_option article .radio_box:before {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.custom_content_option .title {}

.content_option_container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 1650px) {
	.new-module {}
}

@media screen and (max-width: 1450px) {
	.new-module {
		width: 80%;
		min-width: auto;
	}
	.module-navigation {
		width: 40px;
	}
	.module-navigation button:last-child {
		overflow: hidden;
		width: 40px;
		height: 40px;
		padding: 0;
	}
}

@media screen and (max-width: 1024px) {
	.new-module {
		margin: 0;
	}
	.new-module section .step {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.new-module {
		width: 100%;
		margin-top: 30px;
	}
	.module-navigation {
		z-index: 200;
		top: 51px;
		right: 0;
		left: 50px;
		width: 92.4%;
		padding: 9px 0 0 10px;
		text-align: center;
		background: #FCFCFC;
		-webkit-box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
		-moz-box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
		box-shadow: 0 0 10.89px .11px rgba(89, 89, 89, .39);
	}
}

@media screen and (max-width: 480px) {
	.module-navigation {
		left: 0;
		width: 100%;
	}
}

/* CREATE MODULE - SECOND STEP - TARGET */

.target-inner article {
	padding-bottom: 60px;
}

.target-inner h4 {
	font-weight: bold;
	position: relative;
	margin-bottom: 20px;
	color: var(--turquoise);
}

.target-inner h4:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 17px;
	right: 0;
	display: block;
	width: 100%;
	height: 2px;
	background: var(--turquoise);
}

.target-inner h4 span {
	padding-right: 20px;
	background: #F3F3F3;
}

.new-module section.persona_list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.persona_list article {
	background: #FFF;
	padding: 15px 20px;
	position: relative;
	margin: 0 2% 20px 0;
	width: 23%;
	opacity: .4;
	cursor: pointer;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(74, 74, 74, 0.3);
	-moz-box-shadow: 0px 1px 5px 0px rgba(74, 74, 74, 0.3);
	box-shadow: 0px 1px 5px 0px rgba(74, 74, 74, 0.3);
	-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;
}

.persona_list article:hover, .persona_list article:focus, .persona_list article.current {
	opacity: 1;
}

.persona_list .persona_delete {
	position: absolute;
	top: 0;
	right: 0;
	color: #d6d6d6;
	width: 24px;
	height: 24px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
}

.persona_list .persona_delete i {
	-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;
}

.persona_list .persona_delete:hover i, .persona_list .persona_delete:focus i {
	color: #EB6262;
	-webkit-transform: rotateZ(180deg);
	-moz-transform: rotateZ(180deg);
	-o-transform: rotateZ(180deg);
	-ms-transform: rotate(180deg);
	transform: rotateZ(180deg);
}

.persona_list .persona_name {
	font-weight: bold;
	font-size: 16px;
}

.persona_list .persona_triggers, .persona_list .persona_audience {
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 300;
}

.persona_list .persona_audience strong, .persona_list .persona_triggers strong {
	font-size: 15px;
	font-weight: bold;
}

.persona_list .btt-add-persona {
	width: 23%;
	border: 2px dashed #c0c0c0;
	color: #c0c0c0;
	margin: 0 2% 20px 0;
	-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;
}

.persona_list .btt-add-persona:hover {
	color: #444;
}

.target-inner .target-devices label.device i {
	display: inline;
}

.target-inner .target-devices label.device input {
	display: none;
}

.target-inner .target-devices label.device div {
	width: 110px;
	height: 120px;
	margin: 20px 10px 0 0;
	padding-top: 20px;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
	text-align: center;
	border: 2px solid #8E8E8E;
	background: #FFFFFF;
}

.target-inner .target-devices label.device div:hover {
	border-color: var(--turquoise);
}

.target-inner .target-devices label.device input:checked+div {
	color: var(--turquoise);
	border-color: var(--turquoise);
}

.target-inner .target-devices label.device+p {
	font-size: 12px;
}

.target-inner .target-visitors>div label.label-checkbox {
	line-height: 40px;
	display: block;
	padding-left: 15px;
	border: 1px solid #D6D6D6;
	background: #FFFFFF;
}

.target-inner .target-visitors>div label.label-checkbox p {
	margin: 0;
}

.target-inner .target-visitors>div label.label-checkbox i {
	margin-right: 4px;
}

.target-inner .target-visitors>div label.label-checkbox .span-checkbox {
	margin-right: 15px;
}

.target-inner .target-visitors>div label.label-checkbox:hover {
	color: var(--turquoise);
}

.target-inner .target-visitors>div label.label-checkbox.label-checked {
	color: var(--turquoise);
	border-color: var(--turquoise);
}

.target-inner .target-visitors>div:not(:first-child) label.label-checkbox {
	margin-top: 10px;
}

.target-inner .target-visitors>div>div {
	margin-top: -5px;
	padding: 10px 0 0 53px;
	border: 1px solid #D6D6D6;
	border-top: none;
	background: #FFFFFF;
}

.target-inner .target-visitors>div>div label {
	display: block;
}

.target-inner .target-geographical .label-select {
	width: 100%;
}

.target-inner .target-geographical .grid-1-2 {
	padding-top: 30px;
}

.target-inner .target-geographical .grid-1-2>div {
	float: left;
	width: 49%;
}

.target-inner .target-geographical .grid-1-2>div:first-child {
	margin-right: 2%;
}

.target-inner .target-triggers .persona {
	margin-top: 60px;
}

.target-inner .target-triggers .persona .title {
	font-weight: bold;
}

.target-inner .target-triggers .persona h5 {
	font-size: 25px;
	float: left;
	margin-bottom: 30px;
}

.target-inner .target-triggers .persona .btt-persona {
	float: right;
	margin: 10px 0 0 5px;
}

.target-inner .target-triggers .triggers {
	clear: both;
	padding-left: 30px;
}

.triggers_list {}

.triggers_list .label-select {
	float: none;
	width: 100%;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.triggers_list .label-select>p {
	margin-bottom: 0;
	font-weight: bold;
}

.trigger-wrapper {}

.trigger-wrapper .persona_cat {
	font-weight: bold;
	position: relative;
}

.trigger-wrapper .persona_cat span {
	background: #f3f3f3;
	padding-right: 10px;
}

.trigger-wrapper .persona_cat:before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 1px;
	background: #C3C3C3;
	bottom: 6px;
}

.trigger-wrapper .triggers .trigger:last-child {
	margin-top: 17px;
}

.trigger-wrapper .triggers .trigger:last-child .label-select {
	width: auto;
}

.trigger-wrapper .trigger:last-child .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
	position: static;
	top: 0;
	float: none;
	width: auto;
}

.trigger-wrapper .triggers .trigger:last-child .union-line, .trigger-wrapper .triggers .trigger:last-child .union-inner {
	display: none;
}

.target-inner .target-planning h4+p {
	margin-bottom: 20px;
}

.target-inner .target-planning h4+p span {
	font-size: 14px;
	display: block;
}

.target-inner .target-planning label {
	margin-right: 5px;
}

.target-inner .target-planning label input {
	display: none;
}

.target-inner .target-planning label p {
	padding: 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;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #E9E9E9;
}

.target-inner .target-planning label input:checked+p {
	color: #FFFFFF;
	background: var(--turquoise);
}

.target-inner .target-planning div {
	margin-top: 20px;
}

.target-inner .target-planning div label {
	position: relative;
	top: 20px;
	width: 120px;
	margin: 0 10px;
}

label input.form-control {
	height: 40px;
	text-align: left;
}

.target-inner .target-planning div label input.form-control {
	height: 40px;
	text-align: right;
}

.query.trigger.union-parent .union-inner {
	font-size: 11px;
	bottom: -21px;
}

.query.trigger.union-parent .union-inner span {
	height: 18px;
}

.query.trigger.union-parent .union-inner .union-top {
	top: -19px;
}

.query.trigger.union-parent .union-inner .union-bottom:after {
	top: 15px;
}

.query.trigger:not(.no-operands) .trigger-inner {
	height: 40px;
}

.query.trigger .trigger-inner p:first-child {
	float: left;
}

.audience_data_inner {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.audience_data {
	background: #FFF;
	border: 1px solid #e6e6e6;
	white-space: nowrap;
	padding: 10px;
	position: static;
	z-index: 1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.audience_data p {
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	color: #378eb2;
}

.audience_data p strong {
	font-size: 24px;
}

.audience_data span {
	font-size: 12px;
	color: #747474;
	margin-top: -4px;
	display: block;
}

.audience_jauge {
	width: 100%;
	background: #FFF;
	height: 20px;
	-webkit-border-radius: 0 30px 30px 0;
	-moz-border-radius: 0 30px 30px 0;
	border-radius: 0 30px 30px 0;
	border: 1px solid #e6e6e6;
	border-left: none;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-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;
}

.audience_jauge div {
	height: 10px;
	position: relative;
	left: -4px;
	width: 100%;
	background: #0090b5;
	-webkit-border-radius: 0 30px 30px 0;
	-moz-border-radius: 0 30px 30px 0;
	border-radius: 0 30px 30px 0;
}

@media screen and (max-width: 480px) {
	.target-inner .target-devices label.device+p {
		margin-top: 10px;
	}
	.target-inner .target-devices label.device {
		margin-bottom: 0;
	}
	.target-inner .target-geographical .grid-1-2>div {
		width: 100%;
		margin: 0 0 20px 0;
	}
	.target-inner .target-planning label {
		margin-bottom: 8px;
	}
}

/* CREATE MODULE - THIRD STEP - CUSTOM */

.custom-inner {
	max-width: 54%;
	margin: 0 auto;
}

.custom_screen h1 {
	font-size: 30px;
	margin-bottom: 25px;
}

.custom_screen nav ul {
	position: relative;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.custom_screen nav ul:after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #E5E5E5;
}

.custom_screen nav li {
	padding: 10px 15px;
	cursor: pointer;
}

.custom_screen nav li.active {
	border-bottom: 2px solid var(--turquoise);
}



.screen_cta {
	pointer-events: none;
	color: inherit;
	width: 100%;
}

.code_edition_actions {
	position: relative;
	top: 30px;
	z-index: 9;
	display: flex;
	flex-direction: row-reverse;
}

.custom_devices {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.custom_devices div {
	padding: 0 10px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f6f7f8;
	border: 1px solid #C0C0C0;
	border-radius: 3px;
	margin: 0 3px;
	color: #C0C0C0;
	cursor: pointer;
	-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;
}

.custom_devices div i {
	margin-right: 5px;
}

.custom_devices div:hover {
	border-color: var(--turquoise);
	color: var(--turquoise);
}

.custom_devices div.active, .custom_devices div.active:hover {
	border-color: var(--turquoise);
	color: #FFF;
	background: var(--turquoise);
}

.allow_template_edition {
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.allow_template_edition input {
	margin: 0 5px 0 0;
}

.abtest-inner .slider.slider-horizontal {
	width: 100%;
}

.abtest-inner .label-range {
	width: 100%;
}

.abrange_wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 30px;
}

.abrange_wrapper p {
	font-weight: bold;
}

.abrange_labela {
	color: #fbaf3f;
}

.abrange_labelb {
	color: var(--turquoise);
}

.abrange_inner {
	background: #fbaf3f;
	width: 100%;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
	margin: 0 10px;
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.abrange {
	background: var(--turquoise);
	-webkit-border-radius: 0 50px 50px 0;
	-moz-border-radius: 0 50px 50px 0;
	border-radius: 0 50px 50px 0;
	position: relative;
	border-left: 2px solid #444;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}

.abrange span {
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media screen and (max-width: 1630px) {
	.custom-inner .switch-button>div div p {
		display: block;
	}
	.custom-inner .switch-button>div div span {
		display: block;
		margin: 16px auto 20px;
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		transform: rotate(90deg);
	}
}

@media screen and (max-width: 1450px) {
	.custom-inner {
		width: 80%;
	}
}

@media screen and (max-width: 1250px) {
	.preview-inner section {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.new-module section.grid {
		padding: 0;
	}
	.custom-inner {
		width: 100%;
		margin-top: 30px;
	}
	.preview-inner {
		width: 100%;
		margin-top: 30px;
	}
	.custom-inner .grid section[class^="col"]:first-child, .custom-inner .grid section[class^="col"]:last-child {
		float: none;
		clear: both;
		width: 100%;
		margin-bottom: 20px;
	}
	.custom-inner .switch-button>div {
		float: left;
		width: -webkit-calc(50% - 20px);
		width: -moz-calc(50% - 20px);
		width: calc(50% - 20px);
	}
	.custom-inner .switch-button>div:first-child {
		margin-right: 20px;
	}
	.custom-inner .switch-button>div div p {
		display: inline-block;
	}
	.custom-inner .switch-button>div div span {
		display: inline-block;
		margin: auto;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@media screen and (max-width: 480px) {
	.custom-inner .switch-button>div {
		float: none;
		width: 100%;
	}
	.custom-inner .switch-button>div:first-child {
		margin-right: 0;
	}
	.custom-inner .input-btt-inline .btt-inline {
		overflow: hidden;
		width: 40px;
		height: 40px;
		padding: 0;
	}
	.custom-inner>.btt-primary {
		margin-top: 140px;
	}
	.preview-inner article {
		width: 265px;
	}
}

.new-module.model {
	padding-bottom: 500px;
}

.new-module.model h3 {
	margin-bottom: 20px;
}

.new-module.model>article {
	margin-top: 30px;
}

.new-module.model h4 {
	font-size: 17px;
	font-weight: bold;
}

.new-module.model .model_list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -30px;
}

.new-module.model .model_list li {
	width: calc(calc(100% - 150px) / 5);
	margin: 0px 0 10px 30px;
	cursor: pointer;
	text-align: center;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	font-family: "IBM Plex Sans", "Roboto", Arial, sans-serif;
	box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 0);
	border: 2px 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;
}

.new-module.model .model_list li.active, .new-module.model .model_list li:hover.active, .new-module.model .model_list li:hover {
	box-shadow: 0px 2px 15px 0px rgba(220, 220, 220, 0.5);
	color: var(--turquoise);
}

.new-module.model .model_list li.active, .new-module.model .model_list li:hover.active {
	border: 2px solid var(--turquoise);
}

.new-module.model .model_list li label {
	width: 100%;
}

.new-module.model li input {
	display: none;
}

.new-module.model li.active img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

.new-module.model li.active {
	color: var(--turquoise);
}

.new-module.model .model_list li .template_bespoke {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	font-size: 10px;
	width: 30px;
	height: 30px;
	color: #FFF;
}

.new-module.model .model_list li .template_bespoke:before {
	content: "";
	position: absolute;
	z-index: 8;
	top: 0;
	left: 0;
	display: inline-block;
	height: 0;
	width: 0;
	border-top: 30px solid #5d5d5d;
	border-right: 30px solid transparent;
}

.new-module.model .model_list li .template_bespoke i {
	position: relative;
	left: -6px;
	top: 3px;
	z-index: 8;
}

.new-module.model .model_list li img {
	width: 100%;
	border-radius: 5px;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}

.new-module.model .model_list li:hover img, .new-module.model .model_list li.active img {}

.new-module.model .model_list li p i {
	font-size: 12px;
	position: relative;
	top: -2px;
}

.new-module.model .screen_id {
	cursor: pointer;
	font-size: 14px;
}

.new-module.model .screen_id strong {
	font-style: italic;
	font-weight: normal;
}

.template_list_hb {
	display: block;
}

.new-module.model .model_list.template_list_hb li {
	width: 100%;
}

.new-module.model .model_list.template_list_hb li label {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row-reverse;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-moz-box-orient: horizontal;
	-moz-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.new-module.model .model_list.template_list_hb li label p {
	min-width: 100px;
	text-align: left;
}

section.tpl-wrapper {
	margin: 90px 0;
}

.tpl-customization {
	position: absolute;
	z-index: 9;
	width: 0;
	color: #444;
	font-family: "Roboto", sans-serif;
	text-align: left;
}

.tpl-customization .custom_property {
	margin-right: 0;
}

.tpl-customization .custom_property:not(:last-child) {
	margin-bottom: 20px;
}

.tpl-customization .custom_property label input {
	width: 100%;
}

.tpl-customization .custom_property .subtitle {
	color: #444 !important;
	margin: 0 0 10px 0 !important;
}

.tpl-customization .custom_tooltip {
	font-size: 16px;
	font-weight: 400;
	position: absolute;
	cursor: pointer;
	-webkit-transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	opacity: .6;
	color: #444 !important;
	text-transform: none;
	letter-spacing: 0;
	white-space: nowrap;
	opacity: .4;
}

.tpl-customization .custom_tooltip.white {
	color: #fff !important;
	opacity: 1;
}

.tpl-customization.open .custom_tooltip {
	opacity: 1;
}

.tpl-customization .custom_property .color-picker input[type="text"] {
	width: 170px;
}

.tpl-customization .custom_property .custom_textarea {
	border: 1px solid #9E9E9E;
	min-height: 150px;
	padding: 10px;
	font-size: 14px;
	line-height: 1.4;
	background: #FFF;
	max-width: 100%;
}

.tpl-customization.tpl-body {
	top: -40px;
	left: 60px;
}

.container_tooltip .custom_tooltip:before, .current_screen_custom .custom_tooltip:before, .tpl-customization .custom_tooltip:before {
	content: "";
	position: absolute;
	width: 22px;
	height: 43px;
	background-image: url(../Assets/widget_arrow.png);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100%;
	background-size: 100%;
}

.tpl-customization .custom_tooltip.white:before {
	background-image: url(../Assets/widget_arrow_white.png);
}

.arrow-down-left .custom_tooltip:before {
	-webkit-transform: rotateZ(0deg) rotateY(180deg);
	-moz-transform: rotateZ(0deg) rotateY(180deg);
	-o-transform: rotateZ(0deg) rotateY(180deg);
	transform: rotateZ(0deg) rotateY(180deg);
	top: 1px;
	right: -webkit-calc(100% + 5px);
	right: -moz-calc(100% + 5px);
	right: calc(100% + 5px);
}

.arrow-up-left .custom_tooltip:before {
	-webkit-transform: rotateZ(180deg) rotateY(0deg);
	-moz-transform: rotateZ(180deg) rotateY(0deg);
	-o-transform: rotateZ(180deg) rotateY(0deg);
	transform: rotateZ(180deg) rotateY(0deg);
	top: -26px;
	right: -webkit-calc(100% + 5px);
	right: -moz-calc(100% + 5px);
	right: calc(100% + 5px);
}

.arrow-down-right .custom_tooltip:before {
	top: 2px;
	left: -webkit-calc(100% + 5px);
	left: -moz-calc(100% + 5px);
	left: calc(100% + 3px);
}

.arrow-up-right .custom_tooltip:before {
	-webkit-transform: rotateZ(-180deg) rotateY(180deg);
	-moz-transform: rotateZ(-180deg) rotateY(180deg);
	-o-transform: rotateZ(-180deg) rotateY(180deg);
	transform: rotateZ(-180deg) rotateY(180deg);
	top: -22px;
	left: -webkit-calc(100% + 5px);
	left: -moz-calc(100% + 5px);
	left: calc(100% + 5px);
}

.arrow-middle-left .custom_tooltip:before {
	-webkit-transform: rotateZ(35deg) rotateY(180deg);
	-moz-transform: rotateZ(35deg) rotateY(180deg);
	-o-transform: rotateZ(35deg) rotateY(180deg);
	transform: rotateZ(35deg) rotateY(180deg);
	top: -11px;
	right: -webkit-calc(100% + 12px);
	right: -moz-calc(100% + 12px);
	right: calc(100% + 12px);
}

.arrow-middle-right .custom_tooltip:before {
	-webkit-transform: rotateZ(-35deg) rotateY(0deg);
	-moz-transform: rotateZ(-35deg) rotateY(0deg);
	-o-transform: rotateZ(-35deg) rotateY(0deg);
	transform: rotateZ(-35deg) rotateY(0deg);
	top: -11px;
	left: -webkit-calc(100% + 12px);
	left: -moz-calc(100% + 12px);
	left: calc(100% + 12px);
}

.tpl-customization.tpl-title {
	top: -40px;
	left: -30px;
}

.tpl-customization.tpl-container {
	top: -webkit-calc(100% + 17px);
	top: -moz-calc(100% + 17px);
	top: calc(100% + 17px);
	left: 0;
}

.tpl-customization.tpl-close {
	top: -52px;
	right: -24px;
}

.tpl-customization.tpl-cta {
	top: -webkit-calc(100% + 40px);
	top: -moz-calc(100% + 40px);
	top: calc(100% + 40px);
	right: -30px;
}

.tpl-customization.tpl-countdown {
	top: -webkit-calc(100% + 43px);
	top: -moz-calc(100% + 43px);
	top: calc(100% + 43px);
	right: 0px;
}

.tpl-customization.tpl-cdt {
	top: -50px;
	right: -70px;
}

.tpl-customization.tpl-image {
	top: -40px;
	left: 15%;
}

.tpl-customization .screen_custom_inner {
	position: absolute;
}

.tpl-customization .screen_custom_inner>article {
	top: 25px;
	position: absolute;
	width: 380px;
	padding: 15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #FFFFFF;
	-webkit-box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
	-moz-box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
	box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
}

.tpl-customization[custom-property] .screen_custom_inner>article {
	display: none;
}

.tpl-customization.open .screen_custom_inner>article {
	display: block;
}

.tpl-customization[class*='align-left'] .screen_custom_inner>article {
	left: 0;
}

.tpl-customization[class*='align-right'] .screen_custom_inner>article {
	right: -40px;
}

.tpl-customization[class*='-bottom'] .screen_custom_inner>article {
	top: 25px;
}

.tpl-customization[class*='-top'] .screen_custom_inner>article {
	bottom: 10px;
	top: auto;
}

.thumbnail_note {
	font-size: 12px;
	margin-top: 5px;
	opacity: .5;
}

.template-preview {
	text-align: center;
}

.screens_wrapper {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.screens_wrapper .screen {
	font-size: 15px;
	position: relative;
	width: 33.33%;
	padding: 15px;
	cursor: pointer;
	background: #f8f8f8;
	-webkit-box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
	-moz-box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
	box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: flex-start;
	-webkit-box-align: start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-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;
}

.screens_wrapper .screen:not(:first-child) {
	padding-left: 40px;
}

.screens_wrapper .screen.active {
	color: #444;
	background: #FFFFFF;
}

.screens_wrapper .screen:before {
	content: "";
	position: absolute;
	width: 37px;
	height: 100%;
	background-image: url('../Assets/arrow-screens.png');
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
	left: 98%;
	top: 0;
	z-index: 1;
}

.screens_wrapper .screen.active:before {
	background-image: url('../Assets/arrow-screens-active.png');
}

.screens_wrapper .screen:hover p {
	color: #444;
}

.screens_wrapper .screen p {
	line-height: 15px;
	margin-right: 13px;
	color: #b9b9b9;
	-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;
}

.screens_wrapper .screen.active p {
	color: #444;
}

.screens_wrapper .screen p span {
	font-size: 9px;
	font-weight: 300;
	text-transform: uppercase;
}

.screens_wrapper .screen p strong {
	font-size: 15px;
	font-weight: bold;
	display: block;
}

.screens_wrapper .btn_delete_screen {
	position: absolute;
	top: 4px;
	right: 4px;
	padding: 0;
	-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;
	color: #C0C0C0;
}

.screens_wrapper .btn_delete_screen:hover {
	color: #EB6262;
}

.screens_wrapper .btn_add_screen {
	font-weight: bold;
	width: 33.33%;
	line-height: 16px;
	min-height: 62px;
	-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;
	color: #C0C0C0;
	border: 2px dashed #C0C0C0;
}

.screens_wrapper .btn_add_screen:hover, .screens_wrapper .btn_add_screen:focus {
	color: var(--turquoise);
	border: 2px dashed var(--turquoise);
}

.screens_wrapper .btn_add_screen span {
	display: block;
}

.campaign_files {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;
}

.campaign_files li {
	height: 160px;
	position: relative;
	margin: 0 10px 10px 0;
	overflow: hidden;
	color: #FFF;
}

.campaign_files li:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background-color: rgb(68, 68, 68, .57);
	-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;
}

.campaign_files li:hover:before {
	opacity: 1;
}

.campaign_files li img {
	height: 160px;
}

.campaign_files li p {
	position: absolute;
	width: 100%;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	text-transform: uppercase;
	padding: 10px 20px;
	top: 32%;
	-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;
}

.campaign_files li:hover p {
	visibility: visible;
	opacity: 1;
}

.campaign_files li p:after {
	content: "copied";
	position: absolute;
	width: 100%;
	font-size: 9px;
	left: 0;
	top: 0px;
	opacity: 0;
	-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;
}

.campaign_files li.copied p:after {
	top: -10px;
	opacity: .8;
}

.campaign_files li button {
	position: absolute;
	left: 50%;
	bottom: 10px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	-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;
}

.campaign_files li:hover button {
	visibility: visible;
	opacity: .5;
}

.campaign_files li button:hover {
	opacity: 1;
}

.overlay_popin {
	position: fixed;
	top: -100%;
	height: 100%;
	width: 100%;
	left: 0;
	background: rgba(42, 49, 51, 0.64);
	opacity: 0;
	z-index: 49;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition: opacity .4s ease-in-out;
	-o-transition: opacity .4s ease-in-out;
	transition: opacity .4s ease-in-out;
}

.overlay_white {
	background: rgba(255, 255, 255, .9);
}

.overlay_popin.showed {
	opacity: 1;
	top: 0;
}

.popin_confirm_delete_transition {
	position: fixed;
	top: -100%;
	left: 0;
	right: 0;
	margin: auto;
	background: #FFF;
	width: 330px;
	padding: 25px;
	z-index: 9999999;
	text-align: center;
	border-top: 5px solid #eb6161;
	border-radius: 5px;
	-webkit-transform: scale(.2);
	-moz-transform: scale(.2);
	-ms-transform: scale(.2);
	-o-transform: scale(.2);
	transform: scale(.2);
	-webkit-transition: transform .3s ease-in-out;
	-moz-transition: transform .3s ease-in-out;
	-o-transition: transform .3s ease-in-out;
	-webkit-transition: -webkit-transform .3s ease-in-out;
	transition: -webkit-transform .3s ease-in-out;
	-o-transition: -o-transform .3s ease-in-out;
	-moz-transition: transform .3s ease-in-out, -moz-transform .3s ease-in-out;
	transition: transform .3s ease-in-out;
	transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out, -moz-transform .3s ease-in-out, -o-transform .3s ease-in-out;
}

.popin_confirm_delete_transition.showed {
	top: 21%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.popin_confirm_delete_transition .close.outside {
	font-size: 12px;
	z-index: 9999;
	position: absolute;
	top: -38px;
	right: 0;
	cursor: pointer;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	text-transform: uppercase;
	opacity: .8;
	color: #ffffff;
	padding: 10px 25px 10px 0;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 1px;
	text-shadow: none;
}

.popin_confirm_delete_transition .close.outside:before, .popin_confirm_delete_transition .close.outside:after {
	content: "";
	top: 50%;
	right: 0;
	position: absolute;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-transform: translateY(-50%) rotate(45deg);
	-moz-transform: translateY(-50%) rotate(45deg);
	-o-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	border-radius: 3px;
	background: #FFF;
}

.popin_confirm_delete_transition .close.outside:before {
	width: 22px;
	height: 2px;
}

.popin_confirm_delete_transition .close.outside:after {
	width: 2px;
	height: 22px;
	right: 10px;
}

.popin_confirm_delete_transition .close.outside:hover:before, .popin_confirm_delete_transition .close.outside:hover:after {
	opacity: 1;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-moz-transform: translateY(-50%) rotate(-45deg);
	-o-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
}

.popin_confirm_delete_transition p {
	margin-bottom: 15px;
	font-weight: 300;
}

.popin_confirm_delete_transition p span {
	display: block;
}

.popin_confirm_delete_transition p strong {
	font-weight: bold;
}

.popin_confirm_delete_transition button {
	padding: 10px;
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 500;
	border-radius: 5px;
}

.popin_confirm_delete_transition button+button {
	margin-left: 10px;
}

.popin_confirm_delete_transition .btn_confirm_delete_transition {
	background: var(--turquoise);
}

.popin_confirm_delete_transition .btn_cancel_delete_transition {
	background: #EB6262;
}

.popin_confirm_delete_transition .btn_save_campaign {
	background: #C0C0C0;
}

.options {
	padding: 30px;
	background: #FFFFFF;
	box-shadow: 0px 6px 49px 0px rgba(220, 220, 220, 0.9);
	border-radius: 5px;
	margin-bottom: 30px;
}

.options h5 {
	font-size: 16px;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 20px;
}

.options>section {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 0;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.options>section .title {
	font-weight: bold;
	margin-bottom: 10px;
}

.options-title {}

.options-subtitle {
	margin-bottom: 10px;
}

.options>article {
	margin-bottom: 30px;
}

/* INPAGE OPTIONS */

.inpage_options {}

.inpage_options .inpage-selector-inner {
	display: flex;
}

.inpage_options .inpage-selector {}

.inpage_options .inpage-selector input {
	width: 430px;
	margin-right: 20px;
}

.inpage_options .inpage-index {
	width: 100px;
}

.inpage_options .label-checkbox {}

.inpage_options .label-checkbox p {}

.inpage_options .label-checkbox p span {}

.inpage_options .inpage-position {
	display: flex;
	align-items: flex-start;
	margin-top: 20px;
}

.inpage_options .inpage-position button {
	border: 1px solid #9E9E9E;
	background: transparent;
	padding: 8px 20px 6px;
	color: #9E9E9E;
	cursor: pointer;
	position: relative;
	z-index: 2;
	transition: all .2s ease-in-out;
}

.inpage_options .inpage-position button:hover {
	color: var(--turquoise);
}

.inpage_options .inpage-position button.active, .inpage_options .inpage-position button.active:hover {
	background: var(--turquoise);
	color: #FFF;
	border-color: var(--turquoise);
}

.inpage_options .inpage-position>button {
	border-radius: 5px;
}

.inpage_options .inpage-position div {
	display: flex;
	flex-wrap: wrap;
	margin: 0 20px;
	width: 40%;
	position: relative;
}

.inpage_options .inpage-position div:before {
	position: absolute;
	content: "";
	border: 1px dashed #9E9E9E;
	border-radius: 5px;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	top: -10px;
	left: -10px;
	z-index: 0;
	background: none;
}

.inpage_options .inpage-position div button {
	flex-grow: 1;
}

.inpage_options .inpage-position div button.inpage-first {
	border-radius: 5px 0px 0px 5px;
}

.inpage_options .inpage-position div button.inpage-replace {
	flex-grow: 3;
	margin: 0 -1px;
}

.inpage_options .inpage-position div button.inpage-last {
	border-radius: 0px 5px 5px 0px;
}

.inpage_options .inpage-position div p {
	width: 100%;
	text-align: center;
	color: #9E9E9E;
}

.inpage-needhelp {
	color: #9E9E9E;
	font-size: 10px;
	border-bottom: 1px dashed;
	padding: 0;
	transition: all .2s ease-in-out;
}

.inpage-needhelp:hover {
	color: inherit;
	border-bottom-style: solid;
}

.form_options section label {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
}

.form_options section label span {
	font-weight: normal;
	width: 150px;
	margin-right: 10px;
}

.form_options section label input {
	width: 100%;
}

.form_options .btn_add_field {
	font-size: 18px;
	font-weight: 500;
	line-height: 50px;
	display: block;
	margin: 0 auto 20px;
	padding: 0 35px;
	-webkit-transition: background .1s ease-in-out;
	-moz-transition: background .1s ease-in-out;
	-o-transition: background .1s ease-in-out;
	transition: background .1s ease-in-out;
	color: #FFFFFF;
	border: none;
	background: var(--turquoise);
}

.cta_options section>article {
	width: 100%;
}

.cta_options section article section {
	margin-bottom: 0;
	margin-left: 31px;
}

.cta_options .cta_options_text {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 20px;
}

.cta_options .cta_options_text label {
	margin-right: 20px;
	width: 270px;
}

.cta_options .cta_options_text label p {
	margin-bottom: 5px;
}

.cta_options .cta_options_text label input {
	width: 100%;
}

.cta_options .cta_options_text label input:disabled {
	background: #f3f3f3;
}

.cta_options .input-inline {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}

.cta_options .input-inline>p {
	font-weight: bold;
	width: 20%;
}

.expiration_code {
	margin-bottom: 20px;
}

@media screen and (max-width: 1450px) {
	.new-module.model {
		width: 100%;
		margin: 0;
	}
}

/* CREATE MODULE - FOURTH STEP - PREVIEW */

.flbt-open .flbt-open-inner {
	font-weight: normal;
	position: absolute;
	right: -webkit-calc(50% - 150px);
	right: -moz-calc(50% - 150px);
	right: calc(50% - 150px);
	bottom: 100px;
	width: 300px;
	height: auto;
	padding: 10px;
	text-align: center;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: #F5F5F5;
}

.flbt-open .flbt-open-inner p {
	line-height: 27px;
	word-wrap: break-word;
}

.flbt-open .flbt-open-inner.bloc-shadow {
	-webkit-box-shadow: 0 3px 12px 1px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 3px 12px 1px rgba(0, 0, 0, .4);
	box-shadow: 0 3px 12px 1px rgba(0, 0, 0, .4);
}

.flbt-open .flbt-open-inner .flbt-title, .flbt-open .flbt-open-inner .flbt-code, .flbt-open .flbt-open-inner .flbt-note {
	font-size: 16px;
	color: #293133;
}

.flbt-open .flbt-open-inner .flbt-code {
	margin: 8px 0;
}

.flbt-open .flbt-open-inner p em {
	font-style: italic;
}

.flbt-open .flbt-open-inner p strong {
	font-weight: bold;
}

.flbt-open .flbt-open-inner article {
	text-align: left;
}

.flbt-open .flbt-open-inner article.custom-open-text {
	top: -30px;
	left: -107px;
}

.flbt-open .flbt-open-inner article.custom-open-text:after {
	content: "";
	position: absolute;
	top: 5px;
	right: -53px;
	display: block;
	width: 43px;
	height: 49px;
	-webkit-transform: rotate(-30deg);
	-moz-transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	-o-transform: rotate(-30deg);
	transform: rotate(-30deg);
	background: url("../Assets/arrow-open-title.png") no-repeat center;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
}

.flbt-open .flbt-open-inner article.custom-open-promo {
	top: 27px;
	left: -170px;
}

.flbt-open .flbt-open-inner article.custom-open-promo:after {
	content: "";
	position: absolute;
	top: -20px;
	right: -65px;
	display: block;
	width: 62px;
	height: 25px;
	background: url("../Assets/arrow-open-promo.png") no-repeat center;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
}

.flbt-open .flbt-open-inner article.custom-open-note {
	bottom: 0;
	left: 350px;
}

.flbt-open .flbt-open-inner article.custom-open-note:after {
	content: "";
	position: absolute;
	top: -12px;
	right: 61px;
	display: block;
	width: 43px;
	height: 49px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	background: url("../Assets/arrow-open-design.png") no-repeat center;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
}

.flbt-open .flbt-open-inner section {
	margin-bottom: 0;
}

.flbt-open .flbt-open-inner article.custom-open-design {
	right: -100px;
	bottom: -40px;
}

.flbt-open .flbt-open-inner article.custom-open-design:after {
	content: "";
	position: absolute;
	top: -14px;
	left: -65px;
	display: block;
	width: 59px;
	height: 29px;
	background: url("../Assets/arrow-open-note.png") no-repeat center;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
}

.preview-flbt section {
	position: relative;
	height: 850px;
	margin-bottom: 30px;
	background: url("../Assets/preview-mockup.png") no-repeat center bottom;
}

.preview-flbt article {
	position: relative;
	top: 134px;
	display: block;
	width: 354px;
	height: 583px;
	margin: auto;
	background: #293133;
}

.preview-flbt .flbt-close {
	font-size: 35px;
	font-weight: bold;
	line-height: 80px;
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 80px;
	height: 80px;
	cursor: pointer;
	text-align: center;
	color: #FFFFFF;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: var(--turquoise);
}

.preview-flbt .flbt-close div:after {
	content: "Try me";
	font-size: 15px;
	font-weight: normal;
	line-height: normal;
	position: absolute;
	top: -40px;
	left: -90px;
	overflow: visible;
	width: 100px;
	height: 50px;
	text-align: left;
	color: #FFFFFF;
	background: url("../Assets/arrow-open-title-white.png") no-repeat 56px 10px;
	-webkit-background-size: 40px 31px;
	-moz-background-size: 40px 31px;
	background-size: 40px 31px;
}

.preview-flbt .flbt-close.btt-shadow, .preview-flbt .flbt-open.btt-shadow, .floating-button-primary.btt-shadow, .preview-inner .floating-button-inner.bloc-shadow {
	-webkit-box-shadow: 0 3px 11.96px 1.04px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 3px 11.96px 1.04px rgba(0, 0, 0, .4);
	box-shadow: 0 3px 11.96px 1.04px rgba(0, 0, 0, .4);
}

.preview-flbt .flbt-close.flbt-left {
	left: 20px;
}

.preview-flbt .flbt-open {
	font-size: 35px;
	font-weight: bold;
	line-height: 80px;
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 80px;
	height: 80px;
	cursor: pointer;
	text-align: center;
	color: #FFFFFF;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: var(--turquoise);
}

.preview-flbt .flbt-open-inner {
	font-weight: normal;
	line-height: 20px;
	cursor: default;
}

.preview-inner .preview {
	clear: both;
	max-width: 60%;
	margin: auto;
	text-align: center;
}

.preview-inner .preview .label-top {
	width: 80%;
	margin: 20px auto 0;
}

.preview-window {
	position: relative;
	overflow: hidden;
	width: 510px;
	height: 950px;
	margin: auto;
	padding: 110px 72px 183px 60px;
	background: #293133;
	background: url("../Assets/mockup-iphone.png") no-repeat center bottom;
}

.preview-window iframe {
	width: 100%;
	height: 100%;
}

/* PREVIEW STEP */

.preview-inner section {
	position: relative;
	min-height: 950px;
	margin-top: 50px;
	background: url("../Assets/mockup-iphone.png") no-repeat center bottom;
}

.preview-inner section h2 {
	position: absolute;
	top: -65px;
	width: 100%;
	text-align: center;
}

.preview-inner article {
	position: relative;
	left: 5px;
	width: 375px;
	height: 100%;
	height: 767px;
	margin: auto;
}

.preview-inner .floating-button-primary {
	font-size: 33px;
	font-weight: bold;
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 80px;
	height: 80px;
	color: #FFFFFF;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #EB6262;
}

.floating-button-primary.left {
	right: 0;
	left: 20px;
}

.preview-inner article.status-open .floating-button-primary {
	right: -webkit-calc(50% - 40px);
	right: -moz-calc(50% - 40px);
	right: calc(50% - 40px);
}

.preview-inner .floating-button-close i {
	font-size: 50px;
	display: inline;
}

.preview-inner .floating-button-inner {
	position: absolute;
	/*bottom: 115px;*/
	right: -webkit-calc(50% - 40%);
	right: -moz-calc(50% - 40%);
	right: calc(50% - 40%);
	width: 80%;
	margin-bottom: 95px;
	padding: 15px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #FCFCFC;
}

.preview-inner .floating-button-title {
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 10px;
}

.preview-inner .floating-button-subtitle {
	font-size: 20px;
}

.preview-inner .floating-button-subtitle span {
	font-size: 30px;
	font-weight: bold;
	color: var(--turquoise);
}

.preview-inner .floating-button-code {
	font-size: 25px;
	font-weight: bold;
	letter-spacing: 2px;
	color: var(--turquoise);
}

@media screen and (max-width: 480px) {
	.preview-inner article {
		width: 265px;
	}
}

.preview-window section {
	position: absolute;
	bottom: 183px;
	overflow: hidden;
	width: 377px;
	height: 657px;
}

#by_wrapper * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

#by_wrapper {
	font-family: "Roboto", "arial", sans-serif;
	position: absolute;
	z-index: 9999;
	right: 20px;
	bottom: -100px;
	overflow: visible;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	width: 80px;
	height: 80px;
	-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;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

#by_wrapper.flbt-left {
	right: 0;
	left: 20px;
}

#by_wrapper.flbt-left.by_open {
	left: -webkit-calc(50% - 40px);
	left: -moz-calc(50% - 40px);
	left: calc(50% - 40px);
}

#by_wrapper.by_show {
	bottom: 20px;
}

#by_wrapper.by_open {
	right: -webkit-calc(50% - 40px);
	right: -moz-calc(50% - 40px);
	right: calc(50% - 40px);
}

#by_wrapper button {
	cursor: pointer;
	border: none;
	background: #EB6262;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
}

#by_wrapper button, #by_wrapper button:active, #by_wrapper button:hover, #by_wrapper button:focus {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-color: transparent;
	outline: none !important;
	outline-width: 0;
	outline-style: none;
	-khtml-user-select: none;
	-webkit-touch-callout: none;
}

#by_btn_primary {
	font-size: 35px;
	font-weight: bold;
	position: absolute;
	z-index: 10;
	width: 80px;
	height: 80px;
	color: #FFFFFF;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

#by_btn_primary.btt-shadow, #by_inner.bloc-shadow {
	-webkit-box-shadow: 0 3px 11.96px 1.04px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 3px 11.96px 1.04px rgba(0, 0, 0, .4);
	box-shadow: 0 3px 11.96px 1.04px rgba(0, 0, 0, .4);
}

#by_btn_primary span:first-child img {
	position: relative;
	top: 3px;
	width: 50%;
}

#by_btn_second {
	position: absolute;
	top: 0;
	right: 10px;
	width: 60px;
	height: 60px;
	-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;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

#by_btn_second img {
	width: 70%;
}

#by_inner {
	position: absolute;
	right: 400px;
	bottom: 100px;
	overflow: hidden;
	width: 300px;
	height: 200px;
	margin-bottom: 100px;
	padding: 15px 10px 0 10px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	text-align: center;
	opacity: 0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: #F5F5F5;
}

.by_open #by_inner {
	right: -webkit-calc(50% - 150px);
	right: -moz-calc(50% - 150px);
	right: calc(50% - 150px);
	opacity: 1;
}

#by_title {
	font-size: 24px;
	font-weight: 900;
	color: #84D72C;
}

/* OPEN */

.by_open #by_btn_second {
	top: -80px;
}

.by_open #by_btn_primary span:first-child {
	visibility: hidden;
	opacity: 0;
}

.by_open #by_btn_primary span.by_btn_close {
	position: absolute;
	top: 51px;
	right: 10px;
	display: block;
	width: 45px;
	height: 10px;
	-webkit-transform: rotateZ(-45deg);
	-moz-transform: rotateZ(-45deg);
	-o-transform: rotateZ(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotateZ(-45deg);
	-webkit-transform-origin: 0 50%;
	-moz-transform-origin: 0 50%;
	-o-transform-origin: 0 50%;
	-ms-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #FFFFFF;
}

.by_open #by_btn_primary span.by_btn_close:before {
	content: "";
	position: absolute;
	top: 22px;
	right: -22px;
	display: block;
	width: 45px;
	height: 10px;
	-webkit-transform: rotateZ(-90deg);
	-moz-transform: rotateZ(-90deg);
	-o-transform: rotateZ(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotateZ(-90deg);
	-webkit-transform-origin: 0 50%;
	-moz-transform-origin: 0 50%;
	-o-transform-origin: 0 50%;
	-ms-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: inherit;
}

.by_wiggle {
	-webkit-animation: rebound 10s infinite;
	-moz-animation: rebound 10s infinite;
	-o-animation: rebound 10s infinite;
	animation: rebound 10s infinite;
}

@-webkit-keyframes rebound {
	0%, 1%, 3%, 5%, 7%, 9%, 10%, 11%, 13%, 15%, 17%, 19%, 20%, 100% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	2%, 12% {
		-webkit-transform: translate(0, -35px);
		transform: translate(0, -35px);
	}
	4%, 14% {
		-webkit-transform: translate(0, -23px);
		transform: translate(0, -23px);
	}
	6%, 16% {
		-webkit-transform: translate(0, -15px);
		transform: translate(0, -15px);
	}
	8%, 18% {
		-webkit-transform: translate(0, -5px);
		transform: translate(0, -5px);
	}
}

@-moz-keyframes rebound {
	0%, 1%, 3%, 5%, 7%, 9%, 10%, 11%, 13%, 15%, 17%, 19%, 20%, 100% {
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	2%, 12% {
		-webkit-transform: translate(0, -35px);
		-moz-transform: translate(0, -35px);
		transform: translate(0, -35px);
	}
	4%, 14% {
		-webkit-transform: translate(0, -23px);
		-moz-transform: translate(0, -23px);
		transform: translate(0, -23px);
	}
	6%, 16% {
		-webkit-transform: translate(0, -15px);
		-moz-transform: translate(0, -15px);
		transform: translate(0, -15px);
	}
	8%, 18% {
		-webkit-transform: translate(0, -5px);
		-moz-transform: translate(0, -5px);
		transform: translate(0, -5px);
	}
}

@-o-keyframes rebound {
	0%, 1%, 3%, 5%, 7%, 9%, 10%, 11%, 13%, 15%, 17%, 19%, 20%, 100% {
		-webkit-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	2%, 12% {
		-webkit-transform: translate(0, -35px);
		-o-transform: translate(0, -35px);
		transform: translate(0, -35px);
	}
	4%, 14% {
		-webkit-transform: translate(0, -23px);
		-o-transform: translate(0, -23px);
		transform: translate(0, -23px);
	}
	6%, 16% {
		-webkit-transform: translate(0, -15px);
		-o-transform: translate(0, -15px);
		transform: translate(0, -15px);
	}
	8%, 18% {
		-webkit-transform: translate(0, -5px);
		-o-transform: translate(0, -5px);
		transform: translate(0, -5px);
	}
}

@keyframes rebound {
	0%, 1%, 3%, 5%, 7%, 9%, 10%, 11%, 13%, 15%, 17%, 19%, 20%, 100% {
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	2%, 12% {
		-webkit-transform: translate(0, -35px);
		-moz-transform: translate(0, -35px);
		-o-transform: translate(0, -35px);
		transform: translate(0, -35px);
	}
	4%, 14% {
		-webkit-transform: translate(0, -23px);
		-moz-transform: translate(0, -23px);
		-o-transform: translate(0, -23px);
		transform: translate(0, -23px);
	}
	6%, 16% {
		-webkit-transform: translate(0, -15px);
		-moz-transform: translate(0, -15px);
		-o-transform: translate(0, -15px);
		transform: translate(0, -15px);
	}
	8%, 18% {
		-webkit-transform: translate(0, -5px);
		-moz-transform: translate(0, -5px);
		-o-transform: translate(0, -5px);
		transform: translate(0, -5px);
	}
}

.custom-inner article .custom-settings-inner>div>div {
	margin-bottom: 20px;
}

.filter_active {
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}

.filter_active div {
	font-weight: bold;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
	background: #293133;
}

.filter_active p {
	width: 70px;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}

.filter_active article {
	position: absolute;
	top: 100%;
	left: 120%;
	display: block;
	width: 300px;
	padding: 20px;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
	color: #293133;
	background: #FFFFFF;
	-webkit-box-shadow: -1px 2px 4px 1px rgba(0, 0, 0, .2);
	-moz-box-shadow: -1px 2px 4px 1px rgba(0, 0, 0, .2);
	box-shadow: -1px 2px 4px 1px rgba(0, 0, 0, .2);
}



.chart_wrapper {
	width: 100%;
	margin-bottom: 50px;
}

.chart_inner {
	position: relative;
	height: 100%;
	padding: 30px 25px;
	background: #FFFFFF;
	-webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

.btn_see_more {
	width: 100%;
	margin-top: 15px;
	padding: 7px;
	color: #B9BBBC;
	border: 1px solid #B9BBBC;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.average_time_wrapper section {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.chart_average_time {
	width: 25%;
	height: auto;
	text-align: center;
}

.chart_average_time .time {
	font-size: 30px;
}

.chart_average_time:not(:last-child) {
	margin-right: 20px;
}

.chart_traffic_src {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.chart_traffic_src ul li {
	margin-bottom: 10px;
}

.chart_traffic_src .chart_traffic_src_label {
	margin-right: 15px;
}

.chart_traffic_src .chart_traffic_src_data {
	width: 100%;
}

.chart_traffic_src .chart_traffic_src_data li {
	width: 100%;
	padding-right: 5px;
	text-align: right;
	color: #FFFFFF;
	background: var(--turquoise);
}

.traffic_abd {
	width: 100%;
	text-align: center;
}

.traffic_abd tr td {
	padding: 5px 0;
}

.traffic_abd .lvl1 {
	font-weight: bold;
}

.traffic_abd .lvl2 td:nth-child(2) {
	font-weight: bold;
}

.traffic_abd tbody td:first-child {
	padding-left: 10px;
	text-align: left;
}

.traffic_abd tbody tr td:nth-child(2) {
	font-weight: bold;
	border-right: 1px solid #95989A;
	border-left: 1px solid #95989A;
}

.traffic_abd tbody tr:nth-child(2n-1) {
	background: #F9F9F9;
}

.traffic_abd tbody .red {
	color: #E84F32;
}

.traffic_abd .border-all {
	border: 1px solid #95989A;
}

.traffic_abd tbody tr:last-child {
	border-bottom: 1px solid #95989A;
}

.traffic_abd tbody tr:first-child {
	border-top: 1px solid #95989A;
}

.traffic_abd tbody tr td:first-child {
	border-left: 1px solid #95989A;
}

.traffic_abd tbody tr td:last-child {
	border-right: 1px solid #95989A;
}

.traffic_abd thead tr td:last-child, .traffic_abd thead tr td:nth-child(4), .traffic_abd tbody tr td:nth-child(4) {
	border-right: 1px solid #95989A;
}

.two_abandonment_wrapper .header_row {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.header_row div {
	width: 25%;
	text-align: center;
}

.two_abandonment_wrapper .line_row {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	height: 50px;
	margin-bottom: 10px;
}

.line_row div {
	position: relative;
	width: 25%;
}

.line_row div p {
	line-height: 50px;
	position: relative;
	color: #000000;
}

.line_row div span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.line_row .row_session {
	text-align: center;
}

.line_row .row_session p {
	color: #FFFFFF;
}

.line_row .row_session span {
	z-index: 0;
	height: 50px;
	text-align: center;
	background: var(--turquoise);
}

.line_row .row_first_a {
	text-align: center;
}

.line_row .row_first_a span {
	min-height: 1px;
	background: #3B98BF;
}

.line_row .row_second_a {
	text-align: center;
}

.line_row .row_second_a span {
	min-height: 1px;
	background: #3383A6;
}

.chart_wrapper .cartography {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	padding: 30px 25px;
	background: #FFFFFF;
	-webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

.chart_wrapper .cartography article {
	max-width: 750px;
	height: 650px;
	margin: auto;
}

.chart_wrapper .cartography h5 {
	text-align: center;
}



.c3-line {
	stroke-width: 3px;
}

.graph_chart {
	margin-top: 90px;
}

/* AUDIT - SEGMENTATION */
@media screen and (max-width: 1400px) {
	.chart_average_time .time {
		font-size: 20px;
	}
	.chart_average_time .time_label {
		font-size: 11px;
	}
	.chart_inner ol li {
		font-size: 14px;
	}
}


.overlay {
	position: fixed;
	z-index: 3;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition: opacity .4s ease-in-out;
	-o-transition: opacity .4s ease-in-out;
	transition: opacity .4s ease-in-out;
	opacity: 0;
	background: rgba(0, 0, 0, .65);
}

.overlay.show {
	top: 0;
	opacity: 1;
}

.analytics_popin_wrapper {
	position: fixed;
	z-index: 5;
	top: -100%;
	right: 0;
	left: 0;
	width: 580px;
	max-height: 80%;
	margin: auto;
	padding: 40px;
	-webkit-transition: top .8s ease-in-out, opacity .3s ease-in-out .3s;
	-moz-transition: top .8s ease-in-out, opacity .3s ease-in-out .3s;
	-o-transition: top .8s ease-in-out, opacity .3s ease-in-out .3s;
	transition: top .8s ease-in-out, opacity .3s ease-in-out .3s;
	-webkit-transform: translateX(125px);
	-moz-transform: translateX(125px);
	-ms-transform: translateX(125px);
	-o-transform: translateX(125px);
	transform: translateX(125px);
	border-bottom: 8px solid;
	background: #FFFFFF;
}

.analytics_popin_wrapper.show {
	top: 10%;
	opacity: 1;
}

.popin_green {
	border-color: #6DD36D;
}

.popin_blue {
	border-color: var(--turquoise);
}

.close_popin {
	position: absolute;
	top: 20px;
	right: 10px;
	width: 19px;
	height: 5px;
	cursor: pointer;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: .2;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #6B6B6B;
}

.close_popin:after {
	content: "";
	position: absolute;
	top: -7px;
	right: 7px;
	width: 5px;
	height: 19px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: inherit;
}

.close_popin:hover, .close_popin:focus {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	opacity: 1;
}

.popin_title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
}

.popin_main {
	position: relative;
	top: 0;
}

.popin_subtitle {
	font-weight: bold;
}

.analytics_popin_wrapper .popin_main_btn {
	line-height: 40px;
	position: absolute;
	right: 0;
	bottom: -27px;
	left: 0;
	width: 260px;
	margin: auto;
	color: #FFFFFF;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

.popin_green .popin_main_btn {
	background: #6DD36D;
}

.popin_blue .popin_main_btn {
	background: var(--turquoise);
}



.switch_wrapper {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
}

.switch_wrapper .switch {
	position: relative;
	width: 52px;
	height: 26px;
	margin: 0 5px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	background: #E3E3E3;
}

.switch_wrapper.switch_active .switch {
	background: var(--turquoise);
}

.switch_wrapper .switch div {
	position: absolute;
	top: 4px;
	left: 5px;
	width: 18px;
	height: 18px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #FFFFFF;
}

.switch_wrapper.switch_active .switch div {
	left: 30px;
}

section.widget_browser_wrapper {
	overflow: hidden;
	height: 770px;
	margin-bottom: 0;
	border: 2px solid #ECECEB;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background: #EAEAEA;
}

[class^=inbox_custom_wrapper] {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	margin: auto;
	padding: 15px 25px;
	background: #FFFFFF;
}

.custom_title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

section.custom_inner {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 0;
}

.custom_inner article {
	margin-right: 30px;
}

.custom_inner article.two-col {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.custom_inner .title {
	font-size: 14px;
	font-weight: bold;
	width: 100%;
	text-transform: uppercase;
	color: var(--turquoise);
}

.widget_preview_wrapper {
	position: absolute;
	right: 0;
	bottom: 0px;
	left: 0;
	width: 100%;
	margin: auto;
	-webkit-transition: bottom .4s ease-in-out, left .4s ease-in-out, right .4s ease-in-out;
	-moz-transition: bottom .4s ease-in-out, left .4s ease-in-out, right .4s ease-in-out;
	-o-transition: bottom .4s ease-in-out, left .4s ease-in-out, right .4s ease-in-out;
	transition: bottom .4s ease-in-out, left .4s ease-in-out, right .4s ease-in-out;
	background: #FFFFFF;
	-webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .2);
	box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .2);
	display: block;
}

.widget_preview_wrapper.preview_auto_width {
	width: auto !important;
	max-width: 100% !important;
	right: auto;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.widget_preview_wrapper.scroll:before {
	content: "";
	z-index: 999;
	position: absolute;
	width: 10px;
	height: -webkit-calc(100% - 44px);
	height: -moz-calc(100% - 44px);
	height: calc(100% - 44px);
	top: 20px;
	right: 10px;
	background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.2) 100%);
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.2) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(1%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.2)));
	background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.2) 100%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.2) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#de000000', GradientType=1);
}

.inbox_open .widget_preview_wrapper {
	bottom: 0;
}

.preview_nav {
	color: #FFF;
	position: absolute;
	top: 50%;
	background: rgba(0, 0, 0, .19);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	z-index: 9999;
	height: 50px;
	width: 20px;
	-webkit-border-radius: 0 40px 40px 0;
	-moz-border-radius: 0 40px 40px 0;
	border-radius: 0 40px 40px 0;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.preview_nav:hover {
	-webkit-transform: translateX(0px) translateY(-50%);
	-moz-transform: translateX(0px) translateY(-50%);
	-o-transform: translateX(0px) translateY(-50%);
	-ms-transform: translateX(0px) translateY(-50%);
	transform: translateX(0px) translateY(-50%);
}

.preview_nav:before {
	content: "";
	position: absolute;
	background: #FFF;
	width: 13px;
	height: 4px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 27px;
	left: 2px;
}

.preview_nav:after {
	content: "";
	position: absolute;
	background: #FFF;
	width: 13px;
	height: 4px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 20px;
	left: 2px;
}

.preview_right {
	left: auto;
	right: 0;
	-webkit-border-radius: 40px 0 0 40px;
	-moz-border-radius: 40px 0 0 40px;
	border-radius: 40px 0 0 40px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.preview_right:before {
	left: 6px;
	top: 20px;
}

.preview_right:after {
	top: 27px;
	left: 6px;
}

.container_tooltip {
	font-size: 20px;
	position: absolute;
	top: -50px;
	left: 60px;
	cursor: pointer;
	-webkit-transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	opacity: .2;
}

.container_tooltip:before {}

.container_tooltip:hover, .container_tooltip:focus, .container_tooltip.active {
	opacity: 1;
}

section.screens {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 0;
	padding: 20px;
	-webkit-align-items: flex-start;
	-webkit-box-align: start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

section.screens.scroll {
	-webkit-justify-content: flex-start;
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	overflow-x: scroll;
}

/* width */

section.screens::-webkit-scrollbar {
	width: 50px;
	height: 5px;
}

/* Track */

section.screens::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px #f0f0f0;
	box-shadow: inset 0 0 5px #f0f0f0;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

/* Handle */

section.screens::-webkit-scrollbar-thumb {
	background: #dcdcdc;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

/* Handle on hover */

section.screens::-webkit-scrollbar-thumb:hover {
	background: #dcdcdc;
}

.screens .screen {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 350px;
	min-width: 350px;
	height: 180px;
	text-align: center;
	border: 1px solid #E6E6E6;
	background: #FAFAFA;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.screens .screen:not(:last-child) {
	margin-right: 30px;
}

.screen p {
	color: #2D2D2D;
}

.button_inner {
	position: absolute;
	top: -36px;
	right: 0;
	left: 0;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 160px;
	margin: auto;
	text-align: center;
	color: #FFFFFF;
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
	background: var(--turquoise);
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.button_inner:hover {
	-webkit-animation: none;
	-moz-animation: none;
	-o-animation: none;
	animation: none;
}

.button_inner .button_tooltip {
	font-size: 20px;
	font-weight: 300;
	position: absolute;
	top: -50px;
	left: -90px;
	cursor: pointer;
	-webkit-transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	text-transform: none;
	opacity: .2;
	color: #293133;
}

.button_inner .button_tooltip:before {}

.button_tooltip:hover, .button_tooltip:focus, .button_tooltip.active {
	opacity: 1;
}

.button_inner .notification_tooltip {
	font-size: 20px;
	font-weight: 300;
	position: absolute;
	top: -57px;
	left: -webkit-calc(100% + 35px);
	left: -moz-calc(100% + 35px);
	left: calc(100% + 35px);
	cursor: pointer;
	-webkit-transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	text-transform: none;
	opacity: .2;
	color: #293133;
}

.button_inner .notification_tooltip:before {}

.notification_tooltip:hover, .notification_tooltip:focus, .notification_tooltip.active {
	opacity: 1;
}

.button_inner .widget_button {
	position: relative;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
}

.button_inner .widget_button em {
	font-style: italic;
}

.button_inner .widget_notification {
	font-size: 15px;
	position: absolute;
	top: -10px;
	right: -10px;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 20px;
	height: 20px;
	color: #FFFFFF;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: red;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.button_inner .widget_notification span {
	position: relative;
}

.screen_title_input {
	font-size: 20px;
}

.screen_title_input input {
	font-size: 14px;
	line-height: 35px;
	width: 30%;
}

.current_screen_target {
	position: fixed;
	z-index: 19;
	top: 0px;
	right: 0;
	max-width: 370px;
	height: 100%;
	padding: 20px;
	background: #FFFFFF;
	-webkit-box-shadow: 0 0 3.68px .32px rgba(90, 90, 90, .3);
	-moz-box-shadow: 0 0 3.68px .32px rgba(90, 90, 90, .3);
	box-shadow: 0 0 3.68px .32px rgba(90, 90, 90, .3);
}

.current_screen_target .title {
	font-weight: bold;
}

.current_screen_target .screen_fromto label p {
	font-weight: 300;
}

.current_screen_target .screen_fromto label p {
	font-weight: 300;
}

.current_screen_target .custom_animation {
	width: 100%;
	margin-bottom: 15px;
}

.screen_empty_state {
	font-weight: bold;
	position: absolute;
	z-index: 9;
	top: 160px;
	right: 0;
	left: 0;
	width: 300px;
	margin: auto;
	padding: 20px;
	text-align: center;
	color: #C0C0C0;
	border: 2px dashed #C0C0C0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.screen_empty_state button {
	margin-top: 20px;
}

.current_screen_custom {
	position: absolute;
	top: 160px;
	right: 0;
	left: 0;
	width: 300px;
	margin: auto;
}

[class^="screen_custom_wrapper"] {
	position: absolute;
	z-index: 9;
	width: 0;
}

.current_screen_custom .custom_tooltip {
	font-size: 20px;
	position: absolute;
	cursor: pointer;
	-webkit-transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	white-space: nowrap;
}

.current_screen_custom .custom_tooltip:hover, .current_screen_custom .custom_tooltip:focus, .current_screen_custom .custom_tooltip.active {
	opacity: 1;
}

.current_screen_custom .custom_tooltip:before {}

.current_screen_custom .screen_custom_inner {
	top: -15px;
	left: 60px;
	width: 380px;
	padding: 15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #FFFFFF;
	-webkit-box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
	-moz-box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
	box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
}

.current_screen_custom .screen_custom_inner .custom_property {
	margin-right: 0;
	margin-bottom: 15px;
}

.current_screen_custom .screen_custom_inner .title {
	font-weight: bold;
}

.screen_custom_wrapper_header {
	top: 0px;
	left: -145px;
}

.screen_custom_wrapper_header .screen_custom_inner {
	right: 260px;
}

.screen_custom_wrapper_header .screen_custom_inner article {
	margin-bottom: 20px;
}

.screen_custom_wrapper_header .custom_tooltip:before {}

.screen_custom_wrapper_body {
	top: 91%;
	left: -155px;
}

.screen_custom_wrapper_body .screen_custom_inner {
	right: 280px;
}

.screen_custom_wrapper_body .screen_custom_inner article {
	margin-bottom: 20px;
}

.screen_custom_wrapper_body .custom_tooltip:before {}

.screen_custom_wrapper_thumbnail {
	top: 40%;
	left: 340px;
}

.screen_custom_wrapper_thumbnail .custom_tooltip:before {}

.custmization_note {
	font-size: 12px;
	margin-top: 5px;
}

.screen_custom_wrapper_target {
	top: 0px;
	left: 325px;
	width: 150px;
}

.screen_custom_wrapper_target .custom_tooltip:before {}

.screen_custom_wrapper_conditions {
	top: -webkit-calc(100% + 70px);
	top: -moz-calc(100% + 70px);
	top: calc(100% + 70px);
	right: 170px;
}

.screen_custom_wrapper_conditions .custom_tooltip:before {}

.screen_custom_wrapper_footer {
	top: -webkit-calc(100% + 70px);
	top: -moz-calc(100% + 70px);
	top: calc(100% + 70px);
	left: -60px;
}

.screen_custom_wrapper_footer .screen_custom_inner {
	right: 300px;
}

.screen_custom_wrapper_footer .custom_tooltip:before {}

.inbox_screens_wrapper {
	position: fixed;
	right: 0;
	bottom: 0;
	width: -webkit-calc(100% - 180px);
	width: -moz-calc(100% - 180px);
	width: calc(100% - 180px);
	background: #FFFFFF;
	-webkit-box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
	-moz-box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
	box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
}

.inbox_screens_wrapper.screens_auto_height {
	z-index: 9;
}

.show_all_screens {
	position: absolute;
	top: 0px;
	background: #b7b7b7;
	color: #FFF;
	width: 40px;
	z-index: 1;
	height: 40px;
	right: 0;
	opacity: 0;
	-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;
}

.overflow_activated .show_all_screens {
	opacity: 1;
}

.overflow_activated.screens_auto_height .show_all_screens i {
	-webkit-transition: all .4s ease-in-out .3s;
	-moz-transition: all .4s ease-in-out .3s;
	-o-transition: all .4s ease-in-out .3s;
	transition: all .4s ease-in-out .3s;
}

.overflow_activated.screens_auto_height .show_all_screens i {
	-webkit-transform: rotateZ(-180deg);
	-moz-transform: rotateZ(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotateZ(-180deg);
	transform: rotateZ(-180deg);
}

.show_all_screens:hover, .show_all_screens:focus {
	background: var(--turquoise);
}

.inbox_screens_wrapper .inbox_screens_inner {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	overflow: scroll;
	height: 150px;
	margin-bottom: 0;
	padding: 20px 20px 20px 140px;
	-webkit-align-items: flex-start;
	-webkit-box-align: start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-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;
}

.inbox_screens_wrapper.screens_auto_height .inbox_screens_inner {
	height: 450px;
}

.inbox_screens_wrapper .inbox_screens_container {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.inbox_screens_wrapper .screen {
	font-size: 15px;
	position: relative;
	width: 300px;
	margin: 0 10px 10px 0;
	padding: 15px;
	cursor: pointer;
	-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;
	background: #FFFFFF;
	-webkit-box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
	-moz-box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
	box-shadow: 0 1px 5px 0 rgba(74, 74, 74, .3);
}

.inbox_screens_wrapper .screen:hover {
	-webkit-box-shadow: 0 1px 19px 0 rgba(74, 74, 74, .3);
	-moz-box-shadow: 0 1px 19px 0 rgba(74, 74, 74, .3);
	box-shadow: 0 1px 19px 0 rgba(74, 74, 74, .3);
}

.inbox_screens_wrapper .btn_delete_screen {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	-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;
	color: #C0C0C0;
}

.inbox_screens_wrapper .btn_delete_screen:hover {
	color: #EB6262;
}

.inbox_screens_wrapper .screen_name {
	min-height: 45px;
}

.inbox_screens_wrapper .screen_detail {
	font-size: 12px;
}

.inbox_screens_wrapper .screen_number {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 38px;
	height: 38px;
	color: #FFFFFF;
}

.inbox_screens_wrapper span[class^='screen_status_'] {
	color: #FFFFFF;
	background: #b7b7b7;
	padding: 2px 5px;
	font-size: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-left: 5px;
}

.inbox_screens_wrapper span.screen_status_ongoing {
	background: #84D72C;
}

.inbox_screens_wrapper span.screen_status_invalid {
	background: #EB6262;
}

.inbox_screens_wrapper span.screen_status_past {
	background: #b7b7b7;
}

.inbox_screens_wrapper span.screen_status_scheduled {
	background: #FFC300;
}

.inbox_screens_wrapper .screen_number span {
	position: absolute;
	right: 3px;
	bottom: 0;
	font-size: 12px;
}

.inbox_screens_wrapper .screen_number:before {
	content: "";
	position: absolute;
	border-width: 0 0 38px 38px;
	border-style: solid;
	border-color: #0000 #0000 #B7B7B7 #0000;
}

.inbox_screens_wrapper .screen.first_screen:before {
	content: "1st";
	font-size: 12px;
	position: absolute;
	top: -10px;
	left: -10px;
	padding: 2px 8px;
	color: #FFFFFF;
	background: var(--turquoise);
}

.inbox_screens_wrapper .screen.first_screen:after {
	content: "";
	position: absolute;
	top: 10px;
	left: -10px;
	width: 0;
	height: 0;
	border-width: 0 10px 10px 0;
	border-style: solid;
	border-color: transparent var(--turquoise) transparent transparent;
}

.inbox_screens_wrapper .screen.active .screen_number:before {
	content: "";
	position: absolute;
	border-width: 0 0 38px 38px;
	border-style: solid;
	border-color: transparent transparent var(--turquoise) transparent;
}

.inbox_screens_wrapper .btn_add_screen {
	font-weight: bold;
	line-height: 16px;
	min-width: 110px;
	width: 110px;
	height: 68px;
	margin-right: 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;
	color: #C0C0C0;
	border: 2px dashed #C0C0C0;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 1;
}

.inbox_screens_wrapper .btn_add_screen:hover {
	color: var(--turquoise);
	border: 2px dashed var(--turquoise);
}

.inbox_screens_wrapper .btn_add_screen span {
	display: block;
}

.screens_list {
	margin-top: 30px;
}

.screens_list ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.screens_list ul li {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 22px;
	cursor: move;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #FFFFFF;
	-webkit-box-shadow: -1px 0 2px 0 rgba(0, 0, 0, .2);
	-moz-box-shadow: -1px 0 2px 0 rgba(0, 0, 0, .2);
	box-shadow: -1px 0 2px 0 rgba(0, 0, 0, .2);
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.screens_list ul li span {
	font-size: 25px;
	font-weight: 900;
	line-height: 50px;
	position: relative;
	width: 50px;
	height: 50px;
	margin-right: 10px;
	text-align: center;
	color: #307B9C;
	-webkit-border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
	background: var(--turquoise);
}

.screens_list ul li:not(:last-child) span:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	width: 1px;
	height: 20px;
	color: #FFFFFF;
	border: none;
	border-left: 1px dashed var(--turquoise);
	background-color: #FFFFFF;
}

.custom_property {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-right: 20px;
	-webkit-flex-direction: column;
}

.mce-menu, .mce-floatpanel {
	z-index: 9999999999999 !important;
}

.custom_property .subtitle {
	font-size: 14px;
	font-weight: bold;
}

.custom_property label {
	font-size: 14px;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	font-weight: normal;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.custom_property .color-picker .input-group-addon:first-child {
	min-width: 44px;
	height: 44px;
	border: 1px solid #969696;
	-webkit-border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
}

.custom_property .color-picker input[type="text"] {
	width: 100px;
	text-transform: uppercase;
	-webkit-border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
	border-left: none;
}

.custom_property.custom_inline div, .custom_property.custom_inline label {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.custom_property.custom_inline div p, .custom_property.custom_inline label p {
	font-weight: normal;
	width: 150px;
}

.custom_property .radio_input {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.custom_property .radio_input input {
	display: none;
}

.custom_property .radio_input span {
	width: 14px;
	min-width: 14px;
	height: 14px;
	border: 1px solid #000;
	border-radius: 50%;
	margin-right: 7px;
	position: relative;
	transition: all .2s ease-in-out;
}

.custom_property .radio_input span:before {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background: #000;
	top: 2px;
	left: 2px;
	border-radius: 50%;
	transform: scale(0);
	transition: all .2s ease-in-out;
}

.custom_property .radio_input input:checked+span:before {
	transform: scale(1);
}

.custom_property .radio_input p {
	transition: all .2s ease-in-out;
}

.custom_property .radio_input:hover span {
	border-color: var(--turquoise);
}

.custom_property .radio_input:hover span:before {
	border-color: var(--turquoise);
}

.custom_property .radio_input:hover p {
	color: var(--turquoise);
}

.custom_animation {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.custom_animation>p {
	margin-right: 10px;
}

.custom_animation ul {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.custom_animation ul li {
	width: 50%;
}

.custom_animation label, .custom_position label {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.custom_animation label input, .custom_position label input {
	display: none;
}

.custom_animation label span, .custom_position label span {
	position: relative;
	display: block;
	width: 12px;
	min-width: 12px;
	height: 12px;
	margin-right: 5px;
	border: 2px solid;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.custom_animation label span:before, .custom_position label span:before {
	content: "";
	position: absolute;
	top: 1px;
	left: 1px;
	display: block;
	width: 6px;
	height: 6px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #293133;
}

.custom_animation label input:checked+span:before, .custom_position label input:checked+span:before {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.custom_size label {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.custom_size label.label-range {
	position: relative;
	top: -15px;
}

.custom_size p {
	min-width: 70px;
}

.custom_size label input {
	line-height: 30px;
	width: 60px;
	margin-right: 10px;
	padding: 0 10px;
	text-align: right;
}

.button_irradiation:before, .notification_irradiation:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-animation: irradiate 1.5s ease-in-out infinite;
	-moz-animation: irradiate 1.5s ease-in-out infinite;
	-o-animation: irradiate 1.5s ease-in-out infinite;
	animation: irradiate 1.5s ease-in-out infinite;
	background: inherit;
}

.button_irradiation:before {
	right: 0;
	width: 90%;
	margin: auto;
}

.notification_irradiation:before {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

@-webkit-keyframes irradiate {
	0% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
		opacity: .8;
	}
	100% {
		-webkit-transform: scale(1.4);
		-moz-transform: scale(1.4);
		-o-transform: scale(1.4);
		transform: scale(1.4);
		opacity: 0;
	}
}

@-moz-keyframes irradiate {
	0% {
		-moz-transform: scale(1);
		transform: scale(1);
		opacity: .8;
	}
	100% {
		-moz-transform: scale(1.4);
		transform: scale(1.4);
		opacity: 0;
	}
}

@-o-keyframes irradiate {
	0% {
		-o-transform: scale(1);
		transform: scale(1);
		opacity: .8;
	}
	100% {
		-o-transform: scale(1.4);
		transform: scale(1.4);
		opacity: 0;
	}
}

@keyframes irradiate {
	0% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
		opacity: .8;
	}
	100% {
		-webkit-transform: scale(1.4);
		-moz-transform: scale(1.4);
		-o-transform: scale(1.4);
		transform: scale(1.4);
		opacity: 0;
	}
}

.button_shake, .notification_shake {
	-webkit-animation: shake 4s infinite;
	-moz-animation: shake 4s infinite;
	-o-animation: shake 4s infinite;
	animation: shake 4s infinite;
}

@-webkit-keyframes shake {
	2.5% {
		-webkit-transform: translate3d(-1px, 0, 0);
		transform: translate3d(-1px, 0, 0);
	}
	5%, 20% {
		-webkit-transform: translate3d(2px, 0, 0);
		transform: translate3d(2px, 0, 0);
	}
	7.5%, 12.5%, 17.5% {
		-webkit-transform: translate3d(-4px, 0, 0);
		transform: translate3d(-4px, 0, 0);
	}
	10%, 15% {
		-webkit-transform: translate3d(4px, 0, 0);
		transform: translate3d(4px, 0, 0);
	}
	20.99%, 100% {
		-webkit-transform: translate3d(0px, 0, 0);
		transform: translate3d(0px, 0, 0);
	}
}

@-moz-keyframes shake {
	2.5% {
		-moz-transform: translate3d(-1px, 0, 0);
		transform: translate3d(-1px, 0, 0);
	}
	5%, 20% {
		-moz-transform: translate3d(2px, 0, 0);
		transform: translate3d(2px, 0, 0);
	}
	7.5%, 12.5%, 17.5% {
		-moz-transform: translate3d(-4px, 0, 0);
		transform: translate3d(-4px, 0, 0);
	}
	10%, 15% {
		-moz-transform: translate3d(4px, 0, 0);
		transform: translate3d(4px, 0, 0);
	}
	20.99%, 100% {
		-moz-transform: translate3d(0px, 0, 0);
		transform: translate3d(0px, 0, 0);
	}
}

@-o-keyframes shake {
	2.5% {
		transform: translate3d(-1px, 0, 0);
	}
	5%, 20% {
		transform: translate3d(2px, 0, 0);
	}
	7.5%, 12.5%, 17.5% {
		transform: translate3d(-4px, 0, 0);
	}
	10%, 15% {
		transform: translate3d(4px, 0, 0);
	}
	20.99%, 100% {
		transform: translate3d(0px, 0, 0);
	}
}

@keyframes shake {
	2.5% {
		-webkit-transform: translate3d(-1px, 0, 0);
		-moz-transform: translate3d(-1px, 0, 0);
		transform: translate3d(-1px, 0, 0);
	}
	5%, 20% {
		-webkit-transform: translate3d(2px, 0, 0);
		-moz-transform: translate3d(2px, 0, 0);
		transform: translate3d(2px, 0, 0);
	}
	7.5%, 12.5%, 17.5% {
		-webkit-transform: translate3d(-4px, 0, 0);
		-moz-transform: translate3d(-4px, 0, 0);
		transform: translate3d(-4px, 0, 0);
	}
	10%, 15% {
		-webkit-transform: translate3d(4px, 0, 0);
		-moz-transform: translate3d(4px, 0, 0);
		transform: translate3d(4px, 0, 0);
	}
	20.99%, 100% {
		-webkit-transform: translate3d(0px, 0, 0);
		-moz-transform: translate3d(0px, 0, 0);
		transform: translate3d(0px, 0, 0);
	}
}

.button_bounce, .notification_bounce {
	-webkit-animation: bounce 4s infinite;
	-moz-animation: bounce 4s infinite;
	-o-animation: bounce 4s infinite;
	animation: bounce 4s infinite;
}

@keyframes bounce {
	0%, 10%, 18%, 24%, 28%, 30%, 100% {
		-webkit-transform: translate3d(0, 0px, 0);
		-moz-transform: translate3d(0, 0px, 0);
		transform: translate3d(0, 0px, 0);
	}
	5% {
		-webkit-transform: translate3d(0, -8px, 0);
		-moz-transform: translate3d(0, -8px, 0);
		transform: translate3d(0, -8px, 0);
	}
	14% {
		-webkit-transform: translate3d(0, -6px, 0);
		-moz-transform: translate3d(0, -6px, 0);
		transform: translate3d(0, -6px, 0);
	}
	21% {
		-webkit-transform: translate3d(0, -4px, 0);
		-moz-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
	26% {
		-webkit-transform: translate3d(0, -2px, 0);
		-moz-transform: translate3d(0, -2px, 0);
		transform: translate3d(0, -2px, 0);
	}
	29% {
		-webkit-transform: translate3d(0, -1px, 0);
		-moz-transform: translate3d(0, -1px, 0);
		transform: translate3d(0, -1px, 0);
	}
}

.button_pulse, .notification_pulse {
	-webkit-animation: pulse 3s infinite ease-in-out;
	-moz-animation: pulse 3s infinite ease-in-out;
	-o-animation: pulse 3s infinite ease-in-out;
	animation: pulse 3s infinite ease-in-out;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(.9);
	}
	50% {
		-webkit-transform: scale(1);
	}
	100% {
		-webkit-transform: scale(.9);
	}
}

@-moz-keyframes pulse {
	0% {
		-moz-transform: scale(.9);
		transform: scale(.9);
	}
	50% {
		-moz-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-moz-transform: scale(.9);
		transform: scale(.9);
	}
}

@-o-keyframes pulse {
	0% {
		-o-transform: scale(.9);
		transform: scale(.9);
	}
	50% {
		-o-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-o-transform: scale(.9);
		transform: scale(.9);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(.9);
		-moz-transform: scale(.9);
		-o-transform: scale(.9);
		transform: scale(.9);
	}
	50% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(.9);
		-moz-transform: scale(.9);
		-o-transform: scale(.9);
		transform: scale(.9);
	}
}


.label-text button.btn {
	line-height: 40px;
	height: 40px;
}

.btn_add_screen_target {
	position: absolute;
	cursor: pointer;
}

.scroll .screens_preview {
	margin-right: 10px;
}


.screen_reporting_name {
	padding-left: 20px;
}

.btn_edit_tile {
	position: relative;
	left: 10px;
	opacity: .3;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.btn_edit_tile:hover, .btn_edit_tile:focus {
	opacity: 1;
}

.inbox_head {
	font-weight: bold;
	padding: 0 10px;
	margin-bottom: 5px;
}

.bymf_popin_cdt {
	position: absolute;
	z-index: 999999999;
	top: -100%;
	right: 0;
	left: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 400px;
	line-height: 1;
	height: auto;
	max-height: 50%;
	margin: auto;
	padding: 20px;
	-webkit-transition: top .8s ease-in-out, opacity .3s ease-in-out .3s;
	-moz-transition: top .8s ease-in-out, opacity .3s ease-in-out .3s;
	-o-transition: top .8s ease-in-out, opacity .3s ease-in-out .3s;
	transition: top .8s ease-in-out, opacity .3s ease-in-out .3s;
	opacity: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #FFFFFF;
}

.bymf_popin_cdt.bymf_cdt_open {
	top: 10%;
	opacity: 1;
}

.bymf_popin_cdt.bymf_cdt_hide {
	top: -50%;
	-webkit-transition: top 1.5s ease-in-out, opacity .4s ease-in-out;
	-moz-transition: top 1.5s ease-in-out, opacity .4s ease-in-out;
	-o-transition: top 1.5s ease-in-out, opacity .4s ease-in-out;
	transition: top 1.5s ease-in-out, opacity .4s ease-in-out;
	opacity: 0;
}

.popin_cdt_inner {
	overflow: scroll;
}

#bymf_overlay {
	position: absolute;
	z-index: 999999;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition: opacity .4s ease-in-out;
	-o-transition: opacity .4s ease-in-out;
	transition: opacity .4s ease-in-out;
	opacity: 0;
	background: rgba(0, 0, 0, .8);
}

#bymf_overlay.bymf_cdt_open {
	top: 0px;
	opacity: 1;
}

#bymf_overlay.bymf_cdt_hide {
	top: -100%;
	-webkit-transition: opacity .4s ease-in-out, top 0s .6s;
	-moz-transition: opacity .4s ease-in-out, top 0s .6s;
	-o-transition: opacity .4s ease-in-out, top 0s .6s;
	transition: opacity .4s ease-in-out, top 0s .6s;
	opacity: 0;
}

#bymf_close_cdt {
	position: absolute;
	top: 20px;
	right: 10px;
	width: 19px;
	height: 5px;
	cursor: pointer;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: .2;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #6B6B6B;
}

#bymf_close_cdt:after {
	content: "";
	position: absolute;
	top: -7px;
	right: 7px;
	width: 5px;
	height: 19px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: inherit;
}

#bymf_close_cdt:hover, #bymf_close_cdt:focus {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	opacity: 1;
}

@media screen and (max-width: 1400px) {
	aside.navigation {
		/* width: 200px; */
	}
	body {}
	aside.top-nav {}
	aside.top-nav .top-nav-left a {}
	.new-module {
		margin: 0 0 0 60px;
	}
	.dashboard-inner .modules-inner .modules-table tr td:nth-of-type(2) .module-title {
		font-size: 15px;
	}
	.inbox_reporting {
		font-size: 15px;
	}
	.inbox_screens_wrapper {
		width: -webkit-calc(100% - 200px);
		width: -moz-calc(100% - 200px);
		width: calc(100% - 200px);
	}
	section.widget_browser_wrapper {
		height: 610px;
	}
	.custom_title {
		font-size: 16px;
	}
	.custom_inner .title {
		font-size: 12px;
	}
	.custom_property .subtitle {
		font-size: 12px;
	}
	.custom_size label {
		height: 35px;
	}
	.custom_inner article p:not(.title) {
		font-size: 14px;
	}
	.inbox_screens_wrapper .btn_add_screen {
		font-size: 14px;
	}
	.screen_custom_wrapper_body .screen_custom_inner {
		bottom: 320px;
		top: auto;
		right: 280px;
	}
	.screen_custom_wrapper_conditions .screen_custom_inner {
		top: auto;
		bottom: 350px;
	}
	.screen_custom_wrapper_thumbnail {
		z-index: -1;
	}
	h1 span {
		font-size: 17px;
	}
	.switch_wrapper {
		font-size: 14px;
	}
	.switch_wrapper .switch {
		height: 21px;
	}
	.switch_wrapper .switch div {
		top: 2px;
		left: 3px;
		width: 17px;
		height: 17px;
	}
	.switch_wrapper.switch_active .switch div {
		left: 33px;
	}
	.current_screen_custom .screen_custom_inner {
		width: 330px;
	}
	.screen_custom_wrapper_header .screen_custom_inner {
		right: 250px;
	}
	.screen_custom_wrapper_footer .screen_custom_inner {
		/*right: 260px;*/
		right: 350px;
		top: -310px;
	}
	.current_screen_target {
		height: 470px;
		z-index: 99;
	}
	.current_screen_target .triggers {
		max-height: 41%;
	}
	.current_screen_target .title {
		font-size: 14px;
	}
}





.live_preview {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.show .live_preview {
	display: block;
}

.live_preview section.widget_browser_wrapper {
	height: 100%;
	background: #EAEAEA;
	padding: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border: none;
}

.live_preview iframe {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
}

.live_preview .exit_preview {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	margin: 0;
}

.live_preview .module-navigation {
	position: static;
	width: auto;
}

.live_preview .module-navigation>button:not(:last-child) {
	margin-bottom: 0;
}

.live_preview .live_preview_nav_move {
	right: 397px;
}

.gallery_wrapper {
	position: fixed;
	z-index: 999999;
	width: 100%;
	height: -webkit-calc(100% - 50px);
	height: -moz-calc(100% - 50px);
	height: calc(100% - 50px);
	top: -100%;
	left: 0;
}

.gallery_wrapper.open {
	top: 50px;
}

.gallery_close {}

.gallery_close span {
	position: absolute;
	top: 50px;
	right: 30px;
	width: 40px;
	height: 9px;
	background: #FFF;
	cursor: pointer;
	opacity: 0.8;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.gallery_close span:after {
	position: absolute;
	top: -16px;
	right: 15px;
	content: "";
	width: 9px;
	height: 40px;
	background: inherit;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.gallery_close span:hover, .gallery_close span:focus {
	opacity: 1;
}

.gallery_prev {
	color: #FFF;
	position: absolute;
	top: 40%;
	left: 20px;
	z-index: 9999;
	height: 50px;
	width: 20px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: translateY(-50%) scale(1.6);
	-moz-transform: translateY(-50%) scale(1.6);
	-o-transform: translateY(-50%) scale(1.6);
	-ms-transform: translateY(-50%) scale(1.6);
	transform: translateY(-50%) scale(1.6);
}

.gallery_prev:hover {
	-webkit-transform: translateY(-50%) scale(1.6) translateX(-5px);
	-moz-transform: translateY(-50%) scale(1.6) translateX(-5px);
	-o-transform: translateY(-50%) scale(1.6) translateX(-5px);
	-ms-transform: translateY(-50%) scale(1.6) translateX(-5px);
	transform: translateY(-50%) scale(1.6) translateX(-5px);
}

.gallery_prev span:before {
	content: "";
	position: absolute;
	background: #d6d6d6;
	width: 13px;
	height: 4px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 27px;
	left: 2px;
}

.gallery_prev span:after {
	content: "";
	position: absolute;
	background: #d6d6d6;
	width: 13px;
	height: 4px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 20px;
	left: 2px;
}

.gallery_next {
	color: #FFF;
	position: absolute;
	top: 40%;
	right: 20px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 9999;
	height: 50px;
	width: 20px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: translateY(-50%) scale(1.6);
	-moz-transform: translateY(-50%) scale(1.6);
	-o-transform: translateY(-50%) scale(1.6);
	-ms-transform: translateY(-50%) scale(1.6);
	transform: translateY(-50%) scale(1.6);
}

.gallery_next:hover {
	-webkit-transform: translateY(-50%) scale(1.6) translateX(5px);
	-moz-transform: translateY(-50%) scale(1.6) translateX(5px);
	-o-transform: translateY(-50%) scale(1.6) translateX(5px);
	-ms-transform: translateY(-50%) scale(1.6) translateX(5px);
	transform: translateY(-50%) scale(1.6) translateX(5px);
}

.gallery_next span {}

.gallery_next span:before {
	content: "";
	position: absolute;
	background: #d6d6d6;
	width: 13px;
	height: 4px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 6px;
	top: 20px;
}

.gallery_next span:after {
	content: "";
	position: absolute;
	background: #d6d6d6;
	width: 13px;
	height: 4px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 27px;
	left: 6px;
}

.gallery_inner {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	top: 48%;
	max-width: 70%;
	max-height: 90%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	overflow: auto;
}

.gallery_inner::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

.gallery_inner::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px #f0f0f0;
	box-shadow: inset 0 0 5px #f0f0f0;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

.gallery_inner::-webkit-scrollbar-thumb {
	background: #dcdcdc;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

.gallery_inner::-webkit-scrollbar-thumb:hover {
	background: #dcdcdc;
}

.gallery_list {}

.gallery_list li {}

.gallery_list li img {
	max-width: 100%;
}

.gallery_breadcrump {
	position: absolute;
	bottom: 20px;
	width: 100%;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.gallery_breadcrump li {
	width: 15px;
	height: 15px;
	border: 2px solid #d6d6d6;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.gallery_breadcrump li:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	background: #FFF;
	top: 100%;
	left: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.gallery_breadcrump li.current:before, .gallery_breadcrump li:hover:before, .gallery_breadcrump li:focus:before {
	top: 0;
}

.gallery_breadcrump li.current {
	border: 2px solid #FFF;
}

.mce-content-body {
	padding: 0 15px 15px;
}

.device_choice {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.device_choice label {
	background: #FFF;
	margin-right: 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 20px;
	border: 1px solid #969696;
	text-align: center;
	-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;
}

.device_choice label:hover, .device_choice label:focus {
	border: 1px solid var(--turquoise);
	color: var(--turquoise);
}

.device_choice label.selected {
	background: var(--turquoise);
	color: #FFF;
}

.device_choice label input {
	display: none;
}

.device_choice label i {
	width: auto;
}

.module_description {
	margin-bottom: 10px;
}

.preview_nav_inner {
	background: #FFF;
	position: fixed;
	top: 0;
	right: 0;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	-webkit-box-pack: end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	z-index: 9;
	padding: 5px;
	-webkit-border-radius: 0 0 0 5px;
	-moz-border-radius: 0 0 0 5px;
	border-radius: 0 0 0 5px;
	-webkit-box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.46);
	-moz-box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.46);
	box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.46);
}

.live_preview .devices {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.live_preview .devices button {
	background: #F1F1F1;
	padding: 0px 10px;
	height: 40px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-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;
}

.live_preview .devices button:not(:first-child) {
	margin: 0px 40px 0px 5px;
}

.live_preview .devices button:hover {
	color: #43ACD0;
}

.live_preview .devices button.selected, .live_preview .devices button.selected:hover {
	background: var(--turquoise);
	color: #FFF;
}

.live_preview .devices button span {
	display: inline-block;
	margin-left: 5px;
	font-size: 12px;
}

/* MES OFFRES MOBILE */

.mobile_mockup {
	position: absolute;
	width: 414px;
	height: 100%;
	left: 50%;
	top: 10%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.mobile_content {
	position: absolute;
	width: 414px;
	height: 100%;
	background: #FFF;
	/*top: 82px;*/
	/*left: 64px;*/
	overflow: hidden;
}

@media screen and (max-width: 1400px) {
	.lg-outer.lg-visible, .lg-sub-html {
		padding-left: 200px;
	}
	.mobile_mockup {
		top: 15px;
	}
}

.inbox_apply {
	font-size: 14px;
	color: #FFF;
	background: #d6d6d6;
	position: relative;
	top: 4px;
	padding: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-left: 10px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.inbox_apply:hover, .inbox_apply:focus {
	background: var(--turquoise);
}

.icon_list svg {
	width: 30px;
}

.icon_list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.icon_list li {
	border: 1px solid grey;
	width: 50px;
	height: 50px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-right: 5px;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.icon_list li.black {
	background: #929292;
}

.icon_list li.selected {
	border: 1px solid var(--turquoise);
}

.wrapper_query h2 {
	font-weight: bold;
}

.query_date div {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.query_date p input {
	width: 210px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.query_date button {
	background: var(--turquoise);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #FFF;
	padding: 0 15px;
	margin-left: 10px;
}

.query_account_info {
	margin: 10px 0 20px;
	position: -webkit-sticky;
	position: sticky;
	z-index: 2;
	top: 0px;
	background: #ffffff;
	padding: 20px 0 20px;
}

.query_account_info h2 {
	margin: 0;
}

.query_account_info div {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.query_account_info p {
	width: 50%;
}

.query_account_info p strong {
	font-weight: bold;
}

.query_account_info p i {
	position: relative;
	left: 8px;
	top: 1px;
}

.query_list {}

.query_list h4 {
	font-weight: bold;
	margin-top: 40px;
}

.query_list article {}

.query_list article .query_name {
	position: -webkit-sticky;
	position: sticky;
	top: 83px;
	background: #ffffff;
	z-index: 0;
}

.query_list article .query_name strong {
	font-size: 13px;
	font-weight: normal;
}

.query_list article .query_name strong span {
	font-weight: bold;
}

.query_list article .query_variable {
	color: #444;
	background: #ffc400;
	font-weight: bold;
	display: inline-block;
	padding: 2px 6px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.query_list article .query_text {}

.query_list article pre {
	background: #FFF;
}

.label-text {
	font-weight: 500;
	font-size: 17px;
	margin-top: 6px;
}

.new-target-inner {
	width: 93%;
	margin: 0;
}

.new-module section.new_triggers_wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 0;
}

.new_triggers_wrapper>section {
	height: 100%;
	margin-bottom: 0;
}

.new_triggers_list_wrapper {
	margin-right: 20px;
	min-width: 30%;
	width: 30%;
	position: relative;
}

.new_triggers_list_wrapper .switch {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px 0 30px;
	font-size: 16px;
	font-weight: 500;
}

.new_triggers_list_wrapper .switch p {
	transition: all .2s ease-in-out;
	cursor: pointer;
}

.new_triggers_list_wrapper .btn_switch {
	width: 40px;
	height: 20px;
	margin: 0 10px;
	border-radius: 40px;
	background: var(--turquoise);
	position: relative;
	cursor: pointer;
}

.new_triggers_list_wrapper .switch.active span {
	left: 22px;
}

.new_triggers_list_wrapper .btn_switch span {
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #F6F7F8;
	top: 2px;
	left: 2px;
	transition: all .2s ease-in-out;
}

.url_debug_wrapper {
	margin: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.url_debug_wrapper p {
	margin-right: 15px;
	font-weight: 700;
	white-space: nowrap;
}

.url_debug_wrapper input {
	width: 100%;
}

.new_triggers_wrapper .title {
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	left: -30px;
	text-transform: uppercase;
}

.triggers_search {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 15px;
	padding: 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.triggers_search input {
	border: none;
	padding: 0;
	line-height: 20px;
	width: 100%;
	font-size: 16px;
}

.triggers_search input:hover, .triggers_search input:focus {
	border: none;
}

.triggers_search input::-webkit-input-placeholder {
	font-style: italic;
	font-size: inherit;
}

.triggers_search i {}

.triggers_search .triggers_search_cancel {
	cursor: pointer;
	color: inherit;
	-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;
}

.triggers_search .triggers_search_cancel:hover {
	color: #EB6262;
}

.new_triggers_list_inner {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	height: 86%;
	overflow: scroll;
	max-height: 500px;
	min-height: 420px;
}

/*.new_triggers_list_inner:before {
	position: absolute;
	content: "";
	bottom: 0px;
	height: 8px;
	width: 100%;
	background: black;
	z-index: 99999;
	opacity: .4;
	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, .13) 10%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, .13) 10%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(0, 0, 0, .13)), to(rgba(0, 0, 0, 0)));
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .13) 10%, rgba(0, 0, 0, 0) 100%);
	background: -moz-linear-gradient(bottom, rgba(0, 0, 0, .13) 10%, rgba(0, 0, 0, 0) 100%);
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, .13) 10%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, .13) 10%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}*/

.new_triggers_list_inner article {
	padding-bottom: 0;
}

.new_triggers_list_inner .new_persona_cat {
	background: #F6F7F8;
	font-weight: 700;
	padding: 10px 10px;
	font-size: 16px;
	position: -webkit-sticky;
	position: sticky;
	z-index: 9;
	top: 0;
}

.new_triggers_list_inner ul {
	margin: 0;
}

.new_triggers_list_inner ul li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 9px 10px;
	cursor: pointer;
	background: #FFF;
	position: relative;
	-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;
}

.new_triggers_list_inner ul li:hover {
	background: #f7f7f7;
}

.new_triggers_list_inner ul li:not(:last-child) {
	border-bottom: 1px solid #f5f5f5;
}

.new_trigger_label {
	width: 100%;
	line-height: 17px;
}

.new_trigger_label p {
	display: inline;
	font-size: 14px;
}

.new_trigger_tooltip_wrapper {
	display: inline;
}

.new_triggers_list_inner ul li .new_trigger_config_wrapper i {
	-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;
}

.new_triggers_list_inner ul li:hover .new_trigger_config_wrapper i {
	color: #f8d155;
}

.new_trigger_label i {
	margin-left: -5px;
	font-size: 13px;
	color: #cacaca;
	-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;
}

.new_trigger_label i:hover {
	color: #444;
}

.new_trigger_tooltip {
	position: absolute;
	font-size: 11px;
	line-height: 15px;
	font-weight: normal;
	background: #38444A;
	padding: 10px;
	top: 100%;
	cursor: pointer;
	left: 10px;
	width: -webkit-calc(100% - 20px);
	width: -moz-calc(100% - 20px);
	width: calc(100% - 20px);
	color: #FFF;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	-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;
}

.new_trigger_label i:hover+.new_trigger_tooltip {
	opacity: 1;
	visibility: visible;
}

.btn_trigger_add {
	color: #cacaca;
	margin-left: 10px;
	-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;
}

.new_triggers_list_inner ul li:hover .btn_trigger_add {
	color: #444;
}

.new_triggers_active_wrapper {
	width: 100%;
}

.new_triggers_active_inner {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 30px 30px 30px 60px;
	margin-bottom: 20px;
}

.new_triggers_active_inner .new-union-parent .union-inner {
	background: #FFF;
	left: -40px;
}

.new_triggers_active_inner .trigger .trigger-inner .delete-trigger {
	font-size: 16px;
	margin-left: 0px;
}

.new_triggers_active_inner {
	font-size: 14px;
}

.new_triggers_active_inner .triggers .trigger:first-child {
	margin-top: 0px;
}

.new_triggers_active_inner .trigger-inner>*:not(:last-child) {
	margin: 0 10px 0 0;
	font-size: 14px;
}

.new_triggers_active_inner .label-text {
	margin: 0 10px 0 0;
}

.new_triggers_active_inner .label-text input {
	font-size: 14px;
}

.new_triggers_active_inner .trigger:not(.no-operands) .trigger-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.new_triggers_active_inner .label-number {
	margin-bottom: 0;
}

.new_triggers_active_inner .trigger:not(.no-operands).trigger-geoloc .trigger-inner {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	flex-direction: column;
}

.label-geoloc {
	padding-left: 25px;
}

.geoloc-entry {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.trigger-geoloc .geoloc-inputs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.trigger-geoloc .geoloc-inputs p {
	font-weight: normal;
	font-size: 14px;
	padding-bottom: 5px;
}

.trigger-geoloc .geoloc-inputs input {
	font-weight: normal;
	width: 100%;
}

.trigger-geoloc .geoloc-inputs .geoloc-input-address {
	margin-right: 10px;
	width: 250px;
}

.trigger-geoloc .geoloc-inputs .geoloc-input-distance {
	width: 100px;
}

.trigger-geoloc .geoloc-delete {
	line-height: 21px;
	width: 21px;
	height: 21px;
	font-size: 16px;
	margin: 20px 0 0 5px;
	padding: 0;
	-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: center;
	color: #d6d6d6;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.trigger-geoloc .geoloc-delete:hover {
	color: #EB6262;
}

.trigger-geoloc .geoloc-add {
	padding: 7px 20px;
	background: #f3f3f3;
	color: #B3B3B3;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-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;
}

.trigger-geoloc .geoloc-add:hover {
	background: var(--turquoise);
	color: #FFF;
}

.trigger-schedule {}

.new_triggers_active_inner .trigger.trigger-schedule:not(.no-operands) .trigger-inner {
	align-items: flex-start;
	flex-direction: column;
}

.trigger-schedule .label-schedule {
	padding-left: 25px;
}

.trigger-schedule .schedule-add {
	padding: 7px 20px;
	background: #f3f3f3;
	color: #B3B3B3;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-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;
}

.trigger-schedule .schedule-add:hover {
	background: var(--turquoise);
	color: #FFF;
}

.trigger-schedule .schedule-entry {
	display: flex;
	align-items: center;
}

.trigger-schedule .jqCron-cross {}

.trigger-schedule .schedule-delete {
	line-height: 21px;
	width: 21px;
	height: 21px;
	font-size: 16px;
	margin-top: 10px;
	padding: 0;
	-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: center;
	color: #d6d6d6;
}

.trigger-schedule .schedule-delete:hover {
	color: #EB6262;
}

.trigger-schedule {}

.nodata {
	text-align: center;
	color: #FFF;
	padding: 20px;
}

.nodata .title {
	color: #b4b4b4;
	font-size: 20px;
}

.nodata .title i {
	margin-right: 10px;
	position: relative;
	top: -2px;
}

.history_admin {
	text-transform: uppercase;
	background: #e2e2e2;
	font-size: 8px;
	padding: 5px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: relative;
	font-weight: 700;
	top: -3px;
}

.history_campaign_link {
	font-size: 12px;
	position: relative;
	top: -2px;
	left: -4px;
	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;
}

.history_campaign_link:hover {
	opacity: 1;
}

button[disabled], button[disabled]:hover, button[disabled]:focus {
	background: #bebebe;
	cursor: not-allowed;
}

.codeEditorsWrapper {
	display: flex;
	font-size: 12px;
	margin-top: 30px;
	min-height: 500px;
}

.codeEditorsWrapper .codeEditor {
	width: 50%;
}

.codeEditorsWrapper .codeEditor.html {
	width: 70%;
	margin-right: 10px;
}

.codeEditorsWrapper .codeEditor.html .htmlReadOnlyEditor .CodeMirror {
	background: #f7f7f7;
}

.codeEditorsWrapper .codeEditor .title {
	font-weight: bold;
	margin: 0 0 .25em;
}

.recoSection .codeEditorsWrapper {
	margin-top: 20px;
}

.recoProperties {
	margin: 30px 0 0;
}

.recoPropertiesList {
	display: flex;
	margin: 0 0 20px;
}

.recoProperties .recoPropertyField+.recoPropertyField, .recoProperties .recoPropertyField+button {
	margin-left: 20px;
}

.recoPreview {
	display: flex;
	padding: 10px;
	min-height: 200px;
	flex-direction: column;
	margin-bottom: 20px;
}

.recoHtmlWrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
}

.recoHtmlError {
	color: red;
}

.recoCarrouselContainer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.recoCarrouselWrapper {
	width: 70%;
	padding: 0 30px;
}

.recoCarrouselSettings {
	flex: 0;
}

.recoCarrouselSettings .setting+.setting {
	margin-top: 10px;
}

.recoCarrouselSettings label {
	display: block;
}

.recoCarrouselSettings .label-checkbox {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.recoCarrouselSettings .label-checkbox span.span-checkbox {
	top: auto;
	margin: 0 0 0 10px;
}

.recoCarrousel .slick-prev:before, .recoCarrousel .slick-next:before {
	color: #C0C0C0;
}

.campaign_permissions span {
	width: 1.5em;
	color: #9e9e9e;
}

/* styles tags simplify */

.simplifyTagBlue {
	background: var(--turquoise);
}

.simplifyTagGreen {
	background: #5CB85C;
}

.simplifyTagRed {
	background: #D76666;
}

.simplifyTagYellow {
	background: #FFD863;
}

.simplifyTagPurple {
	background: #8967D7;
}

.shepherdTest {
	background-color: blue !important;
}

/* TinyMCE dropdown */
.tox-tinymce-aux {
	z-index: 20100 !important;
}