/* Minification failed. Returning unminified contents.
(1743,3): run-time error CSS1030: Expected identifier, found ' '
(1743,3): run-time error CSS1019: Unexpected token, found ' '
 */
/***
Spectrum Colorpicker v1.8.0
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/

.sp-container {
    position:absolute;
    top:0;
    left:0;
    display:inline-block;
    *display: inline;
    *zoom: 1;
    /* https://github.com/bgrins/spectrum/issues/40 */
    z-index: 9999994;
    overflow: hidden;
}
.sp-container.sp-flat {
    position: relative;
}

/* Fix for * { box-sizing: border-box; } */
.sp-container,
.sp-container * {
    -webkit-box-sizing: content-box;
       -moz-box-sizing: content-box;
            box-sizing: content-box;
}

/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
.sp-top {
  position:relative;
  width: 100%;
  display:inline-block;
}
.sp-top-inner {
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
}
.sp-color {
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:20%;
}
.sp-hue {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:84%;
    height: 100%;
}

.sp-clear-enabled .sp-hue {
    top:33px;
    height: 77.5%;
}

.sp-fill {
    padding-top: 80%;
}
.sp-sat, .sp-val {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.sp-alpha-enabled .sp-top {
    margin-bottom: 18px;
}
.sp-alpha-enabled .sp-alpha {
    display: block;
}
.sp-alpha-handle {
    position:absolute;
    top:-4px;
    bottom: -4px;
    width: 6px;
    left: 50%;
    cursor: pointer;
    border: 1px solid black;
    background: white;
    opacity: .8;
}
.sp-alpha {
    display: none;
    position: absolute;
    bottom: -14px;
    right: 0;
    left: 0;
    height: 8px;
}
.sp-alpha-inner {
    border: solid 1px #333;
}

.sp-clear {
    display: none;
}

.sp-clear.sp-clear-display {
    background-position: center;
}

.sp-clear-enabled .sp-clear {
    display: block;
    position:absolute;
    top:0px;
    right:0;
    bottom:0;
    left:84%;
    height: 28px;
}

/* Don't allow text selection */
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button  {
    -webkit-user-select:none;
    -moz-user-select: -moz-none;
    -o-user-select:none;
    user-select: none;
}

.sp-container.sp-input-disabled .sp-input-container {
    display: none;
}
.sp-container.sp-buttons-disabled .sp-button-container {
    display: none;
}
.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
    display: none;
}
.sp-palette-only .sp-picker-container {
    display: none;
}
.sp-palette-disabled .sp-palette-container {
    display: none;
}

.sp-initial-disabled .sp-initial {
    display: none;
}


/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */
.sp-sat {
    background-image: -webkit-gradient(linear,  0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
    filter : progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
}
.sp-val {
    background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
    filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
}

.sp-hue {
    background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
    background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
.sp-1 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
}
.sp-2 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
}
.sp-3 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
}
.sp-4 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
}
.sp-5 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
}
.sp-6 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
}

.sp-hidden {
    display: none !important;
}

/* Clearfix hack */
.sp-cf:before, .sp-cf:after { content: ""; display: table; }
.sp-cf:after { clear: both; }
.sp-cf { *zoom: 1; }

/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-device-width: 480px) {
    .sp-color { right: 40%; }
    .sp-hue { left: 63%; }
    .sp-fill { padding-top: 60%; }
}
.sp-dragger {
   border-radius: 5px;
   height: 5px;
   width: 5px;
   border: 1px solid #fff;
   background: #000;
   cursor: pointer;
   position:absolute;
   top:0;
   left: 0;
}
.sp-slider {
    position: absolute;
    top:0;
    cursor:pointer;
    height: 3px;
    left: -1px;
    right: -1px;
    border: 1px solid #000;
    background: white;
    opacity: .8;
}

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/

.sp-container {
    border-radius: 0;
    background-color: #ECECEC;
    border: solid 1px #f0c49B;
    padding: 0;
}
.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
    font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.sp-top {
    margin-bottom: 3px;
}
.sp-color, .sp-hue, .sp-clear {
    border: solid 1px #666;
}

/* Input */
.sp-input-container {
    float:right;
    width: 100px;
    margin-bottom: 4px;
}
.sp-initial-disabled  .sp-input-container {
    width: 100%;
}
.sp-input {
   font-size: 12px !important;
   border: 1px inset;
   padding: 4px 5px;
   margin: 0;
   width: 100%;
   background:transparent;
   border-radius: 3px;
   color: #222;
}
.sp-input:focus  {
    border: 1px solid orange;
}
.sp-input.sp-validation-error {
    border: 1px solid red;
    background: #fdd;
}
.sp-picker-container , .sp-palette-container {
    float:left;
    position: relative;
    padding: 10px;
    padding-bottom: 300px;
    margin-bottom: -290px;
}
.sp-picker-container {
    width: 172px;
    border-left: solid 1px #fff;
}

/* Palettes */
.sp-palette-container {
    border-right: solid 1px #ccc;
}

.sp-palette-only .sp-palette-container {
    border: 0;
}

.sp-palette .sp-thumb-el {
    display: block;
    position:relative;
    float:left;
    width: 24px;
    height: 15px;
    margin: 3px;
    cursor: pointer;
    border:solid 2px transparent;
}
.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
    border-color: orange;
}
.sp-thumb-el {
    position:relative;
}

/* Initial */
.sp-initial {
    float: left;
    border: solid 1px #333;
}
.sp-initial span {
    width: 30px;
    height: 25px;
    border:none;
    display:block;
    float:left;
    margin:0;
}

