* {
	box-sizing: border-box;
	/* font-family: 'Poppins','Helvetica'; */
	font-size: 14px;
}
i {
	font-size: inherit;
}
body, html, p, div, span, td, th, input, textarea, select, strong,h1,h2,h3,h4,h5,h6  {
	font-family: 'Poppins','Helevetica',Arial;
	-webkit-text-size-adjust: 100%;
}

html {
	height: auto
}
 
body {
	padding: 50px 0px 0px 0;
	margin: 0;
	height: 100%;
	background: #EEE;
}

body.noscroll {
	font-size: 0;
	overflow: hidden;
	position: fixed;
	height: 100%;
	width: 100%;
}

a,
a:link,
a:visited,
a:active {
	font-size: inherit;
	color: inherit;
	text-decoration: inherit;
}

/* Scrollbar customizations */
::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

*::-webkit-scrollbar {
  width: 15px;
  background-color: transparent;
  position: absolute;
  border: 1px solid #EEE;
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 2px solid #EEE;
  background: #FFF;
  width: 15px;
}

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

.button,
a.button,
a:link.button {
	background: #102552;
	min-width: 80px;
	color: #FFF;
	display: inline-block;
	padding: 10px 20px 10px 20px;
	border-radius: 50px;
	margin-right: 5px;
	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;
	font-size: 14px;
}

.button.small {
	padding: 0px 5px 0px 5px;
	min-width: 50px;	
}

.notification .button.small {
	font-size: 10px;
	padding: 3px 8px 3px 8px;
	margin-top: 5px;
	display: none;
}

.notification:hover .button.small {
	display: inline-block;
}


.button.hide {
	pointer-events: none;
	opacity: .25;
}

.button:hover {
	opacity: .8;
}

.button i {
	color: white;
	vertical-align: middle;	
}

.button.green {
	background: #102552;
}

.button.gray {
	background: #EEE;
}

.button.red {
	background: #C73D3D;
	color: #FFF;
}


.button .label {
	color: white;
	line-height: 20px;
	font-size: 10px;
	font-weight: 300;
	text-align: center;
	padding-left: 5px;
	padding-right: 10px;
	vertical-align: middle;
}


#search {
	display: inline;
	padding: 0px;
	margin: 0px;
	vertical-align: middle;	
}

.menuwin {
	background: white;
	box-shadow:0px 2px 4px rgba(0,0,0,.15);
	position: absolute;
	z-index: 100000000;
/* 	left: 95%; */
	left: -205px;
	top: -10px;
	width: 200px;
	min-height: 40px;
	border-radius: 8px;	
}

#sidebar .menuwin {
	left: 95%;
}

.menuwin.last {
	left: -205px;
}

.message .handler {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
/*
	background: yellow;
	opacity: .5;
*/
	z-index: 3;
}

.message.fullscreen .handler {
	display: none;
}
	
.message.fullscreen .menuwin.last {
	left: -165px;
}

.message.fullscreen .menuwin {
	top: 10px;
}




.menuwin::before {
	content: '';
	position: absolute;
	transform: rotate(45deg);
	width: 14px;
	height: 14px;
	top: 13px;
	left: 193px;
	background: #FFF;
	box-shadow: 1px -1px 1px rgba(0, 0, 0, .15);
}

#sidebar .menuwin::before {
	content: '';
	position: absolute;
	transform: rotate(45deg);
	width: 14px;
	height: 14px;
	top: 13px;
	left: -6px;
	background: #FFF;
	box-shadow: -1px 1px 2px rgba(0, 0, 0, .15);
}

.menuwin .menu-el {
	color: #999;
	font-size: 12px;
	font-weight: 300;
	line-height: 30px;
	text-align: left;
	height: 30px;
	border-bottom: 1px solid #EEE;
	margin-left: 10px;
	margin-right: 10px;
	padding-left: 3px;
}

.menuwin .menu-el a,
.menuwin .menu-el a:link,
.menuwin .menu-el a:active,
.menuwin .menu-el a:visited {
	color: #999;
	font-size: 12px;
	line-height: 29px;
	text-decoration: none;
	width: 100%;
	height: 100%;
	display: block;
	padding-left: 1px;
}

.menuwin .menu-el:hover,
.menuwin .menu-el a:hover {
	color: #102552;
}

.menuwin div:last-child {
	border: 0px;
}

.menuwin .menu-el i {
	margin-right: 5px;
}
.message .message-header .message-actions .message-action.menu .menuwin .menu-el i {
	font-size: 16px;
}

.menuwin .menu-el:hover i {
	-webkit-transform: scale(1.05,1.05);
	-moz-transform: scale(1.05,1.05);
	-o-transform: scale(1.05,1.05);
	transform: scale(1.05,1.05);
}



#header {
	background: #102552;
	height: 50px;
	padding: 8px 16px 8px 10px;
	position: fixed;
	z-index: 10000;
	width: 100%;
	top:0;
}

#header .logo {
	display: inline-block;
	vertical-align: middle;	
	overflow: hidden;
	-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;	
}

#header .logo img {
	height: 35px;
}

#header .logo.colapse {}

#header .search {
	display: inline-block;
	height: 35px;
	border-radius: 100px;
	background: rgba(255,255,255,.10);
/* 	margin-left: 30px; */
	vertical-align: middle;
	max-width: 500px;
/* 	width: 50%; */
	font-size: 16px;
	color: white;	
	padding-left: 16px;
/*
	-webkit-transition: width .2s ease-in-out;
	-moz-transition: width .2s ease-in-out;
	-o-transition: width .2s ease-in-out;
	transition: width .2s ease-in-out;	
*/
}

#search {
	line-height: 35px;
}

#header .search i {
	vertical-align: middle;	
}

#header .search i.fa-search {
	color: rgba(255,255,255,.25);
	-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;		
}

#header .search:hover i.fa-search {
	transform: scale(1.2,1.2);
	color: #FFF;
}

#header .search input {
	background: none;
	border: none;
	outline: none;
	font-size: 14px;
	font-weight: 300;
	height: 35px;	
	padding: 10px;
	color: #FFF;
	width: calc(100% - 30px);
	display: inline;
}

#header .search .reset {
	display: inline;
	font-size: 18px;
	padding-top: 3px;
	cursor: pointer;
	position: absolute;
	margin-left: -10px;
}

#header .search input::placeholder {
	color: rgba(255,255,255,.25);
}

:-moz-placeholder {
    color: rgba(255,255,255,.25);
}

/* Firefox 19-50 */
::-moz-placeholder {
    color: rgba(255,255,255,.25);
}

/* - Internet Explorer 10–11
   - Internet Explorer Mobile 10-11 */
:-ms-input-placeholder {
    color: rgba(255,255,255,.25) !important;
}

/* Edge (also supports ::-webkit-input-placeholder) */
::-ms-input-placeholder {
    color: rgba(255,255,255,.25);
}


#header .actions {
	top: 10px;
	right: 16px;
	position: fixed;
/* 	display: inline-block; */
	font-size: 20px;
	color: white;
	float: right;	
	text-align: left;
}

#header .action {
	display: inline-block;
	margin: 5px;
	font-size: 14px;
	font-weight: 300;
	position: relative;
	cursor: pointer;
}

#header .action i {
	font-size: 16px;
	-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;	
}

#header .action:hover i {
	-webkit-transform: scale(1.1,1.1);
	
}

#header .action .badge {
	min-width: 20px;
	height: 20px;
	padding-left: 2px;
	padding-right: 2px;	
	border-radius: 10px;
	font-size: 9px;
	font-family: 'Poppins';
	font-weight: 600;
	line-height: 17px;
	text-align: center;
	color: #102552;
	background: white;
	border: 2px solid #102552;
	position: absolute;
	top:-8px;
	right: -13px;
	display: none;
}

#header .langlink {
	color: #333;
	font-size: 10px;
	padding: 10px;
	text-align: center;
}

