/*
 * Base structure
 */

body {
  background: #F2F6F7;
  padding-top: 60px;
  font-family: "Inter", "proxima-nova", sans-serif;
  overflow-x: hidden;
  font-size: 18px;
}

/*
 * Global
 */

.underline {
  text-decoration: underline;
}

.flex {
  flex: 1;
  display: flex !important
}

.flex input {
  flex: 1 !important
}

.table .thead-dark th {
  color: #fff;
  background-color: #337AB7;
  border-color: #32383e;
}

.btn-signed {
  display: inline-block;
  box-sizing: border-box;
  margin-left: 3px;
  border-radius: 2px;
  padding: 3px 6px;
  background-color: #4fc47f;
  color: #fff!important;
  font-weight: 700;
  font-size: .75em;
}

.btn-unsigned {
  display: inline-block;
  box-sizing: border-box;
  margin-left: 3px;
  border-radius: 2px;
  padding: 3px 6px;
  background-color: #CD4B5B;
  color: #fff!important;
  font-weight: 700;
  font-size: .75em;
}

/* chat bubbles */
/* CSS talk bubble */
.talk-bubble {
  margin-top: 20px;
	margin-bottom: 20px;
  display: inline-block;
  position: relative;
	width: auto;
	height: auto;
  background-color: lightyellow;
  border:1px solid DAEDF6;
}
.border{
  border: 8px solid #666;
}
.round{
  border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;

}

/* Right triangle placed top left flush. */
.tri-right.border.left-top:before {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: -40px;
	right: auto;
  top: -8px;
	bottom: auto;
	border: 32px solid;
	border-color: #666 transparent transparent transparent;
}
.tri-right.left-top:after{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: -20px;
	right: auto;
  top: 0px;
	bottom: auto;
	border: 22px solid;
	border-color: lightyellow transparent transparent transparent;
}

/* Right triangle, left side slightly down */
.tri-right.border.left-in:before {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: -40px;
	right: auto;
  top: 30px;
	bottom: auto;
	border: 20px solid;
	border-color: #666 #666 transparent transparent;
}
.tri-right.left-in:after{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: -20px;
	right: auto;
  top: 38px;
	bottom: auto;
	border: 12px solid;
	border-color: lightyellow lightyellow transparent transparent;
}

/*Right triangle, placed bottom left side slightly in*/
.tri-right.border.btm-left:before {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: -8px;
  right: auto;
  top: auto;
	bottom: -40px;
	border: 32px solid;
	border-color: transparent transparent transparent #666;
}
.tri-right.btm-left:after{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: 0px;
  right: auto;
  top: auto;
	bottom: -20px;
	border: 22px solid;
	border-color: transparent transparent transparent lightyellow;
}

/*Right triangle, placed bottom left side slightly in*/
.tri-right.border.btm-left-in:before {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: 30px;
  right: auto;
  top: auto;
	bottom: -40px;
	border: 20px solid;
	border-color: #666 transparent transparent #666;
}
.tri-right.btm-left-in:after{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: 38px;
  right: auto;
  top: auto;
	bottom: -20px;
	border: 12px solid;
	border-color: lightyellow transparent transparent lightyellow;
}

/*Right triangle, placed bottom right side slightly in*/
.tri-right.border.btm-right-in:before {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: auto;
	right: 30px;
	bottom: -40px;
	border: 20px solid;
	border-color: #666 #666 transparent transparent;
}
.tri-right.btm-right-in:after{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: auto;
	right: 38px;
	bottom: -20px;
	border: 12px solid;
	border-color: lightyellow lightyellow transparent transparent;
}
/*
	left: -8px;
  right: auto;
  top: auto;
	bottom: -40px;
	border: 32px solid;
	border-color: transparent transparent transparent #666;
	left: 0px;
  right: auto;
  top: auto;
	bottom: -20px;
	border: 22px solid;
	border-color: transparent transparent transparent lightyellow;

/*Right triangle, placed bottom right side slightly in*/
.tri-right.border.btm-right:before {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: auto;
	right: -8px;
	bottom: -40px;
	border: 20px solid;
	border-color: #666 #666 transparent transparent;
}
.tri-right.btm-right:after{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: auto;
  right: 0px;
  top: auto;
	bottom: -20px;
	border: 22px solid;
	border-color :#d9edf7 #d9edf7 transparent transparent;
}