.sp-initial .sp-clear-display {
    background-position: center;
}

/* Buttons */
.sp-palette-button-container,
.sp-button-container {
    float: right;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer {
    margin:0;
    overflow:hidden;
    cursor:pointer;
    padding: 4px;
    display:inline-block;
    *zoom: 1;
    *display: inline;
    border: solid 1px #91765d;
    background: #eee;
    color: #333;
    vertical-align: middle;
}
.sp-replacer:hover, .sp-replacer.sp-active {
    border-color: #F0C49B;
    color: #111;
}
.sp-replacer.sp-disabled {
    cursor:default;
    border-color: silver;
    color: silver;
}
.sp-dd {
    padding: 2px 0;
    height: 16px;
    line-height: 16px;
    float:left;
    font-size:10px;
}
.sp-preview {
    position:relative;
    width:25px;
    height: 20px;
    border: solid 1px #222;
    margin-right: 5px;
    float:left;
    z-index: 0;
}

.sp-palette {
    *width: 220px;
    max-width: 220px;
}
.sp-palette .sp-thumb-el {
    width:16px;
    height: 16px;
    margin:2px 1px;
    border: solid 1px #d0d0d0;
}

.sp-container {
    padding-bottom:0;
}


/* Buttons: http://hellohappy.org/css3-buttons/ */
.sp-container button {
  background-color: #eeeeee;
  background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}
.sp-container button:hover {
    background-color: #dddddd;
    background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
    border: 1px solid #bbb;
    border-bottom: 1px solid #999;
    cursor: pointer;
    text-shadow: 0 1px 0 #ddd;
}
.sp-container button:active {
    border: 1px solid #aaa;
    border-bottom: 1px solid #888;
    -webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -moz-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}
.sp-cancel {
    font-size: 11px;
    color: #d93f3f !important;
    margin:0;
    padding:2px;
    margin-right: 5px;
    vertical-align: middle;
    text-decoration:none;

}
.sp-cancel:hover {
    color: #d93f3f !important;
    text-decoration: underline;
}


.sp-palette span:hover, .sp-palette span.sp-thumb-active {
    border-color: #000;
}

.sp-preview, .sp-alpha, .sp-thumb-el {
    position:relative;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}
.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
    display:block;
    position:absolute;
    top:0;left:0;bottom:0;right:0;
}

.sp-palette .sp-thumb-inner {
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}

.sp-clear-display {
    background-repeat:no-repeat;
    background-position: center;
    background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}

/* Support Portal custom styling */
/* Override IB3 styles + bootstrap default */

body {
	background-color: #fff !important;
	color: #2A6496 !important;
	
}
a{
	text-decoration:none !important;
	cursor:pointer !important;
}
.scrollable h2 {
	margin: 0 0 10px 1.5%;
	font-size: 2em;
}
p {
	color: #A8A8A8;
	font-family: Roboto;
}
p, label {
}

a {
	text-decoration: underline;
	}
	.btn, .btn a {
	text-decoration: none !important;
	}
	.btn.btn-primary a, .btn.btn-danger a {
	text-decoration: none !important;
	color: #ffffff !important;
	}

	.btn{
		font-family:Roboto;
	}

.btn-default {
	border-color: #e5e5e5;
	margin-right: 10px;
}

.form-group input {
	border: 1px solid #e5e5e5;
}

.background-setup table tr th,
.background-setup table tr td {
	font-family: 'Roboto';
}

.app-body-setup .btn-lg.pull-right {

	font-size:16px;

}

.margin-bottom-0
{
margin-bottom:0 !important;
}

.padding-left-0 {
	padding-left: 0;
}
/* body */
.app {
	background: #eff7ff;
}

.app-body {
	background: #eff7ff;
}

.scrollable-content.section {
	background: #eff7ff;	
}
/*.scrollable-setup-section2 .col-md-12 {
	max-width: 90%;
	margin: auto;
	float: none;
}*/

.panel-heading {
	font-weight: bold;
	background-color: none !important;
	border-color: none !important;
}

.panel {
	margin-bottom: 1em !important;	
}
.margin-left-right-zero
{
	margin-left:0;
	margin-right:0;
}
.photo-library-footer {
	background: none;
	border: none;
	box-shadow: none;
}

#accent-preview-container .col-md-2
{
	padding-top:3px;
}

.opt-in-section .alert-default.flex-vertical-center {
	margin-left: 20px;
	margin-right: 20px;
}
.scrollable-setup-section2 .panel-title {

	font-family:Roboto;

}
.width33
{
	width:33% !important;
}
.background-setup .gallery-item {
	width: 200px !important;
	height: 200px !important;
	
}
.voucher-table tr td input {
	width: 200px !important;
}

.section {
	background: #eff7ff;
	background: none;
}
.scrollable-setup-section .panel-body table thead {
	background: #50CAF2;
	color:#fff;
}

td.link-outer a {
	color: #2A6496 !important ;
	text-decoration:underline !important;
}

.scrollable-setup-section .panel-body table thead th {
	padding: 15px;
	border-bottom: none;
	font-weight: normal;
	font-family: roboto medium;
}

.scrollable-setup-section .panel-body table tr td {
	border-bottom: 1px solid #E5E5E5 !important;
	vertical-align: middle;
	color: #000;
	padding: 15px;
	color: #000;
	font-family: roboto regular;
}

.scrollable-setup-section .panel-body table tr td a{
 
	color: #000;
}