.footer {
	width: 250px;
	position: fixed;
	bottom: 0;
	padding: 10px;
	background: #FFF;
	font-size: 10px;
	font-weight: 300;
	line-height: 12px;	
	color: #666;
}

.footer * {
	font-size: 10px;
	font-weight: 300;
	line-height: 12px;	
	color: #666;
}

.footer a {
	text-decoration: underline;
	line-height: 12px;
}

.footer .thanks {
	padding-bottom: 10px;
	font-weight: 400;
}


.modal-account,
.modal-notification {
	position: absolute;
	top: 30px;
	right: -12px;
	width: 300px;
	background: #FFF;
	border-radius: 4px;
	box-shadow: 0px 2px 3px rgba(0,0,0,.15);
	-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;
	
	transform: scale(0,0);
	transform-origin: 100% 0%;
	z-index: 30000;
	text-align: left;
}

.modal-account .slug {

	padding: 16px;
	
}

.modal-account .slug span {
	font-size: 18px;
	color: #333;
	vertical-align: middle;
	padding-left: 20px;
}

.modal-notification .push-invite {
	padding: 20px;
	color: #999;
	text-align: center;
	font-weight: 300;
	position: relative;
}

.modal-notification .push-invite .close {
	cursor: pointer;
	position: absolute;
	right: 16px;
	top: 16px;
}

.modal-notification .push-invite .text {
	padding-bottom: 20px;
	color: #102552;
	text-align: center;
	font-weight: 300;	
}

.modal-account.opened,
.modal-notification.opened {
	transform: scale(1,1);
}

.modal-notification.opened .notifications-list {
	width: auto;
	height: auto;
}

.modal-account::before,
.modal-notification::before {
	content: '';
	position: absolute;
	transform: rotate(45deg);
	width: 14px;
	height: 14px;
	top: -7px;
	right: 12px;
	background: #FFF;
}

.modal-notification {
	right: -40px;
}

.modal-notification::before {
	right: 40px;
}

.modal-notification .notifications-list .empty {
	padding: 20px;
	color: #999;
}

.modal-notification .notifications-list {
	max-height: 500px;
	
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.modal-notification .notification {
	position: relative;
	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;
	border-bottom: 1px solid #FFF;			
}

.modal-notification .notification .notification-action {
	font-size: 14px;
	color: #999;
	position: absolute;
	right: 10px;
	top: 35%;
	opacity: 0;
	-webkit-transition: background .2s ease-in-out;
	-moz-transition: background .2s ease-in-out;
	-o-transition: background .2s ease-in-out;
	transition: background .2s ease-in-out;
	cursor: pointer;	
}

.modal-notification .notification:hover .notification-action {
	opacity: 1;
}

.modal-notification .notification.new {
	background: #f8feda;
}

.modal-notification .notification:hover {
	background: #f8feda;
}

.modal-notification .notification .notification-container,
.modal-notification .notification .notification-infos {
	display: inline-block;
	color: #666;
	vertical-align: top;
}

.modal-notification .notification .notification-container {
	border: 1px solid #EEE;
}

.modal-notification .notification.group .notification-container {
	border: none;
	border-radius: 50%;
	overflow: hidden;
	width: 30px;
	height: 30px;
}

.modal-notification .notification .notification-infos {
	width: 65%;
	padding-left: 10px;
}

.modal-notification .notification .publisher-logo {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 24px;
	font-weight: 100;
	color: #102552;
	padding: 0;
	background: #FFF;
	margin-left: auto;
	margin-right: auto;	
	border-radius: 30px;
}

.modal-notification .notification .publisher-logo img {
	width: 50px;
}

.modal-notification .notification .publisher-logo.empty {
	border: 1px solid #99d8ee;
}

.modal-notification .notification .new {
	padding: 5px 10px 5px 10px;
	font-size: 12px;
	color: #FFF;
	background: #102552;
	border-radius: 50px;
	position: absolute;
	left: 25%;
	top: 10px;
}

html[lang~="fr_"] .modal-notification .notification .new {
	left: 20%;
}


.modal-notification .notification .notification-company {
	font-size: 18px;
	padding-top: 10px;
	color: #102552;	
	text-align: center;
	padding-bottom: 20px;
}

.modal-notification .notification .notification-premium-action {
	text-align: center;
}

.modal-notification .notification .notification-premium-action span:not(.toggle,.switch) {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	vertical-align: middle;
	margin-right: 10px;
	color: #000;
}

.modal-notification .notification .notification-premium-action .switch {
	display: inline-block;
	vertical-align: middle;	
}

.modal-notification .notification .notification-infos .notification-sender {
	font-size: 12px;
	font-weight: 500;
}

.modal-notification .notification .notification-infos .notification-subject {
	font-size: 14px;
	color: #102552;
}


.modal-account .modal-menu-el {
	border-bottom: 1px solid #EEE;
	color: #666;
	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;		
}

.modal-account .modal-menu-el a {
	width: 100%;
	display: block;
	padding: 20px;	
}

.modal-account .modal-menu-el i {
	margin-right: 10px;
}

.modal-account .modal-menu-el:hover {
	background: #F7F7F7;
	color: #102552;
}

.modal-account div.modal-menu-el:last-child {
	border-bottom: 0px;
}

#sidebar {
	background: #FFF;
	width: 250px;
	height: calc(100% - 50px);
	top: 50px;
	padding-bottom: 105px;
	margin-left: -250px;
	z-index: 1000;
	overflow-x: hidden;
	overflow-y: auto;	
	-webkit-overflow-scrolling: touch;
	-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;		
}

#sidebar-handle {
	width: 36px;
	height: 36px;
	margin-right: 10px;
	line-height: 36px;
	/* padding: 8px; */
	text-align: center;
	left: 0;
	top: 0;
	color: #FFF;
	font-size: 18px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 0px 4px 4px 0px;
	-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;
	cursor: pointer;	
}

#sidebar-handle:hover {
	background: rgba(255,255,255,.15);
	border-radius: 50px;
}


#sidebar-handle.open {
	left: 0;
}

/* #sidebar-handle.open i  {
	transform: rotate(180deg);
} */

#sidebar.open {
	margin-left: 0;
}


.wrapper {
	position: relative;
}

.wrapper.fixed {
	position: fixed;
}

#sidebar .section {
	position: relative;
}

#sidebar [data-section="trial"] {
	padding: 30px;
	color: #102552;
	font-size: 18px;
	line-height: 20px;
	font-weight: 600;
	text-align: center;
	position: relative;
}
#sidebar [data-section="trial"] i {
	font-size: 60px;
}
#sidebar [data-section="trial"] .close {
	cursor: pointer;
	position: absolute;
	right: 16px;
	top: 16px;
	width: 25px;
	height: 25px;
}
#sidebar [data-section="trial"] .close i {
	font-size: 18px;
}
#sidebar [data-section="trial"] small {
	font-weight: 300;
	font-size: 11px;
	color: #666;
	line-height: 13px;
	display: block;
	padding-top: 10px;
}
#sidebar [data-section="trial"] .button {
	margin-top: 20px;
}

#sidebar .section.newsenders,
#sidebar .section-container.newsenders,
#sidebar .section.forwardmessage,
#sidebar .section-container.forwardmessage {
	display: none;
}

#sidebar .section-container.createusername .form {
	padding: 10px;
	position: relative;
}

#sidebar .section-container .form input[type=text] {
	padding: 10px 10px 10px 15px;
	border-radius: 20px;
	font-size: 14px;
	border: 1px solid #F2F2F2;
	transition: all ease-in-out .2s;	
}

#sidebar .section-container.createusername label {
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
	color: #FFF;
	padding: 20px 10px 10px 10px;
	display: block;
	background: #102552;
}

#sidebar .section-container.createusername label .button {
	background: #FFF;
	color: #102552;
	margin: 20px auto;
	width: fit-content;
	display: block;
}

#sidebar .section-container.createusername .slug-container {
	padding: 10px;
	color: #102552;
}

#sidebar .section-container.createusername .frequest-indicator {
	top: 15px;
}

#sidebar .section.fixed {
	position: fixed;
	width: 100%;
}