/* Right triangle, right side slightly down*/
.tri-right.border.right-in:before {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: auto;
	right: -40px;
  top: 30px;
	bottom: auto;
	border: 20px solid;
	border-color: #666 transparent transparent #666;
}
.tri-right.right-in:after{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: auto;
	right: -20px;
  top: 38px;
	bottom: auto;
	border: 12px solid;
	border-color: lightyellow transparent transparent lightyellow;
}

/* Right triangle placed top right flush. */
.tri-right.border.right-top:before {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: auto;
	right: -40px;
  top: -8px;
	bottom: auto;
	border: 32px solid;
	border-color: #666 transparent transparent transparent;
}
.tri-right.right-top:after{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
  left: auto;
	right: -20px;
  top: 0px;
	bottom: auto;
	border: 20px solid;
	border-color: lightyellow transparent transparent transparent;
}

/* talk bubble contents */
.talktext{
  padding-left: 3em;
  padding-right: 3em;
  padding-bottom: 1.5em;  
  padding-top: 1.5em;
	text-align: left;
  line-height: 1.5em;
}
.talktext p{
  /* remove webkit p margins */
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
}

/* changelog */
 #HW_badge_cont {
  display: inline-block !important;
  width: 16px !important;
  margin-top: -20px;
}
#HW_frame_cont.HW_visible {
  margin-top: 40px !important;
}

#changelog {
  cursor: pointer;
}
.sub-header {
  padding-bottom: 8px;
}

/* status indicators */
.status {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0px;
  margin-left: 10px;
  margin-right: 10px;
  display: none;
}
.status.online, .status.online:before {
  background: #6EBC48;
}
.status.offline, .status.offline:before {
  background: #EA3539;
}
.status.idle, .status.idle:before {
  background: #F5AC00;
}

/* /status indicators */

#spam_hide_show, #spam_reasons_div, #refresh_score_button{
  display: none;
}