.section-new-gallery
{
	float:left;
	width:100%;
}

	.section-new-gallery .inner-tabs {
		margin-top: 40px;
	}

	.scrollable-setup-section .panel-body table.site-section tr td a:after {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		display: inline-block;
		background: url(/Content/images/icons/edit.svg);
		margin-left: 5px;
	}
.scrollable-setup-section2 input,
.scrollable-setup-section2 select,
.scrollable-setup-section2 .input-group input
{
	border: 1px solid #e5e5e5;
}

.button-edit {
	padding: 0;
	text-align: left;
}
.scrollable-setup-section .panel {
	box-shadow: none;
}
/* header bar */
.navbar-brand {
	width: 33.33%;
	float: left;
	text-align: center;
}
	.logotype {
		height: auto;
		max-height: 40px !important;
		width: auto;
		margin: 2px auto 0 auto;
		max-width:100%;
		}
	.navbar-brand-subtitle {
	width: 33.33%;
	float: left;	
	padding-top: 12px;
	text-align: center;
	font-size: 15px;
	height: 50px;
	border-left: 1px solid #dddddd;	
	}
	.navbar-brand-logout {
	width: 33.33%;
	float: left;	
	}

.alert-new i,
.alert-logo-new i,
.alert-icon i

{
	color: #8A8888;
}

#client-notes-row-emails p
{
	padding-top:10px;
}

.client-notes-row-requests p
{
padding-top:10px !important;
}

.background-img-outer .detail {
	display: inline-block;
	width: 50%;
	word-break: break-all;
}


@media all and (max-width:1250px) {

	.scrollable-content.section .gallery-item {
		width: 15% !important;
	}
}


@media all and (max-width:1024px) {

	.scrollable-content.section .gallery-item {
		width: 22% !important;
	}
}

.background-img-outer .btn
{
	text-align:right !important;
	display:inline-block !important;
	float:right;
}
.background-img-outer .gallery-item {
	width: 280px !important;
	height: 200px !important;
	padding: 0 !important;
	margin-bottom: 30px !important;
}

.scrollable-content.section .background-img-outer .gallery-item {
	width: 200px !important;
}



/* main nav */
.setup-section {
	padding-left: 30px;
	padding-right: 30px;
}


.setup-section .btn-default {
	background: none !important;
}
.setup-section {
	background: #fff !important;
	box-shadow:none;
}

	.app-body-setup {
		background: #fff !important;
		padding-bottom:0 !important;
	}
.message-panel .panel-body p {
	min-height: 50px;
}

.panel-setup-heading h3 {
	font-size: 20px;
	font-family: Roboto medium;
}

.panel-setup-body {
	padding-left: 20px;
	padding-right:20px;
	padding-top:10px !important;
}
.scrollable-setup-section2 .panel-heading,
.scrollable-setup-section2 h3 {
	background: none !important;
	border: none !important;
	font-size: 18px;
	font-family: 'Roboto medium';
	font-weight: normal;
	padding-top: 15px;
	color: #000;
}

.scrollable-setup-section2 .panel-body {
	background: #f9f9f9;
	border-radius: 5px;
	margin-left: 15px;
	margin-right: 15px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 20px;
	border: 1px solid #eeeeee;
}
	.scrollable-setup-section2 .panel-body img
	{
		max-width:100% !important;
	}


	.scrollable-setup-section2 .panel-body .form-group {
		width: 33% !important;
		display: inline-block;
		vertical-align: top;
		padding-top: 0;
		padding-bottom: 0;
		padding-bottom: 10px;
	}


		.scrollable-setup-section2 .panel-body .form-group.booking-width {
			width: 70% !important;
		}
.same-height-panel {
	padding-left: 20px !important;
	padding-right: 20px !important;
}

.scrollable-setup-section2 .form-horizontal .control-label {
	text-align: left;
	color: #80818B;
	padding-top: 0;
	padding-bottom: 0;
	font-weight: 500;
}
.scrollable-setup-section2 hr {
	margin-top: 0px;
	margin-bottom: 20px;
}

.scrollable-setup-section2 .form-group p,
.scrollable-setup-section2 .panel-body p.help-text,
.form-group .help-text,
.help-text p {
	font-size: 12px !important;
	color: #A8A8A8;
	font-family: Roboto;
}

.padding-bottom0
{
	padding-bottom:0 !important;
}

.scrollable-setup-section2 .flex-vertical-center.alert-default {

	border:1px solid #e5e5e5;
}
	
.scrollable-setup-section2 .form-group p i,
.scrollable-setup-section2 .panel-body p i {
	color: #8A8888;
}
.social-links .flex-vertical-center.alert-default {
	margin-left: 15px;
	margin-right: 15px;
}
.social-links table
{
	width:98%;
}
#choose-custom-colours .intro-text p {
	padding-top: 10px !important ;
}


.height-panel p {
	font-size: 14px;
}
.setup-section h2 {
	padding: 20px 0 0px 0;
	margin-bottom: 0;
	float: left;
	margin-left: 0;
}

.app-body-setup .scrollable-content.section.scrollable-setup-section3 {
	width: 81%;
	margin: auto;
	background: #f9f9f9 !important;
	margin-top: 30px;
	border-radius: 5px;
	padding-left: 25px;
	height:210px;
}

	.scrollable-setup-section3 .form-horizontal .control-label {
		text-align: left;
		color: #80818B;
		padding-top: 0;
		padding-bottom: 0;
		font-weight: 500;
	}

.background-setup.scrollable-setup-section2 .form-horizontal {
	background: #F9F9F9;
	padding-bottom: 10px;
}
.no-border-imp
{
border:none !important;
}