#sidebar .section-header {
	background: #F7F7F7;
	color: #102552;
	padding: 10px;
	cursor: pointer;
	height: 40px;
	border-bottom: 1px solid white;
}

#sidebar .section-header i.fa-chevron-up {
	font-size: 12px;
	position: absolute;
	right: 10px;
	margin-top: 5px;	
}

#sidebar .section.up i.fa-chevron-up {
	transform: rotate(180deg);
}

#sidebar .section-header .label {
	font-size: 12px;
	font-weight: 600;	
	display: inline-block;
	padding-left: 3px;
}

#sidebar .section-container {
	padding-bottom: 10px;
}

#sidebar .section-container.publishers {
/* 	padding-bottom: 150px; */
}

#sidebar .section-container.publishers .publisher .publisher-country {
	position: relative;
}

#sidebar .section-container.publishers .publisher .publisher-country .publisher-country-name {
	padding: 8px 8px 8px 35px;
	display: inline-block;
	vertical-align: middle;
	font-size: 10px;
}

#sidebar .section-container.publishers .publisher .publisher-country .publisher-actions {
	position: absolute;
	right: 5px;
}

#sidebar .section-container.publishers h3 {
	margin: 0;
	padding: 10px;
	outline: none;
	cursor: pointer;
	transition: all ease-in-out .2s;
	position: relative;
	font-size: 12px;
	font-weight: 500;
}

#sidebar .section-container.publishers h3 i {
	position: absolute;
	right: 10px;
	line-height: 20px;
	font-size: 12px;
	color: #102552;
	pointer-events: none;
}

#sidebar .section-container.publishers h3:hover,
#sidebar .section-container.publishers h3.ui-accordion-header-active {
	background: #F2F2F2;
}

#sidebar .section-container.publishers .country {
	padding: 5px;
}

#sidebar .section-container.publishers .country span {
	font-size: 10px;
	color: #999;	
	margin-left: 5px;
	margin-bottom: 5px;
	display: block;
}

#sidebar .section-container.publishers .country select {
	-webkit-appearance: none;
	padding: 5px 30px 5px 10px;
	border-radius: 30px;
	border: 1px solid #EEE;
	font-size: 12px;
	color: #102552;
	display: inline-block;
	outline: none;
}

#sidebar .section-container.publishers .country select + i {
	position: relative;
	margin-left: -25px;
	color: #102552;
	pointer-events: none;
}


#sidebar .section-container.publishers .premiums .loader {
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	margin-bottom: 10px;	
	display: block;
	text-align: center;
}

#sidebar .section-container.hide {
	height: 0;
	overflow: hidden;
	padding-bottom: 0;
}

#sidebar .section-container .sender,
#sidebar .section-container .publisher {
	cursor: pointer;
	padding: 5px 10px 5px 16px;
/* 	border-bottom: 1px solid #EEEEEE; */
	-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;
}

#sidebar .section-container .publisher:hover,
#sidebar .section-container .sender:hover {
	background: #daf6fe;
}


#sidebar .section-container.senders .sender.gray {
	background: #f8f8f8;
}

#sidebar .section-container.senders .sender.gray * {
	color: #999;
}

#sidebar .section-container.senders .folder {
	cursor: pointer;
	height: 30px;
	overflow: hidden;
	color: #666;
	font-weight: 500;
	font-size: 12px;
	margin-bottom: 5px;
	margin-top: 5px;
}

#sidebar .section-container.senders .folder .header {
	padding: 5px 10px 5px 16px;
}

#sidebar .section-container.senders .folder .header::after {
	content: "";
	clear: both;
}

#sidebar .section-container.senders .folder .header span.wiggle {
	display: inline-block;
	animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
	animation-iteration-count:infinite;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

#sidebar .section-container.senders .folder .header .options {
	right: 10px;
	cursor: pointer;
	display: inline-block;
	float: right;
}

#sidebar .section-container.senders .folder .header .options i {
	font-size: 20px;
}

#sidebar .section-container.senders .folder .options .menuwin i {
	font-size: 14px;
}


#sidebar .section-container.senders .folder .header .options:hover i {
	color: #102552;
}

#sidebar .section-container.senders .folder.opened {
	height: auto;
	min-height: 50px;
	overflow: visible;
}

#sidebar .section-container.senders .folder.opened .header {
	color: #102552;
	background: #fbfbfb;
}

#sidebar .section-container.senders .folder .header i {
	margin-right: 5px;
	font-size: 14px;	
}

#sidebar .section-container.senders .folder .empty {
	padding: 10px 10px 10px 15px;
	font-size: 12px;
}

#sidebar .section-container.senders .folder form {
	display: inline;
	padding: 0;
	margin: 0;
}

#sidebar .section-container.senders .folder input {
	font-size: 14px;
	border: 1px solid #EEE;
	margin: 0px;
	padding: 3px;
	display: inline;
	width: 72%;
}

#sidebar .section-container.senders .createfolder {
	padding: 10px;
	position: relative;
}

#sidebar .section-container.senders .createfolder form.hidden {
	display: none;
}

#sidebar .section-container.senders .createfolder .addbutton {
	width: 100%;
	padding: 5px 10px 5px 7px;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	height: 50px;
}

#sidebar .section-container.senders .createfolder .addbutton i {
	font-size: 16px;
	position: absolute;
	right: 10px;
}


#sidebar .section-container.senders .createfolder input {
	padding: 10px;
	width: 100%;
}

#sidebar .section-container.newsenders .sender {
	background: #e6f1f7;
	padding: 16px;
	border-right: 1px solid white;
	border-bottom: 1px solid white;
}

#sidebar .section-container .sender .sender-name,
#sidebar .section-container .publisher .publisher-logo {
	font-size: 14px;
	font-weight: 500;		
	word-wrap: break-word;		
}

#sidebar .section-container .sender .sender-unread,
#sidebar .section-container .publisher .publisher-unread {
	background: #EEE;
	border-radius: 30px;
	text-align: center;
	color: #333;
	font-size: 9px;
	line-height: 16px;
	position: relative;
/*
	width: 16px;
	height: 16px;
*/
	display: inline-block;
	margin-left: 5px;
	padding: 0px 8px 0px 8px;
}

#sidebar .section-container.senders .sender.gray .sender-unread{
	color: #FFF;
}

#sidebar .section-container.senders .empty-senders {
	padding: 10px;
	text-align: center;
	display: none;
}

#sidebar .section-container.senders .empty-senders .text {
	font-size: 14px;
	line-height: 18px;
	font-weight: 300;
	color: #333;
}

#sidebar .section-container.senders .empty-senders .text strong {
	color: #102552;
}

#sidebar .section-container .publisher .publisher-logo,
#sidebar .section-container.senders .sender .publisher-logo {
	width: 30px;	
	font-size: 12px;
	display: inline-block;
}

#sidebar .section-container.senders .sender .publisher-logo {
	vertical-align: top;
	width: 20px;
}

#sidebar .section-container .publisher .publisher-logo img,
#sidebar .section-container.senders .sender .publisher-logo img {
	margin-right: 5px;
	vertical-align: middle;
	border-radius: 30px;
}

#sidebar .section-container.senders .sender .publisher-logo img {
	width: 20px;
}

#sidebar .section-container .publisher .publisher-domain {
	padding-left: 5px;
	width: calc(100% - 65px);
	vertical-align: middle;
	display: inline-block;
	font-size: 10px;
	line-height: 12px;
	font-weight: 500;	
	word-wrap: break-word;	
}

#sidebar .section-container.senders .sender .sender-name {
	font-size: 10px;
	line-height: 12px;
	font-weight: 500;	
	word-wrap: break-word;
	padding-left: 5px;
	width: calc(100% - 55px);
	display: inline-block;
	vertical-align: middle;
	color: #333;
	text-transform: capitalize;
}

#sidebar .section-container.senders .sender.gray .sender-name {
	color: #999;
	text-decoration: line-through;
}