.grey {
  color: #777;
}
.highlight {
    background-color: #fff2ac;
    background-image: linear-gradient(to right, #ffe359 0%, #fff2ac 100%);
}

.highlight-blue {
    background-color: #acdeff;
    background-image: linear-gradient(to right, #9fd6fa 0%, #acdeff 100%);
}

.btn-success {
  background-color: #69B643;
  border-color: #5FA03F;
}
.btn-warning, 
.btn-warning:active, 
.btn-warning.active {
  background-color: #E3C251;
  border-color: #C7AB4A;
}

.btn-warning:hover,
.btn-warning.active:hover{
  background-color: #DEB93B;
  border-color: #B5993A;
}

.btn:active, 
.btn.active {
  box-shadow: none;
}

.btn-primary {
  border-radius: 100px;
  padding: 8px 25px;
  background: #4DB1E9;
  font-size: 13px;
  border-color: #4DB1E9;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #48A1D4;
  border-color: #48A1D4;
}

.btn-default {
  background: none;
}

.btn-default {
  height: 30px;
  border: 1px solid #D0D0D0;
  border-radius: 100px;
  color: #777777;
  font-size: 13px;
}
.btn-default:hover {
  background: none;
  border-color: #ccc;
  color: #444;
}

.btn-success {
  height: 30px;
  border-radius: 100px;
  font-size: 13px;
}

.bluetext {
	color: #337ab7 !important;
}

.form-control {
  box-shadow: none;
}
.form-control:hover,
.form-control:focus {
  box-shadow: none;
  border-color: #4DB1E9;
}

.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
  background: none;
}

.toggle-group {
  margin-right: 5px;
}

.toggle-group .btn-default {
  border-top: 0;
}
.toggle-group .btn-default:hover {
  background: none;
}

.toggle.ios, .toggle-on.ios, .toggle-off.ios { border-radius: 20px; }
.toggle.ios .toggle-handle { 
  background: #fff;
  border-radius: 20px; 
}

/*
 * Sign In
 */

.signin {
  padding-top: 40px;
}
.signin p {
  color: #777;
  text-align: center;
  margin-bottom: 20px;
}
.signin .card {
  padding: 40px;
  margin-bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.signin input {
  margin-bottom: 12px;
}
.signin .btn {
  height: 40px;
}
.signin img {
  display: block;
  margin: 0 auto 30px;
}
.signin a {
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
  color: #777777;
  text-align: center;
}

.signin-footer {
  background: #F8FAFC;
  padding: 15px 25px 15px;
  border-top: 1px solid #E4E6E9;
  box-shadow: 0 1px 4px 0 #E3EAED;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.signin-blog {
  margin-top: 30px;
}
.signin-blog h5 {
  text-align: center;
}
.signin-blog a {
  font-size: 14px;
  text-decoration: underline;
}

/*
 * Top navigation
 */
.navbar-fixed-top {
  border: 0;
}

.navbar-inverse {
  padding: 4px 0;
  min-height: 60px;
  background: #4DB1E9;
}
.navbar-inverse .navbar-nav > li > a {
  color: #DCEFFA;
}

.navbar-brand {
  margin-top: -5px;
  padding: 15px 22px;
}
.navbar-right {
	margin-right: -7px;
}
.navbar-form .form-control {
  width: 300px;
  border: 1px solid rgba(255,255,255,0.40);
  color: #DCEFFA;
  border-radius: 100px;
  background: none;
  box-shadow: none;
  padding-left: 40px;
}
.navbar-form {
  position: relative;
}
.navbar-form:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 30px;
  content: '';
  width: 15px;
  height: 15px;
  background: url(../img/search.svg);
  background-size: 15px 15px;
}
.navbar-form .form-control:focus {
  border-color: #DCEFFA;
}
.navbar-form .form-control::-webkit-input-placeholder {
  color: #DCEFFA;
  font-weight: 300;
}
.navbar-form .form-control::-moz-placeholder {
  color: #DCEFFA;
  font-weight: 300;
}
.navbar-form .form-control:-ms-input-placeholder {
  color: #DCEFFA;
  font-weight: 300;
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus {
  background: none;
}

.dropdown-menu {
  box-shadow: 0 3px 5px 0 #E3EAED;
  border-color: #E4E6E9;
}

.dropdown-menu-right {
  right: 0;
  text-align: right;
}

.dropdown-menu .divider {
  background-color: #E4E6E9;
}

ul.dropdown-menu.filter {
	float: right;
	right: 0;
	margin: 15px 0 0;
	left: auto;
}

li.dropdown  {
	list-style: none;
}
.nav-pills {
  border-bottom: 2px solid #E4E6E9;
}
.nav-pills > li > a {
  margin-bottom: -2px;
  padding: 10px 25px;
  color: #777;
}
.nav-pills > li > a:hover,
.nav-pills > li > a:focus {
  background: none;
  color: #444;
}

.nav-pills > li.active > a, 
.nav-pills > li.active > a:hover, 
.nav-pills > li.active > a:focus {
  background: none;
  border-bottom: 2px solid #4DB1E9;
  color: #444;
  border-radius: 0;
}

/*
 * Sidebar
 */

/* Hide for mobile, show later */
.sidebar {
  position: fixed;
  top: 51px;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: block;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  background-color: #F9FAFD;
  border-right: solid 1px #e2e4e8;
  min-width: 285px;
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
}

/* Sidebar navigation */
.nav-sidebar {
  margin-right: -21px; /* 20px padding + 1px border */
  margin-bottom: 20px;
  margin-left: -20px;
}
.nav-sidebar > li > a {
  padding: 12px 20px 12px 25px;
  color: #777;
}
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
  color: #444;
  background-color: #FFFFFF;
  box-shadow: inset 4px 0 0 0 #4DB1E9;
}
.nav-sidebar > li > a:hover,
.nav-sidebar > li > a:focus {
  text-decoration: none;
  background-color: #FFFFFF;
}

.nav li.active {
  text-decoration: none;
  background-color: #FFFFFF;
}

.nav-sidebar-icon {
  margin-right: 12px;
  margin-top: -1px;
}

/* Sidebar navigation templates */
.nav-templates {
  margin-right: -21px; /* 20px padding + 1px border */
  margin-left: -20px;
}
.nav-templates > li > a {
  margin: 0 0 0 45px;
  padding-left: 33px;
  color: #444;
  font-size: 16px;
}
.nav-templates > .active > a,
.nav-templates > .active > a:hover,
.nav-templates > .active > a:focus {
  color: #444;
  background-color: #FFFFFF;
}
.nav-templates > li > a:hover,
.nav-templates > li > a:focus {
  text-decoration: none;
  background-color: #FFFFFF;
}

.template-status {
  display: inline-block;
  margin-right: 15px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
}
.nav-templates .green {
  background: #6EBC48;
}
.nav-templates .yellow {
  background: #F5AC00;
}
.nav-templates .red {
  background: #EA3539;
}

/*
 * Settings
 */

.settings {
  min-height: 400px;
  padding: 25px;
  color: #777777;
}

.settings-title {
  position: relative;
  top: 2px;
  display: inline-block;
  margin: 0 0 10px 5px;
  font-size: 20px;
  font-weight: 700;
  color: #444444;
}

.nav-settings {
  margin-top: 82px;
  margin-left: -39px;
}
.nav-settings  > li > a {
  padding: 12px 20px 12px 25px;
  color: #777;
}
.nav-settings  > .active > a,
.nav-settings  > .active > a:hover,
.nav-settings  > .active > a:focus {
  color: #4DB1E9;
  background-color: #F8FAFC;
}
.nav-settings  > li > a:hover,
.nav-settings  > li > a:focus {
  text-decoration: none;
  background-color: #F8FAFC;
}

.settings-header {
  background: #F8FAFC;
  padding: 6px 0 0;
}

.nav-settings h5 {
    color: #232323;
    letter-spacing: 0;
    font-weight: bold;
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#pre_dunning_bar {
	min-height: 250px;
	resize: vertical;
	font-family: "source-code-pro", Monaco, Consolas, "Lucida Console", monospace;
	color: #000;
	font-size: 11px;
	padding: 10px;
	border-radius: 4px;
}

/*
 * Main content
 */

.main {
  padding: 25px;
}
.main .page-header {
  margin-top: 0;
  font-size: 26px;
  color: #444444;
  border: 0;
}

.main .page-header-inline {
  margin-top: 0;
  font-size: 26px;
  color: #444444;
  border: 0;
  display: inline-block;
  float: left;
  max-width: 900px;
}

.main .page-sub-header {
  float: left;
  font-size: 16px;
  color: #777777;

}

/*
 * Cards
 */

.card {
  margin-bottom: 15px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 0 5px 0 #E3EAED;
}
.no-padding {
  padding: 0;
}

.card-title {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #444444;
}

.metric {
  text-align: center;
}
.first  {
  width: 49%;
  margin-right: 1%;
}
.second {
  width: 49%;
  margin-left: 1%;
}
.first-3  {
  width: 32%;
}
.second-3 {
  width: 32%;
  margin-right: 1.5%;
  margin-left: 1.5%;
}
.third-3 {
  width: 33%;
}

.metric .green {
  color: #6EBC48;
}
.metric .yellow {
  color: #F5AC00;
}
.metric .red {
  color: #EA3539;
}
.metric .blue {
  color: #00B3EF;
}

.metric-value {
  font-size: 28px;
  font-weight: 500;
}

.metric-label {
  font-size: 13px;
  text-transform: uppercase;
  color: #777777;
  font-weight: 300;
}

.group-title {
  width: 100%;
  display: inline-block;
  height: 12px;
  margin-bottom: 25px;
  border-bottom: 1px solid #E4E6E9;
  overflow: visible;
  text-align: center;
}
.group-title-label {
  padding: 0 10px;
  background: #F2F4F8;
  font-size: 12px;
  text-transform: uppercase;
  color: #777;
}

.title-action {
  display: inline-block;
  font-size: 14px;
  color: #777777;
  float:right;
}
.title-action:after {
  display: inline-block;
  margin-left: 6px;
  position: relative;
  top: 4px;
  content: '';
  width: 16px;
  height: 16px;
  background: url(../img/arrow.svg);
  background-size: 16px 16px;
}
.title-action-history {
  display: inline-block;
  font-size: 14px;
  color: #777777;
  float:right;
}

.action-dropdown:after  {
 transform: rotate(90deg);
}

/*
 * Pagination
 */

.pagination {
  float: right;
  margin: 0 0 20px;
 }
.pagination > li > a, 
.pagination > li > span {
  background: none;
  color: #777;
}

/*
 * Tables
 */

.table-header {
  background: #F8FAFC;
  padding: 12px 25px 20px;
  border-bottom: 1px solid #E4E6E9;
}
.table-header .title-action {
  margin-top: 10px;
}
.table-header .card-title {
  margin: 10px 0 0 ;
}

.table-footer {
  background: #F8FAFC;
  padding: 15px 25px 15px;
  border-top: 1px solid #E4E6E9;
}
.table-footer .btn {
  background: none;
}

.table-search {
  position: relative;
  display: inline-block;
}
.table-search .form-control {
  width: 300px;
  border: 0;
  border-bottom: 1px solid #E2E2E2;
  font-size: 13px;
  color: #777;
  border-radius: 0;
  background: none;
  box-shadow: none;
  padding-left: 25px;
}
.table-search:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  content: '';
  width: 15px;
  height: 15px;
  background: url(../img/tablesearch.svg);
  background-size: 15px 15px;
}