.background-setup.scrollable-setup-section2 .form-horizontal .control-label {
	width: 100%;
}
.background-setup.scrollable-setup-section2 .form-group {
	padding: 20px 20px;
}

.scrollable-setup-section2 .panel-body-full .form-group {
	width: 100% !important;
}
.form-group-half-margin {
	margin-right: 60px !important;
	width: 45% !important;
}
.scrollable-setup-section2 .panel-body .form-group-half-margin {
	margin-right: 100px !important;
	width: 40% !important;
}
.gallery-item, .gallery-thumbnail-container {
	padding-bottom: 10px;
}
.gallery-item img , .gallery-thumbnail-container img {
	max-width:100%;
}
.logout-outer .btn.btn-default {
	border: none !important;
}
.scrollable-setup-section .panel-setup-heading {
	background: none;
	border: none;
	padding-bottom: 0;
	padding-left: 20px;
	padding-right: 20px;
}

.scrollable-setup-section2 .panel-body .checkbox label {
	padding-left: 0 !important;
	text-align: left;
	color: #80818B;
	padding-top: 0;
	padding-bottom: 0;
	font-weight: 500;
}
.scrollable-setup-section2 .panel-body .checkbox {
	padding-bottom: 20px;
	padding-top: 0;
}

	.scrollable-setup-section2 .panel-body .checkbox select {
		margin-top: 5px;
	
	}
	
	.padding-top10 {
		padding-top: 10px;
	}

.services-outer .checkbox select,
.same-height-panel .checkbox select,
.voucher-section .checkbox select {
	width: 130px;
}

.time-slot-section label
{
width:100%;
}

.same-height-panel
{
	min-height:180px;
}

.inner-tabs {
	margin: auto;
	text-align: center;
	width: 85%;
	margin-top: 160px;
	padding-left: 0px;
	padding-right: 0px;
	border-bottom: 3px solid #39C5F3;
}
ul.inner-tabs li:first-child a{
	margin-left: 0 !important;
}

ul.inner-tabs li:last-child a {
	margin-right: 0 !important;
}

.admin-user .form-group {
	padding-bottom: 0 !important;
}


ul.inner-tabs li {
	float: left;
	width: 20%;
}
	ul.inner-tabs li a {
		border: none !important;
		text-decoration: none !important;
		padding: 30px;
		background-color: #e0e0e0 !important;
		font-size: 16px;
		color: #000000 !important;
		font-family: Roboto;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		padding-top: 35px;
		line-height: 18px;
		margin-right: 10px !important;
		margin-left: 10px !important;
	}
	ul.inner-tabs li a:hover {
		border: none !important;
		text-decoration: none !important;
	}

	ul.inner-tabs li.active a {
		background-color: #39C5F3 !important;
		color:#fff !important;
	}


	.scrollable-setup-section2 .half-width {
		width: 49%;
		display: inline-block;
	}
.alert-new {
	width: 30%;
	text-align: center;
	margin: auto;
	color: #A8A8A8;
	font-family:Roboto ;
}

.alert-logo-new {
	background: none;
	border: none;
	text-align: center;
	margin: auto;
	padding-top: 0;
	padding-bottom: 0;

}
.margin-bottom-15
{
	margin-bottom:15px;
}

.width50 {
	width: 50%;
	float: left;
}
.alert-new-width65 {
	width: 65% !important;
}

.height-panel
{
min-height:260px !important;
}

.position-relative
{
	position:relative;
}
.gallery-item.circle-gallery-icon {
	text-align: center;
	background: #39C5F3 !important;
	width: 20% !important;
	margin: auto !important;
	height: 210px;
	position: relative;
	border-radius: 5px;
	margin-top: 20px !important;
	display: block;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top:10px;
}

.gallery-item .action-links {
	padding-top: 10px;
}


.add-photo-info {
	width: 80%;
	margin: auto;
	margin-top: 25px;
}
.scrollable-content.section .gallery-item {
	width: 13%;
	padding: 20px;
	display: inline-block;
	margin: 10px;
	vertical-align:top;
	
}
.margin-selling {
	margin-left: 30px;
	margin-right: 40px;
	padding-bottom: 5px;
	padding-top: 12px;
}

	.margin-selling .alert-text {
		padding-top: 5px;
	}


	
	.alert-msg {
		color: #A8A8A8;
		font-family: Roboto;
	}


.gallery-img-padding {
	padding-top: 225px;
}


.tabs-small li a {
	border: none !important;
	text-decoration: none !important;
	padding: 26px 15px;
	background-color: #e0e0e0 !important;
	font-size: 16px;
	color: #000000 !important;
	font-family: Roboto;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	padding-top: 30px;
	line-height: 18px;
	margin-right: 10px !important;
	margin-left: 10px !important;
	margin-left: 0 !important;
}
.tabs-small li.active a {
	background-color: #39C5F3 !important;
	color: #fff !important;
}
#choose-custom-colours #palette-custom-container .palette-container-wide {
	padding-left: 13px;
}
#accent-preview-container {
	background: #f9f9f9;
}

	#accent-preview-container h4
	{
		color:#000;
	}

	.gallery-item.circle-gallery-icon .fa-plus-circle {
		color: #fff !important;
	}
.margin-center {
	margin: auto;
	float: none;
}
.colors-setting {
	margin: auto;
	float: none;
}
#accent-preview-container h4
{
	padding-top:10px;
}