#sidebar .section-container .sender .sender-email {
	font-size: 10px;
	font-weight: 300;
}

#sidebar .section-container .sender .sender-actions,
#sidebar .section-container .publisher .publisher-actions {
	display: inline-block;
	text-align: right;
	width: 30px;
	vertical-align: middle;
	cursor: pointer;		
}

#sidebar .section-container.newsenders .sender .sender-actions {
	display: block;
	right: auto;
	margin-top: 16px;	
	width: auto;
	text-align: left;	
}

#sidebar .section-container.senders .sender .sender-actions i,
#sidebar .section-container.senders .folder .options i {
	color: #102552;
	font-size: 20px;
}

#sidebar .section-container.senders .sender .sender-actions .menu-el i {
	font-size: 14px;
}

#sidebar .section-container .forward-message {
	padding: 10px;
	border-bottom: 1px solid #EEE;	
}

#sidebar .section-container .forward-message::after,
#sidebar .section-container .forward-message .forward-message-sender-container::after,
#sidebar .section-container .forward-message .forward-message-preview::after {
	content: '';
	display: block;
	clear: both;
}

#sidebar .section-container .forward-message .forward-message-sender-picture {
	float: left;
	border-radius: 30px;
	overflow: hidden;
	width: 30px;
	height: 30px;
	background: #F2F2F2;
	text-align: center;
	line-height: 30px;
	color: #FFF;
}

#sidebar .section-container .forward-message .forward-message-sender-name {
	font-size: 11px;
	font-weight: 400;
	color: #666;
	float: left;
	margin-left: 10px;
	width: calc(100% - 40px);
}

#sidebar .section-container .forward-message .forward-title {
	font-size: 12px;
	font-weight: 300;
	margin-bottom: 10px;
	padding-top: 10px;
	border-bottom: 1px solid #EEE;
}

#sidebar .section-container .forward-message .forward-message-preview {
	margin-top: 10px;
	border: 1px solid #EEE;	
}
	
#sidebar .section-container .forward-message .forward-message-preview-picture,
#sidebar .section-container .forward-message .forward-message-preview-container {
/* 	float: left; */
}

#sidebar .section-container .forward-message .forward-message-preview-picture {
	overflow: hidden;
}


#sidebar .section-container .forward-message .forward-message-preview-image {
	width: 100%;
}

#sidebar .section-container .forward-message .forward-message-preview-container {
	width: 100%;
	padding: 5px;
}

#sidebar .section-container .forward-message .forward-message-preview-sender {
	font-size: 10px;
	color: #666;
}

#sidebar .section-container .forward-message .forward-message-preview-subject {
	color: #102552;
	font-size: 12px;
}

#sidebar .section-container .forward-message .forward-message-actions {
	text-align: center;
	padding-top: 20px;
}

#sidebar .search {
	border-bottom: 1px solid #EEE;
}

#sidebar .search.results {
	padding-bottom: 30px;
}

#sidebar .search .find-header {
	padding: 0px 0px 10px 15px;
	font-size: 12px;
	font-weight: bold;
	color: #999;
}

#sidebar .search form {
	position: relative;
}

#sidebar .search input {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	padding: 10px 5px 10px 30px;
	-webkit-appearance: none;
	outline: none;
	border: 1px solid #F2F2F2;
	border-radius: 50px;
	font-size: 12px;
	transition: all ease-in-out .2s;
	margin-bottom: 10px;
	margin-top: 10px;
}

#sidebar .search:hover input,
#sidebar .createusername .form:hover input[type=text] {
	border: 1px solid #CCC;
}

#sidebar .search span {
	position: absolute;
	left: 25px;
	top: 10px;
	color: #EEE;
	transition: all ease-in-out .2s;
}

#sidebar .search .reset {
	position: absolute;
	right: 20px;
	top: 10px;
	cursor: pointer;
	color: #999;
}

#sidebar .search:hover span {
	color: #102552;
	transform: scale(1.02,1.02);
} 


#filters {
	background: white;
/* 	border-bottom: 1px solid #EEE; */
	flex: 1 100%;
	height: 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;
	overflow: hidden;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	white-space: nowrap;
	position: fixed;
	width: calc(100% - 250px);
	z-index: 11000;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, .10);			
	left: 250px;
	margin-top: -40px;
	padding-right: 10px;
}

#filters .listing-type {
	float: left;
/* 	display: inline-block; */
	position: sticky;
	left: 20px;
	background: #FFF;
}

#filters.expand {
	left: 0px;
	width: 100%;
}

#filters.colapse {
	left: 0px;
	width: calc(100% - 250px);
}

#filters.open {
/* 	height: 40px; */
	margin-top: 0;
}

#filters .filteredby {
	font-size: 10px;
	color: #999;
	padding: 10px;
}

#filters .filter,
#filters .unread {
	background: #e5f0f7;
	display: inline-block;
	color: #666;
	border-radius: 4px;
	padding: 0px 5px 0px 5px;
	margin: 7px 5px 10px 0px;
	
}

#filters .unread {
	cursor: pointer;
}

#filters .unread.off {
	background: #FFF;
	color: #999;
	border: 1px solid #EEE;
}


#filters .filter:hover,
#filters .unread:hover {
	opacity: .8;
}


#filters div:first-child {
	margin-left: 10px;
}

#filters div:last-child {
	margin-right: 10px;	
}

#filters .filter .filter-label,
#filters .unread .filter-label {
	font-size: 10px;
	font-weight: 300;
	line-height: 25px;
	vertical-align: middle;	
	padding-left: 5px;
	padding-right: 5px;
}

#filters .filter .filter-action,
#filters .unread .filter-action {
	vertical-align: middle;
	line-height: 25px;
	cursor: pointer;
}

#filters .filter .filter-action {
	padding: 0 5px;
}

#filters .unread.off .filter-action {
	display: none;
}

#filters .action {
	position: fixed;
	right: 10px;
	top: 7px;
	background: #102552;
	color: #FFF;
	padding: 5px 15px 5px 15px;
	border-radius: 25px;
	font-size: 10px;
}

#filters.expand + #messages .newindicator {

}

#messages {
	background: #EEE;
	width: calc(100% - 250px);
	height: calc(100% - 50px);
	flex: 1 100%;
	position: relative;
}

#messages.filtered,
#messages.collapse.filtered {
	height: calc(100% - 90px);
	margin-top: 40px;
}

#messages.collapse {
	flex: 0;
	height: calc(100% - 50px);
}

#messages .firsttime,
#messages .nop,
#messages .loader {
	font-size: 2em;
	font-weight: 300;	
	color: #102552;
	width: 100%;
	height: 100%;
	text-align: center;
    top: 75px;
    position: absolute;
}



.message .loader.aligntop {
	top: 0;
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(255,255,255,.9);
}

.message .loader.aligntop .loadercontainer {
	padding-top: 150px;
}

#messages .firsttime {
	display: none;
	top: 15%;
    position: relative;	
}

#messages .firsttime .icon {
	display: inline-block;
	background: #FFF;
	border-radius: 150px;
}

#messages .firsttime .title {
	font-size: 2em;
	font-weight: 300;	
	color: #102552;
}

#messages .infinit {
	background: #FFF;
	font-size: 2em;
	font-weight: 300;	
	color: #102552;
	text-align: center;
    bottom: 0px;
    padding: 5px;
    position: fixed;
	width: 50px;
	height: 50px;
	margin-left: calc(50% - 225px);
	top: initial; 
	border-radius: 10px 10px 0px 0px;
	z-index: 30000;
	box-shadow: -2px 0px 7px rgba(0,0,0,.15);
	
	
	-webkit-transition: -webkit-transform .3s;
	-moz-transition: -moz-transform .3s;
	-o-transition: -o-transform .3s;
	transition: transform .3s;
	transition-timing-function: ease-in-out;
	-webkit-transition-delay: 1;	
	-moz-transition-delay: 1;
	-o-transition-delay: 1;
	transition-delay: 1;
				
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-transform: translateY(50px);
    -webkit-transform-origin: 50% 100%;    
    -moz-transform: translateY(50px);
    -moz-transform-origin: 50% 100%;    
    -o-transform: translateY(50px);
    -o-transform-origin: 50% 100%;
	transform: translateY(50px);
    transform-origin: 50% 100%;        
		
}

