.clickable-icon-size { font-size: 26px !important;  margin: -2px; }
.indent { text-indent: 32px; }
.underline { border-bottom: 1px solid #CCC; }
.overline { border-top: 1px solid #CCC; }
.vertical-top { vertical-align: top !important; }

.buttonized-icon { height: 34px; width: 34px; background-color: #D8272D; color: #FFF; font-size: 20px; padding: 7px; cursor: pointer; }
 
 /* FONT */
.jalpred { color: #d8272d; }
.jalp-color-font { color: #d8272d; }
.jalpgrey { color: #2c2c2c; }
.jalpfont { font-family: Montserrat !important; font-weight: bold; }
.approval-color-green { color: #51B45D; }
.rejection-color-red { color: #ea6153; }
.light-grey-font { color: #7C8082; }
.very-light-grey-font { color: #CCC; }
.text-white { color: #FFF; }

/* BORDER */
.jalp-color-border { border-color: #d8272d; }
.border-all-grey { border: 1px solid #CCC; }
.border-top-grey { border-top: 1px solid #CCC; }
.border-right-grey { border-right: 1px solid #CCC; }
.border-bottom-grey { border-bottom: 1px solid #CCC; }
.border-left-grey { border-left: 1px solid #CCC; }
.border-thick-left-grey { border-left: 3px solid #CCC; }
.border-thick-left-faded-accent { border-left: 3px solid var(--accent-color-trans); }

/* USER MENU ICON */
.user-menu-icon {
	font-size: 36px;
    vertical-align: middle;
    margin-right: 10px;
}

/* CORNER ACCENTS */
.corner-accent {
	position: relative;
}
.corner-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-color: transparent;
    border-style: solid;
}
.corner-accent::after {
    border-width: 8px;
    border-left-color: var(--accent-color);
    border-top-color: var(--accent-color);
}

/* BACKGROUND */
.jalp-dark-background { background-color: #4E4E4E; }
.jalp-color-background { background-color: #d8272d; color: #FFF; }
.jalp-color-background a { color: #FFF; }
.selected-bg { background-color: #666 !important; color: #FFF; }
.bg-warning { background-color: #fbbb5b; color: #FFFFFF; }

.css-ghosted {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    -webkit-box-shadow: 0px 0px 8px 0px #999;
    -moz-box-shadow: 0px 0px 8px 0px #999;
    box-shadow: 0px 0px 8px 0px #999;
}

.css-big-box-shadow {
	-moz-box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
    -webkit-box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
    box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
}

.uppercase { text-transform: uppercase !important; }
.small-grey { color: #AAA; font-size: 80%; margin-left: 8px; }

.hide-on-desktop { display: none; }
.show-on-simple { display: none !important; }
.show-table-on-simple { display: none !important; }
.mobile .hide-on-mobile { display: none; }
.mobile .hide-on-desktop { display: inherit; }

.user-menu-name-full { margin-right: 4px; }
@media all and (max-width: 499px) {
	.user-menu-name-full { display: none; }
}
@media all and (max-width: 767px) {
	.user-info > li.profile-info { margin-right: 0px; }
}

.jwplayer { max-width: 720px; margin: 0px auto !important; }

.margin-side-4 { margin-left: 4px; margin-right: 4px; }
.margin-side-8 { margin-left: 8px; margin-right: 8px; }
.margin-top--8 { margin-bottom: -8px !important; }		.margin-top--8 { margin-top: -8px !important; }

.margin-border-nudge-left { margin-left: -1px !important; }
.margin-border-nudge-right { margin-right: -1px !important; }

.padding-4-6 { padding: 4px 6px !important; }

.dashed-border { border: 2px dashed #CCC; }

/**/

/* COUNTERS */
.counter-container {
	counter-reset: section;
}
.counter-container .counter::before {
  counter-increment: section;
  content: counter(section);
}

/* INFO BOXES */
.warning-box-icon, 
.info-box-icon, 
.info-check-box-icon { 
	position: relative;
	overflow: hidden; 
}
.warning-box-icon:before, 
.info-box-icon:before,
.info-check-box-icon:before {
	float: left;
    margin-right: 12px;
    
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 28px;
    
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  	filter: alpha(opacity=50);
  	-moz-opacity: 0.5;
  	-khtml-opacity: 0.5;
  	opacity: 0.5;
}
.warning-box-icon:before { content: "\f071"; }
.info-box-icon:before { content: "\f05a"; }
.info-check-box-icon:before { content: "\f046"; }


.arrow-top { position: relative; }
.arrow-top:before {
	position: absolute;
	top: -7px;
	left: 50%;
	margin-left: -4px;
	content: " ";
	border-style: solid;
	border-width: 0px 4px 8px 4px;
	border-color: transparent transparent #CCC transparent;
}

.vertical-centering-container {
	display: -webkit-box;
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* CLEAN BUTTONS */
.flat-btn {
	display: inline-block;    
	background-color: #4E4E4E;
	cursor: pointer;
    padding: 8px;
    color: #FFF;
    text-align: center;
    border: none;
    
    -webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
  	
  	-webkit-box-shadow: 0px 3px 6px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 3px 6px rgba(0,0,0,0.25);
    box-shadow: 0px 3px 6px rgba(0,0,0,0.25);
    
    -webkit-transition: all 0.25s ease;
    -mox-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.flat-btn.flat-btn-wide {
	width: 100%;
}
.flat-btn:hover, .flat-btn:active, .flat-btn:focus {
	background-color: #4E4E4E;
	color: #FFF;
}
a.flat-btn:hover *, a.flat-btn:active *, a.flat-btn:focus *{
	color: #FFF;
}
.flat-btn > i {
	margin-right: 4px;
	font-size: 20px;
	vertical-align: middle;
}
.flat-btn > span {
	vertical-align: middle;
}

/* CONTEXT MENUS */
.context-menu-container:hover .context-menu {
	display: block;
	z-index: 2;
}
.context-menu {
	display: none;
	position: absolute;
	top: 20px; right: 0px;
	width: 130px;
	-moz-box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
	-webkit-box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
	box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
}
.context-menu-item {
	display: block;
	padding: 4px 8px;
	background-color: #FFFFFF;
	color: #666666;
	cursor: pointer;
}
.context-menu-item:hover {
	background-color: #EEEEEE;
	color: #666666;
}

/* RESPONSIVE TABLES */

@media all and (min-width: 766px) {
	.responsive-table { 
		width: 100%;
		border: 1px solid #CCC;
	    -moz-box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
	    -webkit-box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
	    box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
	    background-color: #FFF;
	}
	.responsive-table thead { background-color: #4E4E4E; color: #FFF; }
	.responsive-table th { padding: 6px 8px; }
	.responsive-table td { padding: 8px; }
}

@media all and (max-width: 767px) {
	.responsive-table { display: block; }
	.responsive-table thead { display: none; }
	.responsive-table tbody, 
	.responsive-table tr, 
	.responsive-table td { 
		display: block; 
		text-align: left !important;
		width: 100% !important; 
	}
	.responsive-table tr { 
		padding: 8px;
		margin-top: 8px;
    	border: 1px solid #CCC;
	    -moz-box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
	    -webkit-box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
	    box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
	    background-color: #FFF;
	}
	.responsive-table td:not(:empty):before { 
		content: attr(data-header)": "; 
		font-weight: bold; 
		margin-right: 8px; 
	}
}

/* PANEL BUTTONS */

.large-grey-close-button { color: #AAA; }
.large-green-save-button { color: #289E28; }
.large-red-save-button { color: #d8272d; }

.large-grey-close-button,
.large-green-save-button, 
.large-red-save-button {
  	display: inline-block;
  	font-size: 20px;
  	padding: 8px;
  	margin-left: 12px;
  	cursor: pointer;
}

.lightbox-close-button,
.large-grey-close-button, 
.large-green-save-button, 
.large-red-save-button { text-align: center; }

.ui-loader { display: none; }

.css-giant-circle, 
.css-giant-circle-grey {
	font-size: 24px !important;
    color: #FFF;
    cursor: pointer;
    padding-top: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    
    -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
    
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.css-giant-circle { background-color: #4E4E4E;  }
.css-giant-circle:hover { background-color: #4E4E4E;  }

.css-giant-circle-grey { background-color: #4E4E4E;  }
.css-giant-circle-grey:hover { background-color: #4E4E4E;  }

a.css-giant-circle:hover, 
a.css-giant-circle:active, 
a.css-giant-circle-grey:hover, 
a.css-giant-circle-grey:active { color: #FFF; }

/* FLEX COLS */
.flex-row { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.flex-col, .flex-col-auto { position: relative; width: 100%; min-height: 1px; }
.flex-col { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; }
.flex-col-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none; }

/* COLLAPSIBLES */

@media all and (max-width: 500px) { .hide-500 { display: none; } }
@media all and (max-width: 640px) { .hide-640 { display: none; } }
@media all and (max-width: 767px) { .hide-767 { display: none; } }
@media all and (max-width: 991px) { .hide-991 { display: none; } }
@media all and (max-width: 1024px) { .hide-1023 { display: none; } }

/* SITE STANDARDS */

.empty-placeholder-container:empty:after { 
	content: attr(data-empty-placeholder);
	font-style: italic;
	text-align: center;
	display: block;
}

.generic-lightbox-title {
	font-weight: bold;
  	font-size: 16px;
  	border-bottom: 2px solid #D7272D;
  	padding-bottom: 8px;
  	margin-bottom: 16px;
}

.page-block-container {
	padding: 8px;
	background-color: #FFF;
	-webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.15);
}
.floating-editor-panel .page-block-container,
.page-block-container .page-block-container {
	-webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.3);
}
.page-block-container.overflow-hidden {
	border: 1px solid #CCC;
}

.page-block-shadow {
	-webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.15);
}
.no-shadow {
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
}

.page-title-bar-clear, 
.page-title-bar, 
.page-subtitle-bar, 
.page-subcontent-bar {
    text-align: center;
    color: #FFF;
    padding: 10px 0px;
    
    -moz-box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
    -webkit-box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
    box-shadow: 0px 4px 8px rgba(50, 50, 50, 0.3);
}
.page-title-bar-clear, 
.page-title-bar, 
.page-subtitle-bar {
	font-family: Montserrat;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}
.page-title-bar-clear, 
.page-title-bar {
	background-color: #4E4E4E;
}
.page-title-bar-clear {
	margin-top: 24px;
}
.page-subtitle-bar, 
.page-subcontent-bar {
	background-color: #808080;
}
.page-subtitle-bar a, 
.page-subcontent-bar a {
	color: #E3E3E3;
}
.page-subtitle-bar a:hover, 
.page-subcontent-bar a:hover,
.page-subtitle-bar a:active, 
.page-subcontent-bar a:active,
.page-subtitle-bar a:focus, 
.page-subcontent-bar a:focus,
.page-subtitle-bar a:visited, 
.page-subcontent-bar a:visited {
	color: #FFF;
}

.cell-padding-24 { padding: 24px; }
@media all and (max-width: 767px) {
	.cell-padding-24 { padding: 12px 12px 12px 12px; }
}
.cell-column-500 { max-width: 500px; margin-left: auto; margin-right: auto; }
.cell-column-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.cell-column-900 { max-width: 900px; margin-left: auto; margin-right: auto; }

.page-title-bar-icon {
	margin-right: 8px;
}

.table-div { display: table; width: 100%; table-layout: fixed; }
.table-cell-div { display: table-cell; text-align: center; }

.full-page-row { margin: 0px; }
.full-page-row > .col-lg-6 { padding: 0px; }

.tall-textarea { height: 78px; }
.taller-textarea { height: 108px; }

/* FEEDBACK BUBBLES */

.css-feedback-bubble, 
.css-bubble-pointer-left {
	position: absolute;
	z-index:999; 
	color:#FFF;
	padding: 8px;
	font-size: 12px;
	font-weight: bold;
	-moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

.css-bubble-pointer-left:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	border-left-color: #88b7d5;
	border-width: 8px;
	margin-top: -8px;
}

/* MOBILE STICKY BAR */

.mobile-site-sticky-bar { display: none; }
.mobile-site-top-jump { display: none; }

.mobile-site-sticky-bar-cell {
  	padding: 6px 0px;
  	display: table-cell;
  	width: 20%;
  	color: #CCC;
  	text-align: center;
}
.mobile-site-sticky-bar-cell i { font-size: 18px; }
.mobile-site-sticky-bar-cell i, 
.mobile-site-sticky-bar-cell span { vertical-align: middle; }
.mobile-site-sticky-bar-cell span { margin-left: 4px; padding: 3px 5px; background-color: #D8272D; }
.mobile-site-sticky-bar-cell div { font-size: 12px; }

.mobile-site-sticky-bar-middle-spacer-cell { display: none; }

@media (max-width: 640px) {
	.mobile-site-sticky-bar {
		position: fixed;
		width: 100%;
	  	left: 0;
	  	bottom: 0px;
	  	z-index: 100;
	  	display: table;
	  	background-color: #2c2c2c;
	  	color: #CCC;
	  	
	  	-moz-box-shadow: 0px -4px 8px rgba(50, 50, 50, 0.3);
    	-webkit-box-shadow: 0px -4px 8px rgba(50, 50, 50, 0.3);
    	box-shadow: 0px -4px 8px rgba(50, 50, 50, 0.3);
	}
	
	.mobile-site-top-jump {
		position: fixed;
	    width: 48px;
	    height: 48px;
	    right: 6px;
	    bottom: 6px;
	    z-index: 100;
	    background-color: #2c2c2c;
	    color: #CCC;
	    text-align: center;
	    display: block;
	    padding: 2px 8px 8px 8px;
	    
	    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  		filter: alpha(opacity=60);
  		-moz-opacity: 0.6;
  		-khtml-opacity: 0.6;
  		opacity: 0.6;
	}
	.mobile-site-top-jump div { margin-top: -4px; font-size: 12px; }
	.mobile-site-top-jump i { font-size: 22px; }
	
	.margin-container { padding-bottom: 50px; }
}

.mobile-site-switch-view { display: none; }
html.mobile .mobile-site-switch-view {
	position: fixed;
    width: 48px;
    height: 48px;
    left: 0;
    bottom: 60px;
    z-index: 100;
    /*border: 1px solid #d8272d;
    border-width: 2px 2px 2px 0px;*/
    background-color: #2c2c2c;
    color: #CCC;
    text-align: center;
    display: block;
    padding: 4px 0px 0px 0px;
    
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
 		filter: alpha(opacity=60);
 		-moz-opacity: 0.6;
 		-khtml-opacity: 0.6;
 		opacity: 0.6;
}
html.mobile .mobile-site-switch-view div { margin-top: -2px; font-size: 12px; }
html.mobile .mobile-site-switch-view i { font-size: 22px; }

.mobile-menu-overlay {
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right:0;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	display: none;
}

/* OVERRIDES */

.site-row-cell h1 {
	font-family: Montserrat;
	font-weight: bold;
	color: #FFF;
	font-size: 17px;
	text-transform: uppercase;
}

.dropdown-menu>.active>a, 
.dropdown-menu>.active>a:hover, 
.dropdown-menu>.active>a:focus {
	background-color: #d8272d;
}

.btn-default:hover, /*.btn-default:focus, */.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
	background-color: #2c2c2c;
	border-color: #2c2c2c;
	color: #FFFFFF;
}

.header a.close { opacity: 0.5; }

/* Otherwise they tend to get hidden below the bottoms of lightboxes */
.shared-with-input-cell .typeahead.dropdown-menu {
	position: initial;
}

/* ICONS */

.photo-attach-button, 
.video-attach-button { 
	line-height: 34px;
	margin-right: 16px;
	font-size: 22px !important; 
}
	
.icon-red-20 {
	color: #d8272d;
	font-size: 20px;
	cursor: pointer;
}

.icon-white-20 {
	color: #FFF;
	font-size: 20px;
	cursor: pointer;
}

.icon-mirrored {
-webkit-transform: scale(-1, 1);
-moz-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
transform: scale(-1, 1);
}

.icon-flipped {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}

/* AVATARS */

.avatar-wrapper {
	float: left;
	margin-right: 16px;
	margin-bottom: 8px;
	vertical-align: top;
}
.avatar-box {
	background-size: cover;
	background-position: 50% 20%;
}

.avatar-wrapper-micro {
	display: inline-block;
	margin-right: 10px;
	vertical-align: top;
}
	
.avatar-box-micro {
	width: 36px;
	height: 36px;
	background-size: cover;
}

/* CHECKBOXES */

.icheckbox,
.iradio {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 20px;
    height: 20px;
    background: url(images/checks.png) no-repeat;
    border: none;
    cursor: pointer;
    
    margin-right: 8px;
}

.icheckbox {
    background-position: 0 0;
}
    .icheckbox.checked {
        background-position: -22px 0;
    }
    .icheckbox.disabled {
        background-position: -44px 0;
        cursor: default;
    }
    .icheckbox.checked.disabled {
        background-position: -66px 0;
    }

.iradio {
    background-position: -88px 0;
}
    .iradio.checked {
        background-position: -110px 0;
    }
    .iradio.disabled {
        background-position: -132px 0;
        cursor: default;
    }
    .iradio.checked.disabled {
        background-position: -154px 0;
    }

/* Retina support */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (-moz-min-device-pixel-ratio: 1.5),
       only screen and (-o-min-device-pixel-ratio: 3/2),
       only screen and (min-device-pixel-ratio: 1.5) {
    .icheckbox,
    .iradio {
        background-image: url(images/checks@2x.png);
        -webkit-background-size: 176px 22px;
        background-size: 176px 22px;
    }
}

/* ANIMATIONS */

/* Scale to width */
.gfx-scale-width {
	-webkit-animation: scalewidth 600ms ease-out;
	-webkit-animation-iteration-count: 1;
}
@-webkit-keyframes scalewidth {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Feedback bubble "fade out/up" */
.gfx-fade-up {
	-webkit-animation: fadeup 1500ms ease-out;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease-out;
}
@-webkit-keyframes fadeup {
	0% {   
		-ms-transform: scale(0.1, 0.1);
    	-webkit-transform: scale(0.1, 0.1);
    	transform: scale(0.1, 0.1);
    }
    10% {
    	-ms-transform: scale(1, 1);
    	-webkit-transform: scale(1, 1);
    	transform: scale(1, 1);
    }
    30% {
    	opacity: 1.0;
    }
    100% { 
    	opacity: 0;
    	margin-top: -16px; 
    }
}

/* Feedback bubble "fade out/up" */
.gfx-fade-in-left {
	-webkit-animation: fadeinleft 1000ms ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
}
@-webkit-keyframes fadeinleft {
	0% {   
    	margin-right: 0px;
    }
    50% {
    	margin-right: -8px;
    }
    100% {
    	margin-right: 0px;
    }
}

.gfx-fade-in-down {
	-webkit-animation: fadeindown 400ms ease-out;
	-webkit-animation-iteration-count: 1;
}
@-webkit-keyframes fadeindown {
    0% { opacity: 0; -webkit-transform: translateY(-20px); }
	100% { opacity: 1; -webkit-transform: translateY(0); }
}

/* VIDEO STUBS */
.linked-video-stub-loader {
	width: 100%;	height: 0%;
	padding-top: 22%;
	padding-bottom: 34%;
	border: 1px solid #CCC;
	background-color: #EEE;
  	font-weight: bold;
  	color: #666;
  	cursor: pointer;
  	background-size: cover;
  	background-position: 50% 50%;
}
.linked-video-stub-backdrop {
	background-color: rgba(255, 255, 255, 0.75);
  	position: absolute;
  	top: 1px;	left: 1px;
  	right: 1px;	bottom: -1px;
}
.linked-video-stub-loader .fa {
	font-size: 64px;
	vertical-align: middle;
	color: #D7262C;
	position: relative;
}

/* TOUR BUTTONS */
.floating-corner-btn {
	width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 28px;
    text-align: center;
    border-radius: 50%;
    color: #FFF;
    cursor: pointer;
    
	position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 2;
	-moz-box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.4);
}

/* FRIENDS MENU */
.friend-menu-conversation-message-timestamp {
	font-size: 10px;
	display: block;
}
.friend-menu-conversation-message-media-container {
	display: block;
	margin-top: 8px;
}
.friend-menu-reply-textarea-container textarea {
	width: 100%;
	border: 0px;
	padding: 8px !important;
}
.post-friend-menu-reply {
	font-family: Montserrat;
	background-color: transparent;
	color: #FFF;
	border: 0px;
	text-transform: uppercase;
	display: inline-block;
	font-size: 16px;
}

/* DATATABLES */
.dataTables_processing {
	padding: 8px 0px !important;
    color: #FFF !important;
    font-weight: bold;
    height: auto;
    min-height: auto;
    max-height: none;
    top: 66px !important;
}
table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before, 
table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before {
	top: 50% !important;
	margin-top: -9px;
}
table.dataTable thead th, table.dataTable thead td,
table.dataTable tfoot th, table.dataTable tfoot td {
	padding: 8px 10px !important;
}
table.dataTable tfoot select {
	width: 100%;
}

/* EQUAL HEIGHT GRID */
.equal-height-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  flex-wrap: wrap;
}
.equal-height-row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

/* AJAX */
.ajax-load-spinner {
	position: fixed;
	top: 18px;
	left: 38px;
	font-size: 35px;
	color: rgba(216, 39, 45, 0.49);
	color: rgba(255, 255, 255, 0.75);
	text-shadow: 0px 0px 1px #000;
	z-index: 9999999999;
	
	display: none;
}
@media all and (max-width: 640px) {
	.ajax-load-spinner {
		left: 26px;
	}
}