.link-center {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
	.link-center .action-links {
		color: #fff;
		font-family: Roboto medium;
		font-size: 16px;
		text-transform: uppercase;
		padding-top:10px;
	}


	.action-links, .action-links:hover, .gallery-item.new-item a {
		text-decoration: none !important;
	}

.scrollable-setup-section2 table {
	margin-left: 15px;
	margin-right: 15px;
}

.services-outer p {
	min-height: 45px;
}



.scrollable-setup-section2 .half-width .panel-body {
	padding-bottom: 10px;
	padding-top: 20px;
}
.social-setup-section table
{
margin-left:15px;
margin-right:15px;
}
.social-setup-section {
	overflow-x: hidden;
}

	.social-setup-section table thead,
	.team-photos-section table th {
		background: #50CAF2;
		color: #fff;
		font-family: Roboto medium;
		font-weight: 500;
		padding: 15px !important;
		border-bottom: none !important;
	}
	.social-setup-section table thead th {
		font-family: Roboto medium;
		font-weight: 500;
		padding: 15px;
		border-bottom:none !important;
	}

	.social-setup-section table tbody td {
		vertical-align: middle !important;
	}
	.social-setup-section table tbody td {
		border-top: 1px solid #E5E5E5 !important;

	}

.admin-user-section .table thead th,
.admin-user-section .table td {
	border-right: none !important;
	border-left: none !important;
}
.admin-user-section table
{
	margin:0;
	border:none;
}
.admin-user-section p {
	padding: 20px 15px 10px 10px;
	display:inline-block;
	font-family: roboto regular;
}

.create-new-user {
	font-size: 13px;
	background: #50CAF2;
	border: none;
}

.admin-user-section .table td,
.team-photos-section table tbody td {
	padding: 10px 15px;
	color: #000;
	font-family: roboto regular;
}
	.admin-user-section .table td span.btn-default {
		float: left;
		margin-right: 15px;
	}

	.admin-user-section .table td span.btn-danger {
		float: left !important;
	}


	.admin-user-section {
		padding: 0 !important;
	}
.social-setup-section table tbody td label {
	color: #000;
	font-family: Roboto;
	font-weight: normal;
	padding-left: 33px;
	padding-bottom: 0;
	margin-bottom: 0;
	vertical-align: middle;
}

		.social-setup-section table tbody td .input-group-addon-editable,
		.social-setup-section table tbody td .input-group-addon,
		.social-setup-section table tbody td .needsclick {
			border: none !important;
		}

		.social-setup-section table tbody td {
			background: #f9f9f9;
		}

.create-user-section .form-horizontal .form-group {
	width: 60%;
	display: inline-block;
	padding-left: 30px;
	padding-top: 0;
}
	.create-user-section .form-horizontal .form-group label {
		text-align: left;
		padding-left: 10px;
		padding-top: 0 !important;
		text-align: left;
		color: #80818B;
		padding-top: 0;
		padding-bottom: 0;
		font-weight: 500;
	}
.create-user-section .form-horizontal {
	background: #f9f9f9 !important;
	margin-right: 25px !important;
	margin-left: 25px !important;
	padding-top: 20px;
	padding-bottom: 20px;
}

.opt-section legend {
	border: none;
	margin-bottom: 10px;
	text-align: left;
	color: #80818B;
	padding-top: 0;
	padding-bottom: 0;
	font-weight: 500;
	margin-bottom: 5px;
	font-size:14px;
}

.opt-section .group-opt-in-section {
	margin-bottom:20px;
}
	.opt-section .group-opt-in-section p {
		margin-bottom: 0;
		font-size: 12px;
		padding-top: 8px;
	}
.radio p {
	padding-top: 10px;
}

.opt-section .alert-default {
	border: 1px solid #e5e5e5;
	margin-left: 20px;
	margin-right: 20px;
	padding-bottom: 5px !important;
	margin-bottom: 5px
}
.opt-section #client-notes-row-requests, .opt-section #client-notes-row-emails {
	width: 49%;
	display:inline-block;
	float:left;
}
.opt-section .panel-body .form-group {
	width: 100% !important;
}
.opt-section .panel-body {
	padding-bottom:0;
}
.panel-setup-body {
}
.scrollable-setup-section .panel-body table tbody tr {
	background-color: #f9f9f9 !important;
}

.app-body-setup .scrollable-content.section {
	background: #fff !important;
}
.photo-outer {
	max-width: 180px;
	max-height: 170px;
}


	.photo-outer img {
		max-width: 100%;
	}


.app-body-setup {
	padding-top: 0px !important;
}

.app-body-setup .navbar-app
{
	position:static !important;

}
.navbar-setup
{
	position:static;

}
.app-body-setup .panel {
	border: none;
	box-shadow: none;
}
 .intro-text p {
color:#000;
padding-top:20px;
}

.setup-section .main-nav-all div {
	display: inline-block
}
	.setup-section .main-nav-all {
		text-align: center;
		
	}
		.setup-section .main-nav-all .btn-default {
			font-family: Roboto medium;
			padding-top: 17px;
			padding-bottom: 13px;
		}
		
		.setup-section .main-nav-all .btn.active {
			border-bottom: 3px solid #50CAF2;
			border-radius: 0;
		}

	.scrollable-header.section .panel-body.text-center {
	}
	
	.main-nav-all {

	}
.main-nav-all a {
	border:none;
}
	
.section-new .btn-default{
	border-color:none;
	background:#fff ;
}

.logo-outer .navbar-brand {
	width: auto;
}

.setup-section, .full-width {
	width: 100%;
	float: left;
}



.setup-section .full-width {
	border-bottom: 1px solid #E9E9E9;
}
.no-border-bottom{
	border-bottom:none !important;
}
.facebook-icon
{
	position:relative;
}