.infinit svg path,
.infinit svg rect {
	fill: #102552;
}


#messages .infinit.animate {

	-webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
	transform: translateY(0px);
/*
	-webkit-animation:loader-footer .2s;
    -moz-animation:loader-footer .2s;
    -o-animation:loader-footer .2s;
    animation:loader-footer .2s;
*/
    
}


@-webkit-keyframes loader-footer {
    0%   {
        -webkit-transform: translateY(50px);
        -webkit-transform-origin: 50% 100%;
    }100% {
        -webkit-transform: translateY(0px);
        -webkit-transform-origin: 50% 100%;
    }
}
@-moz-keyframes loader-footer {
    0%   {
        -moz-transform: translateY(50px);
        -moz-transform-origin: 50% 100%;
    }100% {
        -moz-transform: translateY(0px);
        -moz-transform-origin: 50% 100%;
    }
}
@-o-keyframes loader-footer {
    0%   {
        -o-transform: translateY(50px);
        -o-transform-origin: 50% 100%;
    }100% {
        -o-transform: translateY(0px);
        -o-transform-origin: 50% 100%;
    }
}
@keyframes loader-footer {
    0%   {
        transform: translateY(50px);
        transform-origin: 50% 100%;
    }100% {
        transform: translateY(0px);
        transform-origin: 50% 100%;
    }
}

#messages .nop svg {
	font-size: 4em;
}

.loader svg path,
.loader svg rect {
	fill: #102552;
}

#messages:not(.fullscreen) .message-actions .message-action:not(.menu) {
	display: none;
}


#messages.collapse .message {
	height: 350px;
	padding-bottom: 0px;	
}

.messages-container {
	width: 100%;
	height: 100%;
	padding-right: 20px;
	padding-bottom: 100px;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	
	-webkit-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
		
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
}

.messages-container.no-scroll {
	overflow: hidden;
}

.messages-container.filter {
/* 	height: calc(100% - 40px); */
}



.message {				
	width: 33%;
	flex: 1 30%;
	align-self: flex-start;
	min-width: 250px;
	max-width: 33%;
	height: 400px;
	padding: 30px 0px 0px 30px;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
	
	-webkit-transition: -webkit-transform .3s;
	-moz-transition: -moz-transform .3s;
	-o-transition: -o-transform .3s;
	transition: transform .3s;
	transition-timing-function: ease-in-out;
	z-index: 1;	
}

.message .message-container {
	border-radius: 20px;
	position: relative;	
	background: #FFF;
	padding: 16px;
	height: 100%;	
	-webkit-transition: background .3s, -webkit-transform .3s;
	-moz-transition: background .3s, -moz-transform .3s;
	-o-transition: background .3s, -o-transform .3s;
	transition: background .3s, transform .3s;
	transition-timing-function: ease-in-out;
	display: flex;
	flex-flow: column;	
}


.message.blank .message-container {				
	background: rgba(255,255,255,.5);
}

.message.blank .message-container svg {				
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);	
	-moz-transform: translateY(-50%);	
	-o-transform: translateY(-50%);	
	transform: translateY(-50%);	
}


.message .message-container .iframe-container {
/* 	overflow: scroll; */
	position: relative;
	width: 100%;
	height: calc(100% - 120px);
	overflow: hidden;
}

.message.fullscreen .message-container .iframe-container {
	height: auto;
	flex: 2;	
}

.message.fullscreen {
	width: calc(75% - 250px);
	height: calc(100% - 50px);
	position: relative;
	padding: 0px;
}

.container .message.fullscreen.filtered {
	height: calc(100% - 90px);
	margin-top: 40px;
}

.message.new .message-container {
/* 	border: 1px solid #102552; */
/* 	box-shadow: 0px 0px 10px #102552 */
}

.message.new .message-container::before {
	content: '';
/*
	font-size: 6px;
	font-family: 'Poppins';
	color: #FFF;
	text-align: center;
	padding-top: 2px;
*/
	display: block;
	position: absolute;
	width: 15px;
	height: 15px;
	border-radius: 50px;
	background: #e0fb04;
	left: 10px;
	top: 10px;
	z-index: 100;
}

.container {
	display: flex;
	width: 100%;
	height: 100%;
	position: fixed;
}

.message:not(.fullscreen) .message-container:hover {				
	background: #F7F7F7;
	transform: scale(1.01,1.01);
	z-index: 10000;
}

.message.clone {
	z-index: 1000;
	max-width: none;		
}

.message.fullscreen .message-container {
	padding: 20px;
}


.message .message-header {				
	position: relative;
	padding-bottom: 20px;
	height: 120px;
}

.message .message-header .message-description {
	color: #102552;
}

.message .message-header .message-description::after {
	content: '';
	display: block;
	clear: both;
}

.message.fullscreen .message-header .message-description {
	width: calc(100% - 140px);
	padding-top: inherit;
	line-height: 30px;
}

.message.fullscreen .message-container {
	border-radius: 0;
}


.message .message-container .message-header .message-sender .message-sender-container {
	color: #333;
	font-size: 11px;
	line-height: 13px;
	font-weight: 300;					
	display: inline-block;
	word-wrap: break-word;
}

.message:not(.fullscreen) .message-container:hover .message-header .message-sender-container,
.message:not(.fullscreen) .message-container:hover .message-header .message-subject {				
/* 	color: white; */

}



.message .message-header .message-description .publisher-logo {
	vertical-align: middle;
	margin-right: 10px;
	float: left;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid #F7F7F7;
}

.message .message-header .message-description .publisher-logo img {
	width: 100%;
}


.message .message-header .message-description .publisher-logo.empty,
.modal-notification .notification.group .notification-container.empty,
#sidebar .section-container .publisher .publisher-logo.empty,
#sidebar .section-container .sender .publisher-logo.empty {
	border: 0px solid #99d8ee;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: #FFF;
	padding: 0;
	background: #102552;
	border-radius: 29px;
	text-transform: uppercase;
}

#sidebar .section-container .sender .publisher-logo.empty {
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 12px;
/* 	margin-right: 10px; */
}

.modal-notification .notification.group .notification-container.empty {
	padding: 0;
	color: #FFF;	
	line-height: 30px;
}

.message.fullscreen .message-header .message-description .publisher-logo.empty {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 24px;
	font-weight: 400;
}

.message:not(.fullscreen):hover .message-header .message-description .publisher-logo.empty {
/*
	color: white;
	border: 1px solid white;
*/
}

.message .message-header .message-description .message-sender {
	width: calc(100% - 55px);
	float: left;
	line-height: 30px;
	vertical-align: middle;
	margin-bottom: 10px;	
	-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;	
}

.message .message-header .message-description .message-sender strong {
	font-size: 11px;
	font-weight: 500;
}

.message .message-header .message-subject {
	color: #333;
/*
	font-size: 14px;
	font-weight: 300;
*/
	font-family: 'Poppins';
	font-weight: 600;
	font-size: 16px;
	line-height: 18px;	
	height: 80px;
	overflow: hidden;	
	-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;	
}



.message.fullscreen .message-header .message-description .message-sender {
	height: 60px;
	width: calc(100% - 65px);
	line-height: 50px;
}


.message.fullscreen .message-header .message-description .message-sender,
.message.fullscreen .message-header .message-description .message-sender strong {
	font-size: 16px;
	padding-bottom: 10px;
}

.message.fullscreen .message-header .message-description .publisher-logo {
	width: 50px;
	height: 50px;
}

.message.fullscreen .message-header .message-description .publisher-logo img {
	width: 100%;
	
}

.message.fullscreen .message-header .message-subject {
	font-size: 24px;
	line-height: 27px;
	height: auto;
}

.message .message-header .message-actions {
	position: absolute;
	top: -5px;
	right: -5px;
}

