/*   

    ////// // //    /////  /////
    |||||||||||||   |||||| ||||||
      |||  ||||||   |||///||///
      |||  ||||||   |||||| |||||
      |||  ||||||///|||/// ////||
      |||  |||||||||||||||||||||  
      
      DJM - not sure why we needed additional styles.  These were previously included in a separate file at 
      /includes/css/tilescreen/main.css and some of them can probably be removed.  Coming back to 
      this later but the css starting after the next comment block hols the core styles.  Im guessing maybe 
      there were conflicts with the website stylesheet and this corrects them
*/

      .carousel {
        margin-bottom: 0px;
        height: auto;
    }

    .ghosted {
        opacity: 0.5;
    }

    .tile-content>a>img  {
        width: 100%;
    }

    .tile-content {
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .tile.col-sm-4 .tile-content>a>img  {
        object-fit: cover;
    }

    .tile {
        position: relative;
        padding: 7.5px 15px;
        text-align: center;
        color: white;
        overflow: hidden;
    }

    .tile-basic-button {
        display: grid;
        align-items: center;
        padding: 25px;
        transition: all 0.3s ease;
    }

    .text-large {
        font-size: 5em;
    }

    .text-medium {
        font-size: 2em;
    }

    .text-small {
        font-size: 1.5em;
    }

    .text-bottom {
        bottom: 7.5px;
       
        padding: 2px 0;
        width: calc(100% - 30px);
        transition: all 0.3s ease;
    }

    .tile-content>a>.tile-text {
        position: absolute;
    }

    .tile-content>a>.tile-text.centered-text {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .squeeze-on-hover {
        transition: all 0.3s ease;
    }

    .squeeze-on-hover:hover {
        padding: 35px 25px;
    }

    .tile-button {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100px;
        transition: all 0.3s ease;
    }

    .tile-button a {
        text-decoration: none !important;
    }
    
    .tile-darken {
        transition: all 0.3s ease;
    }

    .tile-darken:hover {
        filter: brightness(0.8);
    }

    .tile-brighten {
        transition: all 0.3s ease;
    }

    .tile-brighten:hover {
        filter: brightness(1.2);
    }

    .carousel-control{
        /* top: 7.5px !important; */
        
        transition: all 0.3s ease;
    }

    .centered-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .carousel-control.right {
        right: 0;
        left: auto;
        background-image: -webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        background-image: -o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0)),to(rgba(0, 0, 0, 0)));
        background-image: linear-gradient(to right,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control.left {
        left: 0;
        right: auto;
        background-image: -webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        background-image: -o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0)),to(rgba(0, 0, 0, 0)));
        background-image: linear-gradient(to right,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control.right:hover {
        background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
        background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control.left:hover {
        background-image: -webkit-linear-gradient(right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        background-image: -o-linear-gradient(right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        background-image: -webkit-gradient(linear,right top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
        background-image: linear-gradient(to left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
        background-repeat: repeat-x;
    }
    
    
    @media (min-width: 768px) {

        .tile {
            padding: 7.5px;
        }

        .text-bottom {
            width: calc(100% - 15px);
        }

    }

    .carousel-inner>.item>img {
        position: relative !important; 
        top: auto !important; 
        left: auto; 
        min-width: 100%;
    }


    .carousel .item {
        height: auto !important;
        /*background-color: #777;*/
        overflow: hidden;
    }

    @media (min-width: 992px) {

        .text-small {
            font-size: 1.25em;
        }

    }



/*------------------------------------------------
	TILE SCREEN CSS
--------------------------------------------------
	Authors : 	Bradley Hayes
				Shane Brelesky
--------------------------------------------------
	Created	:	06/12/2020
--------------------------------------------------
	Updates :
		06/21/2020	BJH		Added Vertical Positioning, Horizontal Positioning and Vertical Offset css classes for Icon, Main and Sub Texts
        06/24/2020	SRB		Code Reviewed
        10/8/2020	BJH		Moved #editorPanel to the top of the page. Some clients were having issues saving on smaller screen heights
--------------------------------------------------*/

html { font-size: 100%; } 

/*------------------------------------------------
SHARED STYLES
--------------------------------------------------*/
.tile-screen {
	overflow-x:hidden;
}

.tile-screen,
.tile-screen a,
a.tile-screen-col,
.tile-screen a:link,
a.tile-screen-col:link,
.widget-overlay {
	font-size: 14px;
}

.tile-screen,
.tile-screen a,
a.tile-screen-col,
.tile-screen a:link,
a.tile-screen-col:link,
.widget-overlay,
.widget-overlay span {
	color: #FFF;
}

.tile-screen-col,
.tile-screen-col-icon {
	display: block;
}

.tile-screen-col-icon { 
    max-height: 100%;
}

.tile-screen-col[href],
button.tile-screen-col,
.tile-screen-col-inner,
.icon-container,
.tile-screen-col  div.tipsyTarget  {
	cursor: pointer;
}

#tile-screen:not(.tile-screen-editor) div.tile-screen-col, #tile-screen:not(.tile-screen-editor) div.tile-screen-col div.tile-screen-col-inner{
	cursor:default;
	outline: none;
}

.tile-screen-col-inner,
#editorPanel {
	overflow: hidden;
}

.tile-screen-col-content,
.tile-screen-col-content div, 
.tile-screen-col-content span,
.icon-item,
#editorPanelFooter,
.tile-screen-col div.tipsyTarget,
.widget-overlay,
.widget-overlay span {
	position: absolute;
}

.tile-screen-col-content,
.tile-screen-col-main,
.tile-screen-col-subtext,
.tile-screen-col-icon,
#editorPanelFooter,
.dz-message span,
.dz-preview, 
.dz-details {
	width: 100% !important;
}

.dz-message span{ margin-top: -15px; }


.tile-screen-col-content,
.dz-preview, 
.dz-details,
.dz-details img {
	height: 100% !important;
}

.tile-screen-col-icon,
.tile-screen-col  div.tipsyTarget {
	text-align: center;
}

.tileHidden{
	position: absolute;
    display: none !important;
}

/* TILE-SCREEN BASE STYLES */
.tile-screen-row {
	margin-right: -7.5px;
	margin-left: -7.5px;
}

.tile-screen-editor .tile-screen-row {
	border: 1px dashed #BBB;
	border-top: none;
	padding-right: 1px;
}

.tile-screen-editor .tile-screen-row:first-child {
	border-top: 1px dashed #BBB;
}


/* For Phone */
.tile-screen-col {
	display:block;
	padding: 4.5px;
}

/* For Devices larger than phone */
@media(min-width: 525px){
	.tile-screen-col {
		padding: 7.5px;
	}
}

.tile-screen-col.lighten .tile-screen-col-inner:hover{
    filter: brightness(1.2);
}

.tile-screen-col.darken .tile-screen-col-inner:hover {
    filter: brightness(0.8);
}

.darkenBtn{
	filter: brightness(0.8);
}

.tile-screen-editor .tile-screen-col {
	border-right: 1px dashed #BBB;
}

.tile-screen-editor .tile-screen-col:last-child {
	border-right: none;
}

.tile-screen-col-inner {
	justify-content: center;
	align-items: center;
	position: relative;
	min-height: 20px;
	display: flex;
}

.tile-screen-col-img {
	z-index: 3;
}

.tile-screen-col-content {
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	transition: all .5s;
	z-index: 10;
    pointer-events: none;	
    white-space: pre-wrap;
    line-height: 1;
}

.tile-screen-col-content span{
	top: 4px;
}

.tile-screen-col .carousel {
	height:100%;
	width:100%;
	z-index: 2;
	margin-bottom: 0px !important;
}

.tile-screen-col .carousel-inner,
.tile-screen-col .carousel-inner > .item {
	height:100%;
}


.tile-screen-col .carousel .item {
	height: auto !important;
    overflow: hidden;
}

.tile-screen-col .carousel-inner>.item>img {
	position: relative !important;
    top: auto !important;
    left: auto;
    min-width: 100%;
}

/*------------------------------------------------
ICON STYLES
--------------------------------------------------*/

.icon-container {
    margin: .25em 1% .25em 0;
    display: inline-block;
    border-radius: 5px;
    padding: .5em;
    background: #eee;
    font-size: 1.2em;
    min-height: 100px;
    vertical-align: middle;
    width: 19%;
    float: left;
    transition: all 0.2s ease-in-out;
}

.icon-container:hover {
	background: #c3c3c3;
}

.icon-container.selected {
	background: #51a3e2;
	color: white;
}

.icon-item {
    top: 50%;
    left: 50%;
    transform: translate(-25px, -24px);
    font-size: 3.5em;
}

#SelectIcon {
	max-height: 470px;
    overflow: scroll;
    background: #fbfbfb;
    padding: 4px 10px;
	border-radius: 8px;
	margin-top: 10px;
}

/*------------------------------------------------
Custom infoBar
--------------------------------------------------*/

body.menu-slim {
    margin-top: 85px !important;
}

body.beta-bar-active {
	margin-top:190px !important;
}

body.beta-bar-active.menu-slim {
    margin-top: 125px !important;
}

.menu-slim #infoBar {
    height: 35px;
}

body.beta-bar-active.menu-slim #infoBar {
	height:75px;
}

body.menu-slim #infoBar * {
    height: auto;
}