.social-links table tr:first-child td label.facebook-icon:before {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url(/Content/images/icons/facebook.svg) no-repeat center;
	margin-left: -30px;
	margin-top: -2px;
}
.social-links table tr:nth-child(2) td label.facebook-icon:before {
	content: '';
	position: absolute;
	width: 26px;
	height: 26px;
	display: inline-block;
	background: url(/Content/images/icons/twitter.svg) no-repeat center;
	margin-left: -30px;
}
.social-links table tr:nth-child(3) td label.facebook-icon:before {
	content: '';
	position: absolute;
	width: 26px;
	height: 25px;
	display: inline-block;
	background: url(/Content/images/icons/google-plus.svg) no-repeat center;
	margin-left: -30px;
	margin-top: -2px;
}
.social-links table tr:nth-child(4) td label.facebook-icon:before {
	content: '';
	position: absolute;
	width: 26px;
	height: 21px;
	display: inline-block;
	background: url(/Content/images/icons/linkdin.svg) no-repeat center;
	margin-left: -30px;
}
.social-links table tr:nth-child(5) td label.facebook-icon:before {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url(/Content/images/icons/instagram.svg) no-repeat center;
	margin-left: -29px;
	margin-top: -2px;
}
.social-links table tr:nth-child(6) td label.facebook-icon:before {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	display: inline-block;
	background: url(/Content/images/icons/pinterest.svg) no-repeat center;
	margin-left: -32px;
	margin-top: -5px;
}

.background-img-outer .gallery-item {
	width: 200px !important;
	height: 130px !important;
	margin-bottom: 60px !important;
}

	.background-img-outer .gallery-item .gallery-thumbnail-container {
		height:100%;
	}
		.background-img-outer .gallery-item .gallery-thumbnail-container img {
			max-width: 100%;
			max-height: 100%;
		
		}



.logo-outer {
	float: left;
	width: 10%;
	padding-top: 18px;
	padding-bottom: 10px;
}

.logout-outer {
	width: 10%;
	float: right;
	padding-top: 20px;
	padding-bottom: 20px;
}
.width33 label
{
	width:130px
}


.logout-outer .navbar-brand-logout {
	width: auto;
}

		.logout-outer .navbar-brand-logout .btn-default {
			text-align: right !important;
			font-family: Roboto medium;
		}
		
		.setup-section .main-nav-all {
			width: 80%;
			float: left;
		}

.logout-outer .navbar-brand-logout .ib-client {
	padding-right: 4px;
	font-size: 19px;
}
.padding-right5
{
	padding-right:5px;
}

.main-nav-group {
}
	
	.main-nav-sub {

	}
	
		.main-nav-group .btn,
		.main-nav-sub .btn {
	
		}
.main-nav-group a.btn {
}

		/* one item */
.main-nav-sub a:first-child:nth-last-child(1) {
}
		/* two items */
.main-nav-sub a:first-child:nth-last-child(2),
.main-nav-sub a:first-child:nth-last-child(2) ~ a {
}
	
		/* three items */
		.main-nav-sub a:first-child:nth-last-child(3),
		.main-nav-sub a:first-child:nth-last-child(3) ~ a {
				
		}
		/* four items */
		.main-nav-sub a:first-child:nth-last-child(4),
		.main-nav-sub a:first-child:nth-last-child(4) ~ a {
			
		}
		/* five items */
		.main-nav-sub a:first-child:nth-last-child(5),
		.main-nav-sub a:first-child:nth-last-child(5) ~ a {
			
		}
		/* six items */
		.main-nav-sub a:first-child:nth-last-child(6),
		.main-nav-sub a:first-child:nth-last-child(6) ~ a {
			
		}
		/* seven items */
		.main-nav-sub a:first-child:nth-last-child(7),
		.main-nav-sub a:first-child:nth-last-child(7) ~ a {
			
		}
		
		.main-nav-sub a.btn:last-child {
	
		}

/*	.main-nav-group a.btn.btn-default.active,
	.main-nav-sub a.btn.btn-default.active {
		border:1px solid #000;
 

	}*/
./*setup-section .btn-default.active
{
	border-bottom:1px solid #000;
}


.help-text {
	color: #666666;
	padding: 5px 0 0 0 !important;
}

.logo-image-tablet {
	height: 60px;
	width: auto;
	border: 1px #eeeeee solid;
	
	padding: 10px;
	border-radius: 3px; 
	-moz-border-radius: 3px; 
	-webkit-border-radius: 3px;
	background: #ffffff;
}
.logo-image-mobile {
	height: 60px !important;
	width: 60px !important;	
	border: 1px #eeeeee solid;
	
	padding: 10px;
	border-radius: 3px; 
	-moz-border-radius: 3px; 
	-webkit-border-radius: 3px;
	background: #ffffff;
}*/

/* form */
    /*.btn-file {
        position: relative;
        overflow: hidden;
    }
    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
		font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: red;
        cursor: inherit;
        display: block;
		width: 200px;
		height: 50px;
    }*/

/* footer */