.message .message-header .message-actions .message-action {
	display: inline-block;
	vertical-align: middle;
	color: #666;
	font-size: 18px;
	padding-right: 10px;
	margin-top: 5px;
}

.message.fullscreen .message-header .message-actions .message-action a,
.message.fullscreen .message-header .message-actions .message-action a:link,
.message.fullscreen .message-header .message-actions .message-action a:active,
.message.fullscreen .message-header .message-actions .message-action a:visited {
/*
	color: #102552;
	font-size: 16px;
*/
	display: inline-block;
	vertical-align: middle;	
}

.message.fullscreen .message-header .message-actions .message-action:hover,
.message.fullscreen .message-header .message-actions .message-action a:hover {
	color: #CCC;
	cursor: pointer;
}

.message.fullscreen .message-header .message-actions .message-action {
	padding: 10px;
}

.message.fullscreen .message-header .message-actions .message-action i {
	font-size: 20px;
}

.message:not(.fullscreen) .message-container:hover .message-header .message-actions .message-action {
/* 	color: white; */
	background: white;
}

.message:not(.fullscreen) .message-container:hover .message-header .message-actions .message-action.menu {
/* 	border: 1px solid #FFF; */
}

.message:not(.fullscreen) .message-header .message-actions .message-action.menu {
	border-radius: 20px;
/* 	border: 1px solid #102552; */
	color: #666;
	font-weight: 700;
	padding: 2px;
	margin-top: 0;
	width: 24px;
	height: 24px;
	/* overflow: hidden; */
	line-height: 9px;
	text-align: center;
	vertical-align: middle;
	z-index: 3;
	position: relative;
}

.message .message-header .message-actions .message-action.menu i {
	font-size: 20px;
}

/* .message.fullscreen .message-header .message-actions .message-action.menu {
	margin-right: 5px;
	border: 0;
	vertical-align: inherit;
	margin-top: 5px;	
	padding-top: 5px;
} */

.message.fullscreen .message-header .message-actions .message-action.menu i {
	line-height: 24px;
	font-size: 24px;
}

.message.fullscreen .message-header {
	cursor: auto;
	height: auto;
}

/* .message .message-header .message-actions .message-action.close {
	font-size: 20px;
} */

iframe {
	
/*
	width: 1px;
    min-width: 100%;
    *width: 100%;
*/	
	height: 100%;
/* 	background: #FFF;	 */
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-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;
	display: block;
	overflow-x: hidden;
	position: relative;
	z-index: 2;
}


.logos {
	background: #EEE;
	width: 200px;
}

.logos .logo {
	padding: 10px;
	border-bottom: 1px solid white;
	height: 50px;
	line-height: 50px;
	font-size: 12px;
	color: #333;
	position: relative;
}

.logos .logo::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

.logos .logo img {
	max-height: 50px;
	max-width: 150px;
	vertical-align: middle;
}

.newindicator {
	padding: 10px;
	border-radius: 20px;
	background: #102552;
	color: #FFF;
	font-size: 12px;
	font-weight: 200;
	position: fixed;
	z-index: 20000;
	top: 55px;
	margin-left: calc(50% - 55px);
	cursor: pointer;
	box-shadow: 1px 2px 7px rgba(0,0,0,.15);
	
	-webkit-transform: scale(0,0);
    -webkit-transform-origin: 50% 50%;
    -moz-transform: scale(0,0);
    -moz-transform-origin: 50% 50%;
    -o-transform: scale(0,0);
    -o-transform-origin: 50% 50%;
    transform: scale(0,0);
    transform-origin: 50% 50%;
    
    -webkit-animation:new-indicator .2s 1;
    -moz-animation:new-indicator .2s 1;
    -o-animation:new-indicator .2s 1;
    animation:new-indicator .2s 1;
    
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}


@-webkit-keyframes new-indicator {
    0%   {
        -webkit-transform: scale(0,0);
        -webkit-transform-origin: 50% 50%;
    }100% {
        -webkit-transform: scale(1,1);
        -webkit-transform-origin: 50% 50%;
    }
}
@-moz-keyframes new-indicator {
    0%   {
        -moz-transform: scale(0,0);
        -moz-transform-origin: 50% 50%;
    }100% {
        -moz-transform: scale(1,1);
        -moz-transform-origin: 50% 50%;
    }
}
@-o-keyframes new-indicator {
    0%   {
        -o-transform: scale(0,0);
        -o-transform-origin: 50% 50%;
    }100% {
        -o-transform: scale(1,1);
        -o-transform-origin: 50% 50%;
    }
}
@keyframes new-indicator {
    0%   {
        transform: scale(0,0);
        transform-origin: 50% 50%;
    }100% {
        transform: scale(1,1);
        transform-origin: 50% 50%;
    }
}



#profile {
	width: 100%;
	height: calc(100% - 50px);
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: #FFF;
}

#profile .header {
	width: 100%;
	position: sticky;
	top: 0;
	background: #FFF;
	z-index: 100;
}

#profile .footer {
	width: 100%;
	position: static;
}


#profile .header .title {
	padding: 20px 20px 20px 20px;	
}

#profile .header .tabs {
	padding: 20px 20px 0px 20px;	
	border-bottom: 1px solid #CCC;
}

#profile .header .tab {
	font-weight: 300;
	color: #666;
	padding: 10px 20px 10px 20px;
	min-width: 120px;
	text-align: center;
	display: inline-block;
	margin-right: 10px;
	border-radius: 4px 4px 0px 0px;
	border: 1px solid #CCC;
	border-bottom: 0px;
	cursor: pointer;
	position: relative;
	margin-bottom: -1px;
}

#profile .header .tab label {
	margin-left: 5px;
	font-weight: 300;
	color: #666;
	display: inline-block;
	cursor: pointer;
}

#profile .header .tab:hover,
#profile .header .tab:hover label,
#profile .header .tab.on,
#profile .header .tab.on label {
	color: #102552;
}


#profile .header .tab.on {
	background: #FFF;
}

#profile .tabs-container {
	width: 100%;
	/* height: 100%; */
}


#profile .tabs-container .tab-content {
	padding: 40px 20px 20px 20px;
	height: 100%;
}

#profile .tabs-container .tab-content.hidden {
	display: none;
}

#profile .cols {
	font-size: 0;	
}

#profile .cols .col {
	width: 50%;
	min-width: 300px;	
	display: inline-block;
	vertical-align: top;
	padding-right: 20px;
	padding-bottom: 20px;
	position: relative;
}

#profile .title {
	font-size: 22px;
	font-weight: 300;
	color: #666;
	padding-bottom: 30px;
}

#profile .cols div.col:last-child {
	padding-right: 0px;
}

form label {
	font-size: 12px;
	font-weight: 300;
	display: block;
	position: relative;
	color: #102552;
	padding-left: 13px;
	margin-bottom: -25px;
}

input[type=text],
input[type=password] {
	color: #666;
	font-size: 16px;
	font-weight: 300;
	width: 100%;
	padding: 20px 10px 10px 10px;
	display: block;
	margin-bottom: 20px;
	outline: none;
	border: 1px solid #CCC;
	border-radius: 4px;
	-webkit-appearance: none;
}

input[type=submit] {
	background: #102552;
	min-width: 80px;
	color: #FFF;
	display: inline-block;
	padding: 10px 20px 10px 20px;
	border-radius: 50px;
	margin-right: 5px;
	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;
	border: 0px;
	-webkit-appearance: none;	
}

input[type=submit]:hover {
	opacity: .8;
}



input.disable,
.disable {
	opacity: .25;
	pointer-events: none;	
}

#profile .location-icon {
	font-size: 20px;
	color: #102552;
	cursor: pointer;
	right: 30px;
	margin-top: -60px;	
	position: absolute;
}

#profile .location-icon:hover {
	transform: scale(1.1,1.11);
}


.modal-account .profile-picture {
	padding: 16px;
}