.table-buttons {
  /* float: right; */
  margin-top: 7px;
}
.table-buttons .btn {
  margin-left: 5px;
  font-size: 12px;
  color: #777777;
  background: none;
}
.table-buttons .btn:after {
  display: inline-block;
  margin-left: 6px;
  position: relative;
  top: 0;
  content: '';
  width: 3.5px;
  height: 7px;
  background: url(../img/tablearrow.svg);
  background-size: 3.5px 7px;
}

.table {
  margin: 0;
}
.table tbody > tr > td {
  border-top: 1px solid #F1F1F1;
}

.table-striped tbody > tr > td {
  line-height: 30px;
  padding: 8px 25px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #F8FAFC;
}

.table > thead > tr > th {
  border: 0;
  padding: 15px 25px;
}
.table th {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #777777;
}

.customer-table-status {
  width: 168px;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 8px 8px 0 !important;
}

.customer-table-card-amount {
  width: 68px;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 8px 8px 0 !important;
}

.card-label-amount {
  background: #FFFEF9;
  border-color: #EAAE22;
  color: #CF9713;
  border: 1px solid;
  border-radius: 3px;
  width: 80px;
  height: 30px;
  padding: 2px;
  font-weight: 500;
}

.customer-status-description {
  font-size: 16px;
  color: #777777;
  line-height: 1.25 !important;
}