/*.scrollable-footer.section.text-right {
    position: fixed!important;
    bottom: 20px !important;
	}
	.calltoaction {
	background: #c6ddf1;
	margin: 0;
	padding: 5px 1% 0 1%;
	width: 100%;
	margin: 0 auto 0 auto;
	-webkit-box-shadow: 0px 0x 10px 0px rgba(50, 50, 50, 0.6);
	-moz-box-shadow:    0px 0px 10px 0px rgba(50, 50, 50, 0.6);
	box-shadow:         0px 0px 10px 0px rgba(50, 50, 50, 0.6);	
	}

.bottomnav {
	background: #c6ddf1 !important;
	border-width: 0; 
	}

.navbar-app {
	min-height: inherit;
    margin-bottom: 0px !important;		
	border-width: 0; 
	}
	
.navbar-bottom .app-body {
    padding-bottom: 25px !important;
	background: #c6ddf1 !important;	
}	
	
.navbar.navbar-app.hidden-xs.navbar-absolute-bottom.section {
	margin: 0;
	padding: 0;
	}
	.navbar.navbar-app.hidden-xs.navbar-absolute-bottom.section .row {
	margin: 0;
	padding: 0;
	}
	.navbar.navbar-app.hidden-xs.navbar-absolute-bottom.section .row .col-xs-12 {
	margin: 0;
	padding: 0;
	text-align: center;
	}
	.navbar.navbar-app.hidden-xs.navbar-absolute-bottom.section .row .col-xs-12 span {
	margin: 0;
	padding: 0;
	}
*/
/* gallery styles */
/*.team-thumbnail{
    width:220px;
    margin-bottom:10px;
	height: auto;
	max-width: 220px;
	}
	.team-thumbnail img {
	width:90%;
	margin: 3% !important;
	height: auto;
	display: block;
	margin: 5px auto 10px auto !important;
	}
	
.gallery-thumbnail{
    height:150px;
}

.team-photo{
	margin: 0 auto 0 auto;
	width: auto;
	height: 100px;
	max-width: 500px;
}
.gallery-thumbnail-container{
    height:160px;
    overflow:hidden;
	text-align: center;
}

.background-image-item {
	width: 100%;
	border: 1px #cccccc solid;
	padding: 10px;
	border-radius: 3px; 
	-moz-border-radius: 3px; 
	-webkit-border-radius: 3px;
	background: #ffffff;
}*/

/*.gallery-item {
    width: 192px;
    height: 240px;
    margin: 0 1% 1% 0;
    float: left;
    position: relative;
    padding-bottom: 1em;
    text-align: center;
    overflow: hidden;
	border: 1px #cccccc solid;
	border-radius: 3px; 
	-moz-border-radius: 3px; 
	-webkit-border-radius: 3px;
	background: #ffffff;
	}*/
	/*.gallery-item  {
	padding: 10px 0 0 0;	
	}
    .gallery-item .action-links {
    position:absolute;
    bottom:0;
    width:100%;
    text-align:center;
    background:white;
	padding: 0 10px 10px 10px;
    }
    .new-item .fa{
	margin-top:15%;
	}

    .form-control.check-box{
	width:auto;
	}

.form-horizontal .control-label {
    line-height: 20px;
    margin: 0;
	}
    
.link-addon{
    width:100%;
	min-width: 215px;
	text-align:right;
    display:inline-block;
	}
	.input-group-addon {
	background: #eff7ff;
	padding-right: 2px !important;		
	}
	.input-group-addon-editable {
	width: 100% !important;
	padding-left: 3px !important;
	}*/