body.beta-bar-active.menu-slim #awsmBar {
    top: 125px;
}

.menu-slim a#hide-awsm {
    min-width:unset;
    width: auto;
    font-size:0;
    padding:0;
}

.menu-slim #infoBar span {
    display:none;
}

.menu-slim #infoBar span.icon {
	display:inline;
    font-size: 20px;
    line-height: 35px;
}

.menu-slim a#hide-awsm span.icon {
    font-size: 30px;
}

.menu-slim #infoBar li a {
    padding: 0px 8px 0 8px;
    height: 35px;
}

.menu-slim #infoBar li a small {
    display: none;
}

.menu-slim #infoBar .eventTxt h2, 
.menu-slim #infoBar .eventTxt h3 {
    display: none;
}

.menu-slim #infoBar .eventTxt {
    padding: 8px;
}

.menu-slim .panels {
    top: 75px !important;
}

.menu-slim a.controlViewSize {
    display: inline !important;
    float: left;
	color: #79BE45;
}

.menu-slim div#awsmBar {
    top: 35px;
}

.menu-slim #ToolPanel {
    top: 35px;
}

body.beta-bar-active.menu-slim #ToolPanel {
    top: 75px;
}

/*------------------------------------------------
WYSIWYG Toolbar
--------------------------------------------------*/