.customer-table-action {
  width: 20px;
  padding: 12px 0 !important;
}

.status-label-amount {
  border: 1px solid;
  border-radius: 3px 0 0 3px;
  width: 80px;
  height: 30px;
  padding: 2px;
  float:left;
  font-weight: 500;
}

.status-label-description {
  color: #fff;
  font-size: 10px;
  width: 80px;
  height: 30px;
  border-radius: 0 3px 3px 0;
  padding: 8px 0;
  float: right;
}
.status-red > .status-label-description {
  background: #D74642;
}
.status-red > .status-label-amount {
  background: #FFF7F7;
  border-color: #D74642;
  color: #D74642;
}
.status-green > .status-label-description {
  background: #69B643;
}
.status-green > .status-label-amount {
  background: #F8FFF5;
  border-color: #69B643;
  color: #69B643;
}

.status-yellow > .status-label-description {
  background: #EE9A3F;
}
.status-yellow > .status-label-amount {
  background: #FFFDEA;
  border-color: #EE9A3F;
  color: #EE9A3F;
}


.customer-table-email,
.customer-table-expires {
  line-height: 1.2;
}

.customer-table-date,
.customer-table-plan {
  font-size: 16px;
  color: #777777;
  line-height: 1.2;
}

.no-table-data {
  text-align: center;
  font-size: 13px;
  color: #777777;
  padding: 20px 0 8px !important;
}

.customer-action,
.customer-card {
  width: 75px;
}

.card-type {
  width: 50px;
  height: 30px;
}
.visa {
  background: url(../img/visa.svg);
  background-size: 50px 30px;
}
.americanexpress {
  background: url(../img/americanexpress.svg);
  background-size: 50px 30px;
}
.cirrus {
  background: url(../img/cirrus.svg);
  background-size: 50px 30px;
}
.discover {
  background: url(../img/discover.svg);
  background-size: 50px 30px;
}
.diners {
  background: url(../img/diners.svg);
  background-size: 50px 30px;
}
.jcb {
  background: url(../img/jcb.svg);
  background-size: 50px 30px;
}
.maestro {
  background: url(../img/maestro.svg);
  background-size: 50px 30px;
}
.mastercard {
  background: url(../img/mastercard.svg);
  background-size: 50px 30px;
}
.unionpay {
  background: url(../img/unionpay.svg);
  background-size: 50px 30px;
}

.email-template-header {
    float: left;
	width: 100%;
}
.customer-header {
  float: left;
}

.customer-name {
  font-size: 26px;
  line-height: 1;
  color: #444444;
  font-weight: 500;
}
.customer-stripe-id {
  font-size: 18px;
  color: #777777;
  font-weight: 500;
}

.customer-plan {
  margin-bottom: 15px;
  font-size: 16px;
  color: #777777;
  padding-top: 10px;
}

.customer-status-label {
  width: 130px;
  height: 30px;
  border-radius: 3px;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
}

.customer-large {
  float: right;
  font-size: 11px;
  height: 35px;
  line-height: 35px;
  width: 140px;
}