.profile-picture svg {
	position: absolute;
	width: 60px;
	margin-left: calc(50% - 30px);
	margin-top: calc(50% - 23px);
	font-size: 40px;
	color: #FFF;
}

.profile-picture .slim {
	width: 160px;
	height: 160px;
	display: inline-block;
	vertical-align: middle;
}

.modal-account .profile-picture .slim {
	width: 50px;
	height: 50px;
}

.profile-picture .photo {
	text-align: center;	
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 50px;
	background: #EEE;
	display: inline-block;	
	vertical-align: middle;
	position: relative;
}

.modal-account .profile-picture .photo {
	width: 50px;
	height: 50px;
}

.profile-picture .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;	
}

.profile-picture .label {
	font-size: 40px;
	font-weight: 300;
	color: #102552;
	display: inline-block;
	padding-left: 20px;
	vertical-align: middle;	
}

.modal-account .profile-picture .label {
	font-size: 18px;
	color: #333;
}

#profile .password-checker {
	padding-left: 30px;
	margin-top: -7px;
	margin-bottom: 20px;
	min-height: 53px;	
}

#profile .password-checker .rule {
	font-size: 12px;
	font-weight: 300;
	color: #999;
	display: inline-block;
	width: 190px;
	min-width: inherit;
}

#profile .password-checker .rule.good {
	color: #102552;
}


#profile .password-checker .rule i {
}

#profile .loader {
	color: #102552;
}

#profile .error {
	width: 100%;
	padding: 8px;
	margin-bottom: 5px;
	background: red;
	color: #FFF;
	font-weight: 300;
	font-size: 12px;
	border-radius: 5px 5px 0px 0px
}

#profile p {
	font-size: 16px;
	font-weight: 300;
	color: #102552;
	padding-bottom: 20px;
}


#profile .subtitle {
	font-size: 18px;
	font-weight: 300;
	color: #666;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #EEE;
}

#profile .interests {
	
}

#profile .interests .interest {
	display: inline-block;
	width: 300px;
	height: 30px;
	color: #666;
	vertical-align: top;
	
}

#profile .interests .interest .checkbox {
	display: inline-block;	
	vertical-align: top;
	margin-right: 5px;
	width: 22px;
	height: 22px;
	padding: 2px 3px 3px 3px;
	text-align: center;
	background: #EEE;
	border-radius: 4px;
	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;
	
}

#profile .interests .interest .checkbox i {
	line-height: 20px;
	color: #FFF;
	opacity: 0;
	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;	
}


#profile .interests .interest .checkbox.on {
	background: #102552;
}

#profile .interests .interest .checkbox.on i {
	opacity: 1;
}


#profile .interests .interest input {
	position: relative;
	display: inline-block;
	vertical-align: top;
}

#profile .interests .interest label {
	display: inline-block;
	width: 80%;
	font-weight: 300;
	font-size: 12px;
	cursor: pointer;	
}

#profile .table {
	width: 100%;
	display: table;
	border-top: 1px solid #EEE;
	border-left: 1px solid #EEE;
}

#profile .table::after {
	content: '';
	display: block;
	clear: both;
}

#profile .table-row {
	display: table-row;
}

#profile .table-row.section {

}

#profile .table-row.section .table-cell {
	background: #EEE;
	padding: 10px;
	font-weight: 300;
	color: #666;
}


#profile .table-cell {
	display: table-cell;
	border-bottom: 1px solid #EEE;
	border-right: 1px solid #EEE;
	padding: 10px;
	font-weight: 300;
	color: #666;
	word-break: break-word;
}


#profile .empty {
	border-left: 1px solid #EEE;
	border-bottom: 1px solid #EEE;
	border-right: 1px solid #EEE;
	padding: 10px;
	font-weight: 300;
	color: #666;	
}

#profile .table-header .table-cell {
	background: #F7F7F7;
	color: #999;
	font-size: 12px;
	font-weight: 300;
}

#profile .publisher .action {
	font-size: 12px;
	cursor: pointer;
}

#profile .publisher .action:hover {
	color: #102552;
}

#profile .table-cell .action i {
	font-size: 20px;
	margin-right: 5px;
	vertical-align: middle;
}

#profile .table-cell.action {
	word-break: inherit;
}

#profile .prefs {
	font-size: 14px;
	color: #666;
	font-weight: 300;
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;
}

#profile .prefs::after {
	content: '';
	display: block;
	clear: both;
}

#profile .prefs .switch {
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	right: 0px;
}

#profile .prefs label {
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;	
}

#profile .swiper-wrapper {
	padding-bottom: 30px;
	flex-wrap: wrap;
}

#profile .swiper-pagination {
	bottom: 0;
}

#profile .swiper-pagination-bullet,
#profile .swiper-pagination-bullet-active {
	background: #102552;
}

#profile .swiper-container {
	margin: 20px 0 50px 0;
}

#profile .package small {
	font-size: 12px;
	font-weight: 100;
	padding-top: 30px;
	color: #666;
	display: block;
}

#profile .package  {
	margin: 20px;
	max-width: 350px;
	width: 80%;
	padding-bottom: 40px;
	transition: all ease-in-out .2s;
	text-align: center;
	justify-content: center;
	align-items: center;
}
#profile .package.small  {
	text-align: left;
}
#profile .package.small > div  {
}

#profile .package.small h4  {
	margin: 0;	
}

#profile .package  {
}

#profile .package i + span sup {
	line-height: 10px;
}

#profile .package i.fa-times + span {
	color: #AAA;
}

#profile .profile .cols .col.package {
	margin: 30px 30px 30px 0px;
}

#profile .profile .cols .col.package.selected {
	border: 1px solid #102552;
}

#profile .package ul {
	list-style: none;
	text-align: left;
	margin-bottom: 10px;
	padding-left: 0;
	display: inline-block;
}

#profile .package ul li {
	display: table-row;
	font-size: 18px;
}

#profile .package li i,
#profile .package li span {
	display: table-cell;
	line-height: 18px;
	padding-bottom: 5px;
}

#profile .package li span {
	color: #666;
}

#profile .package li i {
	width: 30px;
	padding-right: 10px;
}

#profile .package li i.fa-times {
	color: #CCC;
}

#profile .package {
	width: 90%;
	max-width: 350px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,.08);
	padding: 20px;
	transition: all ease-in-out .2s;
	cursor: pointer;
	position: relative;
	height: auto;
}

#profile .package {
	cursor: pointer;
	outline: none;
}

#profile .package .card-selector {
	border: 1px solid #102552;
	position: absolute;
	top: 20px;
	left: 20px;
	border-radius: 30px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	padding: 5px;
}

#profile .package .card-selector .selector {
	width: 100%;
	height: 100%;
	background: #FFF;
	border-radius: 30px;
	transition: all ease-in-out .2s;
}

#profile .package.selected .card-selector .selector {
	background: #102552;
}

#profile .package h4 {
	font-size: 20px;
	font-weight: 200;
	color: #102552;
	margin-bottom: 0;
}

#profile .package .price {
	font-size: 50px;
	font-family: 'Poppins';
	font-weight: 20000;
	color: #102552;
	margin: 0;
	padding: 0;
}

#profile .package .price sup {
	font-size: 30px;
	font-family: 'Poppins';	
}

#profile .package ul {
	list-style: none;
	text-align: left;
	margin-bottom: 10px;
	padding-left: 0;
	display: inline-block;
}

#profile .package ul li {
	font-weight: 100;
	padding-left: 10px;
	line-height: 24px;
}

#profile .package .reason {
	font-weight: 200;
	font-family: 'Poppins';
	font-size: 16px;
	text-align: center;
}

#profile .package.selected {
	border: 1px solid #102552;
}
#profile .package.trial {
	border: 1px solid #102552;
}

#profile .package form {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	display: none;
}
.package.selected[data-package="0"] .button {
	opacity: .25;
	pointer-events: none;
}
.package.selected[data-package] .button {
	/* display: none; */
}
.package.selected form {
	display: block;
}

.package .canceled {
	padding: 8px 10px;
	border-radius: 30px;
	background: #e0fb04;
	font-size: 12px;
	display: inline-block;
}