.addedHeightForBetaBar {
	height: 75px !important;
}

#ToolPanel {
    transition: all 0.5s;
    background: #4C4C4C;
    background: -moz-linear-gradient(top, #4C4C4C 0%, #292929 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4C4C4C), color-stop(100%, #292929));
    background: -webkit-linear-gradient(top, #4C4C4C 0%, #292929 100%);
    background: -o-linear-gradient(top, #4C4C4C 0%, #292929 100%);
    background: -ms-linear-gradient(top, #4C4C4C 0%, #292929 100%);
    background: linear-gradient(top, #4C4C4C 0%, #292929 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#292929', GradientType=0);
    position: fixed;
    display: block;
    z-index:999;
    height: 50px;
    width: 100%;
    padding: 0;
    top: 100px;
}

a.undo[disabled], 
a.redo[disabled] {
    opacity: .3;
    cursor: not-allowed;
}

.groupedbuttons {
    border: 1px solid #292929;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    overflow: hidden;
    clear: both;
    padding: 0;
    top: 8px;
}

.menu-slim .groupedbuttons #toggleInfoBar span:before{
    content: "\e0f6" !important;
}

.groupedbuttons #toggleInfoBar span:before{
    content: "\e0f2" !important;
}

.groupedbuttons a {
    background: #38B2EF;
    background: -moz-linear-gradient(top, #38B2EF 0%, #2E93C7 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #38B2EF), color-stop(100%, #2E93C7));
    background: -webkit-linear-gradient(top, #38B2EF 0%, #2E93C7 100%);
    background: -o-linear-gradient(top, #38B2EF 0%, #2E93C7 100%);
    background: -ms-linear-gradient(top, #38B2EF 0%, #2E93C7 100%);
    background: linear-gradient(to bottom, #38B2EF 0%, #2E93C7 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#38B2EF', endColorstr='#2E93C7', GradientType=0);
    border-right: 1px solid #414141;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    text-align: center;
    padding: 7px 11px;
    display: block;
    font-size: 12px;
    color: #EEE;
    float: left;
}

.groupedbuttons a.dkGreen{
    background-color: #5EB34E;
    background: linear-gradient(to bottom, #5EB34E 0%, #50A540 100%);
    background: -moz-linear-gradient(top,#5EB34E 0%, #50A540 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5EB34E), color-stop(100%, #50A540));
    background: -webkit-linear-gradient(top,#5EB34E 0%, #50A540 100%);
    background: -o-linear-gradient(top,#5EB34E 0%, #50A540 100%);
    background: -ms-linear-gradient(top,#5EB34E 0%, #50A540 100%);
    background: linear-gradient(to bottom,#5EB34E 0%, #50A540 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#5EB34E', endColorstr='#50A540', GradientType=0);
}

.groupedbuttons a.dkGreen:hover,
.groupedbuttons a.active.dkGreen {
    background: #2678A2;
    background: -moz-linear-gradient(top, #50A540 0%, #5EB34E 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #50A540), color-stop(100%, #5EB34E));
    background: -webkit-linear-gradient(top, #50A540 0%, #5EB34E 100%);
    background: -o-linear-gradient(top, #50A540 0%, #5EB34E 100%);
    background: -ms-linear-gradient(top, #50A540 0%, #5EB34E 100%);
    background: linear-gradient(to bottom, #50A540 0%, #5EB34E 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#50A540', endColorstr='#5EB34E', GradientType=0);
    text-decoration: none;
    color: #FFF;
}

.groupedbuttons a:last-child {
    border: none;
}

.groupedbuttons a:hover,
.groupedbuttons a.active {
    background: #2678A2;
    background: -moz-linear-gradient(top, #2678A2 0%, #38B2EF 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2678A2), color-stop(100%, #38B2EF));
    background: -webkit-linear-gradient(top, #2678A2 0%, #38B2EF 100%);
    background: -o-linear-gradient(top, #2678A2 0%, #38B2EF 100%);
    background: -ms-linear-gradient(top, #2678A2 0%, #38B2EF 100%);
    background: linear-gradient(to bottom, #2678A2 0%, #38B2EF 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#2678A2', endColorstr='#38B2EF', GradientType=0);
    text-decoration: none;
    color: #FFF;
}

.groupedbuttons a>span {
    vertical-align: -2px;
    font-size: 16px;
}

/*------------------------------------------------
Editor Panel
--------------------------------------------------*/

.containerEditorSection .row {
    margin-bottom: 15px;
    line-height: 20px;
}
.containerEditorSection label{
    font-size: 13.5px;
}
.containerEditorSection input{
    width: 45px;
    height: 24px;
    text-align: center;
    font-size: 13.5px;
}
.containerEditorSection h4 {
    font-size:14px;
    
}

#mainholder.showSettings #editorPanel {
	left: 15px;
}

.containerEditorSection {
    border-bottom: solid #CCC 1px;
    padding: 0px 15px;
    user-select: none;
}

.containerEditorSection:last-child {
	border:none;
}

.containerEditorSection * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.containerEditorSection span.zoom {
    font-size: 20px;
    color: #7B7B7B;
    line-height: 20px;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    top: -1px;
}

.containerEditorSection span.zoom:hover {
    color: #a2a2a2;
    background-color: #f9f9f9;
    cursor: pointer;
}

.containerEditorSection .colorpreview {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #BBB;
    display: inline-block;
    background: #EFEFEF;
    cursor: pointer;
    margin-right: 5px !important;
    margin-left: 10px !important;
    height: 20px;
    width: 20px;
    float:left;
}
.containerEditorSection .color-pick {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #BBB;
    background: #EFEFEF;
    text-align: center;
    line-height: 18px;
    margin-left: 5px;
    font-size: 10px;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin-top: -1px;
    float: left;
}

.containerEditorSection .inline-controls * {
	vertical-align: middle;
    position: static;
    float:none;
    margin: 0;
}

.containerEditorSection .bg-settings-label {
	display:inline-block;
	width:125px;
}

/* CUSTOM SELECT */
.containerEditorSection select{
    font-size: 13.5px;
    background-color: white;
    height: 24px;
    width: 95px;
}

.containerEditorSection .select {
    position: relative;
    display: inline-block;
} 

.containerEditorSection select {
    padding-left: 5px;
    cursor: pointer;
    border: 1px solid #dfdfdf;
    border-radius: 0px;
    background: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.containerEditorSection select::-ms-expand {
    display: none;
}

.containerEditorSection .select_arrow {
    position: absolute;
    top: 10px;
    right: 5px;
    pointer-events: none;
    border-style: solid;
    border-width: 7px 4px 0px 4px;
    border-color: #7B7B7B transparent transparent transparent;
}
.containerEditorSection select:hover ~ .select_arrow,
.containerEditorSection select:focus ~ .select_arrow {
    border-top-color: #000000;
}
.containerEditorSection select:disabled ~ .select_arrow {
    border-top-color: #CCCCCC;
}

#editorPanel {
	box-shadow: 4px 4px 8px #f1f1f1;
	background-color: #fffdfd;
	border: solid #CCC 1px;
	position: fixed;
	border-radius: 4px;
	width: 245px;
	height: 420px;
	z-index: 103;
	top: 117px;
}

#editorPanelFooter {
    border-top: solid #bdbdbd 1px;
    background-color: #cacaca;
    box-sizing:border-box;
    padding: 10px 5px;
    bottom: 0px;
}

@media (min-width: 1425px) {

	#editorPanel {
		width: 275px;
	}

}

.vCenter {
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vTop-0{
	top: 0%;
}

.vTop-5{
	top: 5%;
}

.vTop-10{
	top: 10%;
}

.vTop-15{
	top: 15%;
}

.vTop-20{
	top: 20%;
}

.vTop-25{
	top: 25%;
}

.vTop-30{
	top: 30%;
}

.vTop-35{
	top: 35%;
}

.vTop-40{
	top: 40%;
}

.vTop-45{
	top: 45%;
}

.vTop-50{
	top: 50%;
}

.vBottom-0 {
	top: 100%;
	transform: translateY(-100%);
}

.vBottom-5 {
	top: 95%;
	transform: translateY(-95%);
}

.vBottom-10 {
	top: 90%;
	transform: translateY(-90%);
}

.vBottom-15 {
	top: 85%;
	transform: translateY(-85%);
}

.vBottom-20 {
	top: 80%;
	transform: translateY(-80%);
}

.vBottom-25 {
	top: 75%;
	transform: translateY(-75%);
}

.vBottom-30 {
	top: 70%;
	transform: translateY(-70%);
}

.vBottom-35 {
	top: 65%;
	transform: translateY(-65%);
}

.vBottom-40 {
	top: 60%;
	transform: translateY(-60%);
}

.vBottom-45 {
	top: 55%;
	transform: translateY(-55%);
}

.vBottom-50 {
	top: 50%;
	transform: translateY(-50%);
}

.ui-sortable-placeholder {
	border:2px dashed #DD0000;
	visibility:visible !important;
	opacity:.4;
}

.tile-screen-col  div.tipsyTarget {
    background: #FFFFFF;
    visibility: hidden;
    line-height: 30px;
    z-index: 199;
    height: 30px;
    width: 30px;
    left: 0px;
    top: 0px;  
}

.tile-screen-col div.tileSettings {
    right: 0px;
    left: auto;
}

.tile-screen-col div.tileInfo {
    right: 30px;
    left: auto;
}

.tile-screen-col div.swapTile {
	left: 30px;
}

.tile-screen-col div.swapTile span {
	font-size: 21px;
}

.tile-screen-col:hover div.tipsyTarget {
    visibility: visible;
}

tile-screen .tile-screen-col:hover div.tipsyTarget {
    visibility: hidden;
    display: none;
}

.tile-screen-col .tipsyTarget span {
    vertical-align: middle;
    line-height: unset;
    font-size: 25px;
}

/* Override Dropzone Styles */
.dz-details img {
    object-fit: contain !important;
    max-height: 100%;
}

.widget-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 102;
}

.widget-overlay-text {
	position:absolute;
	padding:0 5px;
	width:100%;
	text-align:center;
	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	font-size:10px;
}

.col-xs-2 .widget-overlay-text,
.col-xs-3 .widget-overlay-text {
	font-size:7px;
}

@media (min-width:768px) {
	
	.widget-overlay-text {
		font-size:inherit !important;
	}
	
}

.widget-overlay span {
    top: 4%;
    right: 0;
    left: 0;
    font-size: 10pt;
}
 
#removeBgImage {
	 margin-left: 10px;
	 margin-top: 15px;
	 width: 100px;
	 padding: 7px 0px;
	 float: left;
}

#downloadBtn {
	 margin-top: 15px;
	 width: 100px;
	 padding: 7px 0px;
	 float: left;
}

.rowoptions{
	position: absolute;
    right: -76px;
    height: 27px;
    width: 60px;
    box-shadow: -1px 0 4px 0px #ccc;
}

.rowoptions.reArrange {
    left: -45px;
    width: 31px;
    box-shadow: -1px 0 4px 0px #ccc;
}

.rowoptions.OptionsRight div{
	width: 50%;
	display: inline-block;
}

.rowoptions span, .tileMoving span{
	font-size: 25px;
    color: #9b9b9b;
    line-height: 25px;
}

.rowoptions span.icon-trash{
	font-size:18px;
}

.rowoptions.rowDelete {
	right: -46px;
    text-align: center;
    margin-top: 35px;
    width: 30px;
}

.rowoptions div:hover, .tileMoving div:hover{
	background:#FFFFFF;
	cursor: pointer;
}

.tileMoving {
    width: 31px;
    box-shadow: -1px 0 4px 0px #ccc;
}

input.icon-search{
	font-family: 'OpenSansSemiBold', Arial, Helvetica, sans-serif;
}

span.type {
	font-family: 'OpenSansSemiBold', Arial, Helvetica, sans-serif;
	font-size:16px;

}

/*------------------------------------------------
Popup tile editor
--------------------------------------------------*/

#cboxLoadedContent.popup-tile-editor {
	height:100% !important;
}

.popup-tile-editor #popupContent {
	padding-bottom:60px;
	padding-top:40px;
	height:100%;
	margin:0;
}

.popup-tile-editor #popupContent hr{
	border-top: 1px solid #bbb;
}

.tile-screen-popup-preview {
	border-bottom: 1px solid #E7EBEF;
	position:relative;
	height:150px;
}

.tile-screen-popup-preview .tile-screen-col {
	transform-origin: 50% 0;
	position:absolute;
	float: none;
	left:50%;
	top:0;
}

.tabs { 
    height: calc(100% - 60px); 
    overflow-y: scroll; 
    margin-bottom: 60px;
}

#scrollableContent {
	border-top: 0.5px solid #e0dfdf;
	height: -webkit-calc(100% - 150px);
	height: -moz-calc(100% - 150px);
	height: -ms-calc(100% - 150px);
	height: calc(100% - 150px);
	overflow:hidden;
}

#scrollableContent > form {
	height:100%;
}

#scrollableContent .tabContent {
	padding-bottom:25px;
	padding-top: 10px;
	overflow-x: hidden;
	overflow-y: auto;
	height:100%;
}

/*------------------------------------------------
Carousel Image Editor
--------------------------------------------------*/

.carousel-image {
	padding:10px 15px;
    position: relative;
    float:left;
    width:50%;
}

.carousel-image-number {
	border: 2px solid #1a6299;
	background-color: #51a3e2;
	position:absolute;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
	left: 0px;
	top: -5px;
	font-size: 14pt;
	color: #FFFFFF;
	height: 30px;
	width: 30px;
	line-height: 25px;
	z-index: 2000;
}

.carousel-image-preview,
.carousel-image-editor {
	position:relative;
	border: 1px solid #888;
    background: #F2F2F2;
    border-radius: 5px;
    padding:10px;
}

.carousel-image-editor {
	display:none;
}

.carousel-image-editor [data-prop] {
	background:#FFFFFF;
}

.carousel-image [data-action="remove"] {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background:#FFFFFF;
	position: absolute;
	text-align: center;
	font-size: 14pt;
    color: #e60000;
    line-height:1;
    right: -10px;
    top:-10px;
    z-index: 2000;
}

.carousel-image-thumbnail {
	text-align:center
}

.carousel-image-thumbnail > img {
    max-width:100%;
    max-height:150px;
}

/*------------------------------------------------
Utilities
--------------------------------------------------*/

.banner-container {
	margin-bottom: 15px;
}

.fs-sm {
	font-size:12px !important
}

.disabled {
    pointer-events: none;
    opacity: 0.3;
}

.float-right {
    float: right !important;
}

.float-left {
    float: left !important;
}

.float-none {
    float: none !important;
}

.cadmium-only {
	color: orange !important;
}

.carousel-control .icon-prev, .carousel-control .icon-next{
    margin-top: -45px !important;
    font-size: 80px !important;
}

/*

KEEPING THESE CLASSES COMMENTED OUT FOR NOW BUT MA BE USED AGAIN

#tile-screen.normal {
    max-width: 915px;
}

#tile-screen.wide {
    max-width: 1125px;
}

#tile-screen.bookend {
    max-width: 775px;
}

.container > #tile-screen > .tile-screen-row {
    margin-right: -15px !important;
    margin-left: -15px !important;
}

*/

#exampleText p {
    margin: 0;
    padding: 10px;
    background: #EFEFEF;
    border: 1px solid #CCC;
    border-radius: 5px;
    font-size: 14px;
}

/* Fit All (fill cell edges may clip) */
.fit-mode0 {
	max-width:unset !important;
	height: 100% !important;
	width: 100% !important;
	object-fit: cover;
}

/* Fit Both (expand until image hits edge. No clipping but may not fill cell) */
.fit-mode1 {
	max-height:100%;
	max-width:100%;
	width: auto !important;
    height: auto !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.fit-mode1.fit-mode-full {
	position:static;
}

/* Fit Width (may clip height) */
.fit-mode2 {
	max-width:unset !important;
	position:absolute;
	left: 0;
    width: 100% !important;
    bottom: 0;
	top: 0;
}

/* Fit Height (may clip width) */
.fit-mode3 {
	position:absolute !important;
	margin: auto;
    height: 100% !important;
	left: 50% !important;
	-webkit-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
    transform:translateX(-50%);
    max-width:unset !important;
}

/* Fit No Aspect (image may distort) */
.fit-mode4 {
	max-width:unset !important;
	height: 100% !important;
	width: 100% !important;
}

.imageGradient{
    -webkit-mask-image: linear-gradient(to top, rgb(255 255 255 / 0%), rgb(255 255 255/ 50%), rgb(255 255 255/ 90%), rgb(255 255 255/ 100%), rgb(255 255 255/ 100%));
	mask-image: linear-gradient(to top, rgb(255 255 255 / 0%), rgb(255 255 255/ 50%), rgb(255 255 255/ 90%), rgb(255 255 255/ 100%), rgb(255 255 255/ 100%));
}

.backgroundImageGradient{
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 5;
	background: linear-gradient( to bottom, rgba(21,27,31,0%), rgba(21,27,31,25%), rgba(21,27,31,85%), rgba(21,27,31,100%));
}

#editorTitle {
	max-width: 189px !important;
}

#scrollableContent > .tabs {
	min-height: 290px !important;
}

.full-content-row {
    width: 1250px;
    margin: auto;
}

.tile-screen-editor#tile-screen{
    margin-left: 375px !important;
}

#openDR {
    width: 100%;
    margin-bottom: 10px;
}

#rowInsert{
	height: 35px;
	border: 1px dashed #BBB; 
	text-align: center;
	color: #BBB;
	font-size: 16px;
	margin-left: -15px;
	margin-right: -15px;
	line-height: 1.9;
	cursor: pointer;
}

.grid-selector.selected div.bg-cadmium{
	opacity: 1.0;
}

.fadedSwap {
	opacity: 0.4 ;
	cursor: default !important;
}

.fadedSwap:hover {
	opacity: 1.0;
}

#modeWarning{
	font-size: 14px;
	padding: 8px;
}

.tile-screen-col .progress {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #4A4A51;
    border-radius: 1rem;
    color: white;
    border: 2px solid black;
    max-width: 100px;
    justify-content: space-between;
    height: 25px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 10;
}

.tile-screen-col .progress .progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #36ca03;
    transition: width .6s ease;
}

.tile-screen-col .progress .progress-text {
    left: -5px;
    top: 1px;
    display: block;
    position: absolute;
    text-align: right;

}