.customer-green {
  background: #69B643;
}
.customer-yellow {
  background: #EAAE22;
}
.customer-red {
  background: #D74642;
}

.relative-time {
  color: #777;
}

.customer-status {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

.text-green {
  color: #6EBC48;
}
.text-yellow {
  color: #F5AC00;
}
.text-red {
  color: #EA3539;
}
.text-blue  {
  color: #00B3EF;
}

/*
 * Templates
 */

.templates-timeline {
 position: relative;
}
.templates-timeline::before {
  content: '';
  position: absolute;
  top: 120px;
  left: 50%;
  height: 100%;
  width: 2px;
  background: #E5E7E9;
}

.template-title {
  background-color: #F2F4F8;
  border: 1px solid #E4E6E9;
  padding: 4px 25px 12px;
  text-align: center;
}
.template-title h4 {
  font-size: 16px;
  margin-bottom: 5px;
}
.template-title p {
  margin: 0;
  color: #777;
}

.template-header {
  background: #F8FAFC;
  padding: 12px 25px 20px;
  border-bottom: 1px solid #E4E6E9;
}
.template-header .title-action {
  margin-top: 10px;
}
.template-header .card-title {
  margin: 10px 0 0 ;
}

.template-sub-header {
  background: #F9FBF9;
  padding: 12px 25px 20px;
  border-bottom: 1px solid #E4E6E9; 
}

.template-sub-header2 {
  background: #eeeeee7a;
  padding: 12px 25px 3px;
  border-bottom: 1px solid #E4E6E9; 
  border-top: 1px solid #E4E6E9; 
  min-height: 55px;
}


.template-buttons {
  float: right;
  margin-top: 7px;
}
.template-buttons .btn-default {
  margin-left: 5px;
  font-size: 12px;
  color: #777777;
  background: #fff;
}
.template-buttons .toggle.ios {
  margin-left: 7px;
}

.template-body {
  padding: 20px 25px;
}

.template-body-content {
  float: left;
}

.template-body-conditions {
  float: right;
  text-align: right;
  color: #777;
}
.template-body-conditions .highlight {
  color: #444;
  font-weight: 500;
}

.template-action .btn {
  background: #F2F4F8;
  display: block;
  margin: 5px auto 35px;
}

.template-condition {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #E3E8E1;
}




.template-dropdown-label {
  color: #999;
  padding: 10px;
  width:100%;
}

.template-editor {
  padding: 15px 25px;
}
.template-editor .form-inline .form-group {
  display: block;
}
.template-editor textarea {
  height: auto;
  min-height: 400px;
  border: 0;
  padding: 20px;
  resize: none;
  height: 100%;
}
.template-editor .nav-pills {
  margin-bottom: 10px;
  border: 0;
}
.template-editor .nav-pills > li {
  float: right;
}

.nav-pills > li > a {
  padding: 8px 15px;
  font-size: 13px;
  border-bottom: 2px solid #E4E6E9;
  border-radius: 0;
}

.template-email-preview {
  background: #FDFDFD;
  height: auto;
  padding: 20px;
  word-wrap: break-word;
}

.template-html_email-preview {
  background: #FDFDFD;
  height: auto;
  word-wrap: break-word;
}

.template-send-email {
  padding: 15px 25px;
  background: #F8FAFC;
  box-shadow: 0 -1px 0 0 #E4E6E9, 0 1px 0 0 #E4E6E9;
}

.template-save {
  padding: 25px;
}
.template-save .btn {
  display: block;
  margin: 0 auto;
}

/*
 * Split.js
 */

.splitter {
  height: 700px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.split {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;

  overflow-y: auto;
  overflow-x: hidden;
}

.gutter {
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: 50%;
}

.gutter.gutter-horizontal {
  background-image: url('../img/vertical.png');
  cursor: ew-resize;
}

.split.split-horizontal, .gutter.gutter-horizontal {
  height: 100%;
  float: left;
}

/*
 * Chart
 */

.ct-perfect-fourth:before {
  padding-bottom: 350px;
}
/* Use this selector to override the line style on a given series */
.ct-series-a .ct-bar, .ct-series-a .ct-line, .ct-series-a .ct-point, .ct-series-a .ct-slice-donut {
  stroke: #D74642;
}
.ct-series-b .ct-bar, .ct-series-b .ct-line, .ct-series-b .ct-point, .ct-series-b .ct-slice-donut {
  stroke: #69B643;
}

/*
 * Timeline
 */

.timeline {
  display: inline-block;
  margin-top: 25px;
  border-left: 2px solid #E5E7E9;
}

.timeline-item {
  width: 100%;
  display: inline-block;
  padding-left: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}

.timeline-item:after {
  display: inline-block;
  position: relative;
  top: 11px;
  right: 14px;
  content: '';
  width: 16px;
  height: 16px;
  background: url(../img/arrow.svg);
  background-size: 16px 16px;
}
.timeline-item-more {
  display: inline-block;
  padding-left: 10px;
  margin-bottom: 15px;
}

.timeline-status {
  position: relative;
  left: -32px;
  top: 1px;
  float: left;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background: #F1F4F8;
  border: 2px solid #6EBC48;
}

.timeline-status-description {
  float:left;
  margin-left: -14px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.timeline-date {
  float:right;
  font-size: 12px;
  color: #999999;
  font-weight: 300;
  text-transform: uppercase;
}

.timeline-description {
  width: 97%;
  float: left;
  margin: 4px 0;
  margin-right: 3%;
}

.timeline-action {
  float: left;
  font-size: 13px;
  font-weight: 500;
  color: #444;
}

.green .timeline-status-description {
  color: #6EBC48;
}
.green .timeline-status {
  border-color: #6EBC48;
}
.yellow .timeline-status-description {
  color: #D9571A;
}
.yellow .timeline-status {
  border-color: #D9571A;
}
.red .timeline-status-description {
  color: #EA3539;
}
.red .timeline-status {
  border-color: #EA3539;
}
.blue .timeline-status-description {
  color: #00B3EF;
}
.blue .timeline-status {
  border-color: #00B3EF;
}

.timeline-item-more .timeline-status {
  top: 33px;
  border-color: #E5E7E9;
  background: #E5E7E9;
}
.timeline-item-more .btn {
  background: none;
  margin-left: -14px;
}
/* chartist */
/* Use this selector to override the line style on a given series */
.ct-series-a .ct-line {
  /* Set the colour of this series line */
  stroke: #d9534f;
  /* Control the thickness of your lines */
  stroke-width: 5px;	
}
.ct-series-a .ct-area {
    fill: #d70206;
}
.ct-series-a .ct-point {
  /* clear points */
	stroke: rgba(0, 0, 0, 0);  

}
.ct-series-b .ct-point {
  /* clear points */
	stroke: rgba(0, 0, 0, 0);
}
.ct-area {
    stroke: none;
    fill-opacity: .1;
}
.ct-vertical::before { 
    content: "$";
}
/* Use this selector to override the line style on a given series */
.ct-series-b .ct-line {
  /* Set the colour of this series line */
  stroke: #4FAC4D;
  /* Control the thickness of your lines */
  stroke-width: 5px;
}

.ct-series-b .ct-area {
    fill: #4DAE4A;
}
.ct-grid {
	stroke-dasharray: 0px;
	stroke: rgba(0, 0, 0, .1);
}
.ct-label {
	font-size: 14px;
}
.ct-horizontal {
	margin-left: -6px;
}
.ct-vertical {
	margin-top: -10px;
	height: 20px;
}
.chartist-tooltip {
  position: absolute;
  display: inline-block;
  opacity: 0;
  min-width: 5em;
  padding: .2em .5em;
  background: rgb(71, 71, 71);
  color: rgb(250, 250, 250);
  font-weight: bold;
  text-align: center;
  pointer-events: none;
  z-index: 1;
  border-radius: 5px;
  font-size: 20px;
  font-family: Helvetica, Arial, sans-serif;
}

.chartist-tooltip:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top-color: rgb(71, 71, 71); 
}

.chartist-tooltip.tooltip-show {
  opacity: 1;
}

.my-cool-point {
  fill-opacity: 1!important;
  stroke-width: 0px;
}


.my-cool-point:hover {
  r: 7;
  stroke-opacity: 0.2;
  stroke-width: 10px;
}

.chartist-tooltip-meta{
  opacity: 0.6;
  font-size: 14px;
  font-weight: normal!important;
  display: inline-block;
  padding-bottom: 5px;
}
@media only screen and (max-width:1000px) {
	.ct-labels {
		display: none;
	}
}

.bottom-padding {
	padding-bottom: 10px;
}

.settings-card {
	min-height:1200px;
}
/*----- Accordion -----*/
.accordion, .accordion * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
}
 
.accordion {
    overflow:hidden;
    border-radius:3px;
    background:#f7f7f7;
}
 
/*----- Section Titles -----*/
.accordion-section-title {
    width:100%;
    padding:15px;
    display:inline-block;
    border: 2px solid #BCBEC5;
    background:#F1F6F7;
}
 


/*----- Section Content -----*/
.accordion-section-content {
	background: #F8FAFC;
}

.accordion-inner-content {
    padding:15px;
}

[data-control]:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}
[data-accordion].open > [data-control]:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.email-template {
	height: 100%;
	width: 100%;
}
#html_preview {
	width: 100%;
	height: 100%;
}
#html_preview_iframe {
	overflow-y: hidden;
}