#profile form {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

#profile .package form button {
	margin-top: 20px;
}

#profile .package form button .loader {
	position: static;
	width: auto;
	height: auto;
}

.modal-container form button .loader svg path {
	fill: #FFF;
}

#profile .package form button,
.modal-container form button {
	text-align: center;
	font-family: 'Poppins';
	font-weight: 300;
	background: #102552;
	min-width: 80px;
	color: #FFF;
	display: inline-block;
	padding: 10px 20px 10px 20px;
	border-radius: 50px;
	border: none;
	margin-right: 5px;
	margin-bottom: 5px;
	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;	
}

.modal-container form {
	padding: 40px;
}

.StripeElement {
	box-sizing: border-box;
	height: 40px;
	padding: 10px 12px;
	margin: 20px 0 20px 0;
	border: 1px solid #666;
	border-radius: 4px;
	background-color: white;
	-webkit-transition: box-shadow 150ms ease;
	transition: box-shadow 150ms ease;
}

@media only screen and (min-width: 1600px) {
	
	.message {				
		width: 25%;
		flex: 1 25%;
	}
	#messages.collapse {
		flex: 1;
	}
}


@media only screen and (max-width: 800px) {
	
	#messages.collapse {
		flex: 1;
	}
	
	.message .message-header .message-actions .message-action.menu {
		width: 30px;
		height: 30px;
		font-size: 14px;
		line-height: 24px;
		margin-top: 0;
		padding: 3px 5px 5px 5px;
	}
	
	.message .message-header .message-actions .message-action.close	{
		font-size: 22px;
		line-height: 14px;
		margin-left: 4px;
		margin-top: 0;
		vertical-align: middle;
	}
			
	#messages,
	.message,
	.messages-container {
		width: 100%;
	}
	
	.container,#messages {
		height: 100%;
	}
	
	.messages-container {
		display: inherit;		
		padding-right: 0px;
		-webkit-transition: inherit;
		-moz-transition: inherit;
		-o-transition: inherit;
		transition: inherit;
		overflow: hidden;
	}
	
	.message {
		padding: 20px 20px 0px 20px;
		-webkit-transition: inherit;
		-moz-transition: inherit;
		-o-transition: inherit;
		transition: inherit;
		max-width: none;
		
	}
	.container .message.fullscreen.filtered {
		height: calc(100%);
		margin-top: 0;
	}
	
	.message.fullscreen .message-actions .message-action:not(.menu,.close) {
		display: none;
	}	
	
	.message.fullscreen .menuwin.last {
		left: -205px;	
	}
	
	.message .handler {
		display: block;
	}
	
	.message .message-container {
		-webkit-transition: inherit;
		-moz-transition: inherit;
		-o-transition: inherit;
		transition: inherit;
	}
	
	.message.fullscreen .message-container .iframe-container {
		pointer-events: auto;
		overflow: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;				
	}	
	.message .message-container .iframe-container {
		overflow: hidden;
		pointer-events: none;
		height: calc(100% - 120px);
		flex: inherit;
	}
	
	.message.fullscreen {
		width: 100%;
		height: calc(100% - 50px);
		position: fixed;
		padding: 0px;
		top: 50px;
		left: 0px;
	}
	
	.modal-notification .notification .notification-action {
		opacity: 1;
	}
	
	#header .logo {
		width: 36px;
		overflow: hidden;
	}
	
	#search {
		/* padding-left: 0; */
	}
	
	
	#header .user, #header .notifications, #header .filter {
		width: 30px;
		vertical-align: middle;
		
	}
	
	.modal-notification .notifications-list {
		width: 0;
		height: 0;
	}
	
	#header .search {
		width: 35px;
		white-space: nowrap;
		overflow: hidden;
		background: none;
		/* padding-left: 0px; */
		text-align: left;
		vertical-align: middle;
	}
	
	#header .search i.fa-search {
		color: #FFF;
		margin-bottom: 2px;
		font-size: 16px;
		cursor: pointer;
	}
	
	#header .search.expanded {
		background: #102552;
		/* width: calc(100% - 75px); */
/*
		padding-left: 3px;
		width: 200px;
*/
		padding-left: 20px;
		width: 100%;
		max-width: none;
		position: fixed;
		left: 0;
		top: 8px;
		z-index: 1;
		
/*
		position: absolute;
		z-index: 2;
		left: 0;
		top: 0;
		height: 50px;
		padding: 8px 16px 8px 10px;
		max-width: none;
		margin-left: 0;
		z-index: 20000;
*/
	}
	
	#header .search i {
		line-height: 16px;	
	}
	
	#header .search input {
		display: none;
		font-size: 16px;
	}
	
	#header .search input.show {
		display: inline;
	}
	
	#header .actions {
		text-align: right;
	}
	
	#header .logo.colapse {
		width: 40px;
	}
	
	.retro {
		width: 100%;
	}
	
	#sidebar {
		width: 250px;
		padding-bottom: 0;
		position: fixed;
		margin-left: 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;
		box-shadow: 1px 2px 5px rgba(0,0,0,.25);		
	}
	
	#sidebar.open {
		margin-left: -250px;
	}

	#sidebar .section-container .sender .sender-actions {
		position: relative;
	}
	
	#sidebar .menuwin {
		background: white;
		box-shadow:0px 2px 4px rgba(0,0,0,.25);
		position: absolute;
		z-index: 100000000;
		left: auto;
		right: -8px;
		top: 25px !important;
		width: 250px;
		
	}
	
	#sidebar .folder .header .menuwin {
		top: auto !important;
		right: 8px;
	}	
	
	
	#sidebar .menuwin::before {
		content: '';
		position: absolute;
		transform: rotate(45deg);
		width: 14px;
		height: 14px;
		top: -6px;
		left: 90%;
		background: #FFF;
		box-shadow: -1px -1px 1px rgba(0, 0, 0, .10);
	}
	
	.footer {
		width: 250px;
		position: relative;
	}
	
	.container {
		position: static;
/* 		height: auto; */
	}
	
	.wrapper {
		position: fixed;
		z-index: 20000;
		background: none;
		cursor: auto;
		width: auto;
		height: auto;
		-webkit-transition: background .2s ease-in-out;
		-moz-transition: background .2s ease-in-out;
		-o-transition: background .2s ease-in-out;
		transition: background .2s ease-in-out;				
	}
	
	.wrapper.open {
		background: rgba(0,0,0,.5);
		cursor: pointer;
		width: 100%;
		height: 100%;
		z-index: 25000;
	}
	
	.message.clone.fullscreen {
		top: 0;
		left: 0px !important;
		width: 100% !important;
		z-index: 20000;
		height: calc(100%);
		border-radius: 0;
		animation-name: fullscreenAnim;
		animation-duration: .5s;
		animation-fill-mode: forwards;
	}
	
	@keyframes fullscreenAnim {
	  from {top:100%}
	  to {top:0%}
	}
	
	
	.message.fullscreen .message-header .message-description .message-sender,
	.message.fullscreen .message-header .message-description .message-sender strong,
	.message.fullscreen .message-header .message-subject {
		font-size: inherit;
	}
		
	.message.fullscreen .message-header .message-subject {
		height: auto;
		font-size: 22px;
		
	}
	
	#messages .infinit {
		margin-left: calc(50% - 25px);
	}	
	
	#filters {
		width: 100%;
		z-index: 5000;
		left: 0px;
	}
	
	#filters.expand {
		/* left: 250px; */	
	}

	#profile .interests .interest {
		width: 160px;
		height: 45px;
	}
	
	#profile .cols .col {
		width: 100%;
		padding-right: 0px;
	}
	
	#profile .header .tab {
		min-width: 50px;
	}
		
	#profile .header .tab label {
		display: none;
	}
	
	#sidebar .search input {
		font-size: 16px;
		padding-top: 8px;
		padding-bottom: 8px;
	}
	
	#sidebar .section-container.publishers .country select {
		font-size: 16px;
	}
}