/* stripe styles */
.stripe-connect {
  display: inline-block;
  margin-bottom: 1px;

  background-image: -webkit-linear-gradient(#28A0E5, #015E94);
  background-image: -moz-linear-gradient(#28A0E5, #015E94);
  background-image: -ms-linear-gradient(#28A0E5, #015E94);
  background-image: linear-gradient(#28A0E5, #015E94);

  -webkit-font-smoothing: antialiased;
  border: 0;
  padding: 1px;
  height: 30px;
  text-decoration: none !important;

  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;

  -moz-box-shadow: 0 1px 0 rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);

  cursor: pointer;

  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.stripe-connect span {
  display: block;
  position: relative;
  padding: 0 12px 0 44px;
  height: 30px;

  background: #1275FF;
  background-image: -webkit-linear-gradient(#7DC5EE, #008CDD 85%, #30A2E4);
  background-image: -moz-linear-gradient(#7DC5EE, #008CDD 85%, #30A2E4);
  background-image: -ms-linear-gradient(#7DC5EE, #008CDD 85%, #30A2E4);
  background-image: linear-gradient(#7DC5EE, #008CDD 85%, #30A2E4);

  font-size: 14px;
  line-height: 30px;
  color: white;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);

  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);

  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.stripe-connect span:before {
  content: '';
  display: block;
  position: absolute;
  left: 11px;
  top: 50%;
  width: 23px;
  height: 24px;
  margin-top: -12px;
  background-repeat: no-repeat;
  background-size: 23px 24px;
}

.stripe-connect:active {
  background: #005D93;
}

.stripe-connect:active span {
  color: #EEE;

  background: #008CDD;
  background-image: -webkit-linear-gradient(#008CDD, #008CDD 85%, #239ADF);
  background-image: -moz-linear-gradient(#008CDD, #008CDD 85%, #239ADF);
  background-image: -ms-linear-gradient(#008CDD, #008CDD 85%, #239ADF);
  background-image: linear-gradient(#008CDD, #008CDD 85%, #239ADF);

  -moz-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}


.stripe-connect span:before, .stripe-connect.blue span:before {
  background-image: url("data:image/png;base64,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");
}
.stripe-width
{
	width:225px;
}
.margin-top10
{
	margin-top:5px;
}
/* Retina support */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
	.stripe-connect span:before, .stripe-connect.blue span:before {
        background-image: url("data:image/png;base64,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");
    }
}

/* Website Theme Picker */

/*#theme-picker {
    width: 100%;
}

#theme-preview-container {
    width: 100%;
    height: 450px;
    padding: 20px 0 20px 10%;
    display: inline-block;
    float: left;
    }
    #theme-preview-container row {
    text-align: center !important;
    }

iframe#theme-preview {
    border: 1px solid #000;
    transform: scale(0.5, 0.5);
    transform-origin: left top;
    margin: 30px auto 0 auto;
    padding: 10px;
    border-radius: 8px;
}



.vertical-section {
    clear: both;
    padding-top: 10px;
}

#accent-colour-button-static,
#accent-colour-button-pulsing {
    padding: 10px;
    width: 100%;
}

#accent-colour-button-static {
    margin-bottom: 10px;
}

.accent-colour-container label {
    font-weight: normal;
    margin: 0 10px;
}

#accent-preview-container {
    float: left;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    background: #ffffff;
    }
    #accent-preview-container h4 {
    font-size: 14px;
    margin: 12px 0 0 0;
    font-weight: bold;
    }
    #accent-preview-container button {
    margin: 0 0 0 0;
    }
*/

/* tabbed navigation */
/*.nav-tabs {
    border-bottom: 1px solid #2A6496;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #555555;
    background-color: #eff7ff;
    border: 1px solid #eff7ff;
    border-bottom-color: transparent;
    cursor: default;
    border-radius: 0px !important;
}

.nav-tabs > li > a {
    background-color: #eff7ff;
    border-color: #c6ddf1;
    border-bottom-color: #2A6496;
    position: relative;
    text-decoration: none;
    border-radius: 0 0 0 0;
}

.nav-tabs > li > a:hover {
    background-color: #ffffff;
    border-bottom-color: #2A6496;
    position: relative;
    text-decoration: none;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:visited {
    background: #eff7ff !important;
    border: 1px solid #2A6496 !important;
    border-bottom-color: transparent !important;
}
.nav-tabs > li.active > a:hover {
    background: #ffffff !important;
    border: 1px solid #2A6496;
    border-bottom-color: transparent;
    cursor: pointer;
}

.tab-pane {
    padding: 15px 0 0 0;
}

.tab-pane .row.intro-text {
}
	*/
.palette-container,
.palette-container-wide {
    background-color: #fff;
    border: 1px dotted #999;
    margin: 0 1% 1% 0;
    padding: 5px 1% 5px 1% !important;
    display: inline-table;
    position: relative;
    height: 80px;
    width: 48%;
    }
    
    .palette-container label,
    .palette-container-wide label {
    height: 45px;
    font-weight: normal;
    }
    .palette-container.selected,
    .palette-container-wide.selected {
    background-color: rgba(15, 172, 0, 0.2);
    border: 1px solid #0fac00;
    }
    .palette-container.selected:after,
    .palette-container-wide.selected:after {
    font-family: FontAwesome;
    content: "\f00c";
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 20px;
    }

    .palette-container > div,
    .palette-container-wide > div {
    width: 100%;
    height: 40px;
    float: left;
    display: inline-table;
    margin: 40px 0 0 0;
    }
    .palette-container > div .palette-colour-block,
    .palette-container-wide > div .palette-colour-block {
    border: 1px solid #000;
    display: inline-block;
    height: 30px;
    margin: 0;
    padding: 0;
    width: 22%;
    }
    
    .palette-container p,
    .palette-container-wide p {
    position: absolute;
    top: 5px;
    width: 90%;
    padding: 0 20% 0 20%;
    }

    .palette-container-wide {
    width: 100%;
    }
    .palette-container-wide .row {
    width: 100%;
    float: left;
    display: inline-table;
    margin: 0 0 0 0;
    }
    .palette-container-wide .row > div {
    /* width: 19%; */
    width: 24%;
    float: left;
    display: inline-table;
    margin: 0 1% 0 0 !important;
    padding: 0 1% 10px 1%;
    }
    /*
    .palette-container-wide .row > div:last-child {
    width: 19%;
    padding: 20px 20px 0 20px;
    text-align: left !important;
    }
    */
    .palette-container-wide .row > div span {
    width: 80%;
    height: 50px;
    padding: 20px 10% 0 10%;
    text-align: left !important;
    }


#custom-palette {
    margin-top: 10px;
}

.group-opt-in-section {
    margin-bottom: 20px;
}

.group-opt-in-section legend {
    border-bottom: none;
    margin-bottom: 10px;
}

.group-opt-in-buttons {
    margin-bottom: 10px;
    max-width: 50%;
}
.logo-outer1
{
	float:left;
	width:100%;
	text-align:center;
	margin-top:70px;

}

	.logo-outer1 img {
		max-width: 300px;
		margin-bottom:30px;
	}

	.login-screen-section {
		margin-top: 20px;
	}
.login-screen-section h2 {
	font-weight:bold;
}
.login-screen-section h5 {
	padding-left:25px;
	color:#80818B

}

.remember-me {
	margin-left: 10px;
}
.login-section1
{
	text-align:center;
}
.login-section1 .panel {
	background: #f7f7f7;
}

.login-section1 .login-outer {
	max-width: 340px;
	display: inline-block;
	width: 340px;
}
.login-section1 .panel {
	background: #f7f7f7;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 5px;
}

	.login-section1 .control-label {
		text-align: left;
		float: left;
		padding-top: 0 !important;
		margin-top: -10px !important;
	}

	.login-section1 .btn {
		width: 140px;
		margin: auto;
		float: none;
	}

.login-section1 .text-center

{
	text-align:center;

}

.login-section1 .remember-me {

		float:left;

	}