/* modal */

.modal-open .dropdown-menu {
    z-index: 2050;
}

.modal-open .dropdown.open {
    *z-index: 2050;
}

.modal-open .popover {
    z-index: 2060;
}

.modal-open .tooltip {
    z-index: 2070;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop, .modal-backdrop.fade.in {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1050;
    overflow: auto;
    width: 700px;
    height: 540px;
    margin: -330px 0 0 -350px;
    background-color: #ffffff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.3);
    *border: 1px solid #999;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
}

.modal.fade {
    -webkit-transition: opacity .3s linear, top .3s ease-out;
    -moz-transition: opacity .3s linear, top .3s ease-out;
    -ms-transition: opacity .3s linear, top .3s ease-out;
    -o-transition: opacity .3s linear, top .3s ease-out;
    transition: opacity .3s linear, top .3s ease-out;
    top: -25%;
}

.modal.fade.in {
    top: 50%;
}

.modal-header {
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
}

.modal-header .close {
    margin-top: 2px;
}

.modal-body {
    overflow-y: hidden;
    max-height: 400px;
    padding: 15px;
}

.modal-form {
    margin-bottom: 0;
}

.modal-footer {
    padding: 14px 15px 15px;
    margin-bottom: 0;
    text-align: right;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
    -webkit-box-shadow: inset 0 1px 0 #ffffff;
    -moz-box-shadow: inset 0 1px 0 #ffffff;
    box-shadow: inset 0 1px 0 #ffffff;
    *zoom: 1;
}

.modal-footer:before, .modal-footer:after {
    display: table;
    content: "";
}

.modal-footer:after {
    clear: both;
}

.modal-footer .btn+.btn {
    margin-left: 5px;
    margin-bottom: 0;
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px;
}

#introDraftModal {
  font-size: 16px;
}
/* modal */

.rightfloat {
	float:right;
}
.leftfloat {
	float:left;
}

.events-header-bold{
	font-weight: 700;
}

.events-header{
	font-weight: 500;
}


/* preloader */
/* Variables */
/* Mixins */
/* Animations */
@-webkit-keyframes preloader-inside-white {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes preloader-inside-white {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes preloader-inside-red {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  30% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes preloader-inside-red {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  30% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
/* Styles */
.preloader {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.preloader .preloader-container {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: auto;
  position: absolute;
  top: 44%;
  left: 0;
  position: relative;
}
.preloader .preloader-container .animated-preloader {
  display: inline-block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  background: #3FA0E3;
  border-radius: 50em;
}
.preloader .preloader-container .animated-preloader:after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50em;
  background: white;
  -webkit-animation: preloader-inside-white 1s ease-in-out infinite;
  -ms-animation: preloader-inside-white 1s ease-in-out infinite;
  animation: preloader-inside-white 1s ease-in-out infinite;
}
.preloader .preloader-container .animated-preloader:before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  border-radius: 50em;
  background: #3FA0E3;
  -webkit-animation: preloader-inside-red 1s ease-in-out infinite;
  -ms-animation: preloader-inside-red 1s ease-in-out infinite;
  animation: preloader-inside-red 1s ease-in-out infinite;
}
.graytext {
	color: #777777;
}

.setup-icon {
	width: 100px;
	clear: none;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
}
.centered {
	text-align: center;
}
.nopadding {
	padding: 0px;
}
.clear {
    clear: both;
}
.table-responsive {
	overflow-x: visible;
}


/* #### Generated By: http://www.cufonfonts.com #### */

@font-face {
font-family: 'Avenir LT Std 55 Roman';
font-style: normal;
font-weight: normal;
src: local('Avenir LT Std 55 Roman'), url('/fonts/avenir-lt-std/AvenirLTStd-Roman.woff') format('woff');
}
.StripeElement {
    background-color: white;
    height: 40px;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

#error_explanation {
  border: 1px solid red;
  background-color: rgba(255, 0, 0, 0.2);
  padding: 10px;
  margin-bottom: 10px;
}
