@charset "utf-8";
:root {
    --arrow-size: 8px;

    /*
     * These properties are computed to account for the arrow's dimensions after being rotated 45º. The constant
     * 0.7071 is derived from sin(45), which is the diagonal size of the arrow's container after rotating.
     */
    --arrow-size-diagonal: calc(var(--arrow-size) * 0.7071);
    --arrow-padding-offset: calc(var(--arrow-size-diagonal) - var(--arrow-size));
}

.spex-hotspot-container {
    height: inherit;
    width: fit-content;
    position: relative;

    font-family: Arial, Sens Sarif;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5em;
}

.spex-hotspot-container > img {
    height: 100%;
    width: 100%;
}
/*
* Hotspot
*
*/
.hotspot {
    position: absolute;
    font-size: 1.3em;
    height: 1.3666667em;
    width: 1.3666667em;
    display: flex;
    justify-content: center;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    padding: 0;
    border: 3px solid transparent;
    margin-left: -10px;
    margin-top: -10px;
    cursor: pointer;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 30%);
}

.hotspot-circle .hotspot {
    line-height: 1;
    border-radius: 0.7em;
}

.white-black .hotspot {
    background: #FFF;
    color: #000;
    border-color: #000;
}

.black-white .hotspot {
    background: #000;
    color: #FFF;
    border-color: #FFF;
}

.black-green .hotspot {
    background: #000;
    color: #3ECD59;
    border-color: #3ECD59;
}

.black-orange .hotspot {
    background: #000;
    color: #e3591c;
    border-color: #e3591c;
}
.hotspot:before {
    position: absolute;
    font-weight: bolder;
    font-size: 1.5em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hotspot-plus .hotspot::before {
    content: '+';
}

.hotspot-minus .hotspot::before {
    content: '-';
}

/*
* Hotspot content container and content
*
*/

.popup-container {
    background: #fff;
    color: #000;
    border-radius: 4px;
    display:none; /* Required */
    padding: 0.5em;
    z-index: 10;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    /*box-sizing: content-box;*/
    box-sizing: border-box;
    opacity: 0;
    text-align: left;
    /*    max-width: calc(100% - 50px);
        max-height: calc(100% - 50px);
    */
    max-width: 70%;
    max-height: 70%;

    position: absolute;
    top: 0;
    left: 0;
    width: max-content;
    /*width: auto;*/
    /*min-width: auto;*/
    isolation: isolate;
    height: auto;
    /*height: 100%;*/
}

.popup-container.show {
    display: flex;
    flex-direction: column;
    /*    transition: left .4s ease-in-out;*/
}

.popup-container.show.scrollable {
    height: 100%;
}

.popup-container.show.visible {
    opacity: 1;
}

.popup-container .popup-pointer {
    border: 0.6em solid transparent;
    position: absolute;
    /*display: none;*/
    transform: rotate(45deg);
    background: inherit;
    z-index: -1;

    width: calc(var(--arrow-size-diagonal) * 2);
    height: calc(var(--arrow-size-diagonal) * 2);

}
/*
.popup-container.show .popup-pointer {
     display: block;
}
.popup-container[x-placement=left] .popup-pointer {
     left: 99%;
     top: 45%;
     border-left: 10px solid #fff;
}

.popup-container[x-placement=right] .popup-pointer {
    border-right: 10px solid #fff;
    top: 45%;
    right: 99%;
}

.popup-container[x-placement=bottom] .popup-pointer {
    left: 45%;
    bottom: 99%;
    border-bottom: 10px solid #fff;
}

.popup-container[x-placement=top] .popup-pointer {
    left: 45%;
    top: 99%;
    border-top: 10px solid #fff;
}
*/
.popup-container .popup-actions {
    margin-left: auto;
    display: flex;
    flex-direction: row-reverse;
    column-gap: 0.6em;
    padding: 0em 0.1em;
    opacity: 0.5;
    max-height: 1.2em;
    margin-bottom: 0.15em;
}

.popup-container .popup-actions > span {
    cursor: pointer;
}

.popup-container .popup-actions .btn-close-popup {
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
}
.popup-container .popup-actions .btn-close-popup::before {
    content: "+";
    display: block;
    transform: rotate(45deg);
    font: normal 30px arial, sans-serif;
    color: #000;
    line-height: 0.56;
}

.popup-body {
    /*overflow: auto;*/
    min-width: 15em;
    max-height: 94%;
    background-color: transparent;
    padding: 0 0 0.5em 0;
}

/*
* Overlay used in the admin-mode
*
*/

.hotspot-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    transition: background .5s ease-in-out;
}
.hotspot-overlay.visible {
    background: rgba(0, 0, 0, 0.5);
}@charset "UTF-8";
.spex-hotspot-container .popup-container .hotspot-text-template,
.spex-hotspot-container .popup-container .hotspot-image-template,
.spex-hotspot-container .popup-container .hotspot-video-template {
    height: 100%;
}

.spex-hotspot-container .popup-container .hotspot-text-template {
    display: grid;
    grid-template-rows: auto 1fr;
}
.spex-hotspot-container .popup-container .hotspot-image-template{
    display: flex;
    flex-direction: column;
    padding-top: 0.12em;
    padding-bottom: 0.12em;
}

.spex-hotspot-container .popup-container .hotspot-video-template {
    display: flex;
    flex-direction: column;
}

.spex-hotspot-container .text-row {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.spex-hotspot-container .text-row > *:first-child {
    width: 100%;
}

.popup-container .hotspot-text-template .text-row{
    /*height: auto;*/
}

.spex-hotspot-container .popup-container .text-row:not(.single-line) {
    overflow: auto;
}

.spex-hotspot-container .popup-container .hotspot-image-template .text-row {
    height: inherit;
}

.spex-hotspot-container .popup-container .hotspot-image-template .text-row.single-line {
    /*height: 10%;*/
    height: auto;
    /*max-height: 10%;*/
    max-height: none;
}

.spex-hotspot-container .popup-container .hotspot-video-template .text-row {
    height: inherit;
}

.spex-hotspot-container .popup-container .hotspot-video-template .text-row.single-line {
    height: auto;
    max-height: none;
}

.spex-hotspot-container .image-holder {
    margin: 0.6em auto;
    height: inherit;
    max-height: 75%;
    display: flex;
    justify-content: center;
}

.spex-hotspot-container .popup-container .hotspot-image-template .image-holder.no-image + .text-row:not(.single-line) {
    height: auto;
}

.spex-hotspot-container .popup-container .hotspot-video-template .video-holder.no-image + .text-row:not(.single-line) {
    height: auto;
}
.spex-hotspot-container .image-holder img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.spex-hotspot-container .video-holder.no-video {
    background-image: url("../../../img/video-placeholder.png");
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 135px;
}

.spex-hotspot-container .video-holder{
    text-align: center;
    padding: 0.5em 0;
    align-self: center;
    /*height: auto;
    max-height: 60%;*/
}

.spex-hotspot-container .video-holder iframe {
    width: auto;
    max-width: 100%;
    height: 100%;
}

.spex-hotspot-container[data-mode="display"] .btn-edit-text {
    display: none;
}
@charset "UTF-8";
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.spex-hotspot-container {
    width: 100%;
    height: 100%;
}

.spex-hotspot-container > img{
    max-width: 100%;
}

.spex-hotspot-container .btn-edit-text {
    opacity: 0.5;
    padding: 4px 2px 0 4px;
}

/* Preview Hotspots*/
.spex-hotspot-container.spexhotspot-display .hotspot-overlay {
    cursor: default;
}

.spex-hotspot-container .popup-container.show.image-popup .popup-body {
    height: auto;
}

.spex-hotspot-container .popup-container.show.image-popup .popup-body .hotspot-image-template{
    height: auto;
    max-height: 100%;
}

@media (max-width: 475px) {
    .popup-body {
        overflow: auto;
    }
}@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: normal;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVAexQ.ttf) format('truetype');
}
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: normal;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWVAexQ.ttf) format('truetype');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVc.ttf) format('truetype');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: normal;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4gaVc.ttf) format('truetype');
}
body {
    margin: 0;
}
.etilize-rich-content {
    font-family: 'Open Sans', 'sans-serif';
    font-size: 16px;
    line-height: 1.5;
    color: #3f3f3f;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    /*
  ======================
  <500 (xs)
  everything => 1 col

  >=500 (sm)
  four cols => 2 cols

  >=645 (md)
  no changes

  >=780 (lg)
  no changes

  Original values
  ---------------
  xs < 768px
  sm >= 768px
  md >= 992px
  lg >= 1200px

  Proposed values
  ----------------
  xs < 500px
  sm >= 500px
  md >= 645px
  lg >= 780px
  */
    /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
}
.etilize-rich-content h1, .etilize-rich-content h2, .etilize-rich-content h3, .etilize-rich-content h4, .etilize-rich-content .image-holder, .etilize-rich-content p, .etilize-rich-content footer {
    margin-top: 10px;
    margin-bottom: 5px;
    line-height: inherit;
}
.etilize-rich-content p {
    font-size: 100%;
}
.etilize-rich-content h1 {
    font-size: 200%;
}
.etilize-rich-content h2 {
    font-weight: normal;
    font-size: 180%;
}
.etilize-rich-content h3 {
    font-size: 140%;
    font-weight: bold;
}
.etilize-rich-content h4 {
    font-size: 120%;
    font-weight: bold;
}
.etilize-rich-content html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
.etilize-rich-content body {
    margin: 0;
}
.etilize-rich-content article, .etilize-rich-content aside, .etilize-rich-content details, .etilize-rich-content figcaption, .etilize-rich-content figure, .etilize-rich-content footer, .etilize-rich-content header, .etilize-rich-content hgroup, .etilize-rich-content main, .etilize-rich-content menu, .etilize-rich-content nav, .etilize-rich-content section, .etilize-rich-content summary {
    display: block;
}
.etilize-rich-content audio, .etilize-rich-content canvas, .etilize-rich-content progress, .etilize-rich-content video {
    display: inline-block;
    vertical-align: baseline;
}
.etilize-rich-content audio:not([controls]) {
    display: none;
    height: 0;
}
.etilize-rich-content [hidden], .etilize-rich-content template {
    display: none;
}
.etilize-rich-content a {
    /*this css overlap the color of original redactor toolbar  background-color: transparent; */
}
.etilize-rich-content a:active, .etilize-rich-content a:hover {
    outline: 0;
}
.etilize-rich-content abbr[title] {
    border-bottom: 1px dotted;
}
.etilize-rich-content b, .etilize-rich-content strong {
    font-weight: bold;
}
.etilize-rich-content dfn {
    font-style: italic;
}
.etilize-rich-content h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
.etilize-rich-content mark {
    background: #ff0;
    color: #000;
}
.etilize-rich-content small {
    font-size: 80%;
}
.etilize-rich-content sub, .etilize-rich-content sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
.etilize-rich-content sup {
    top: -0.5em;
}
.etilize-rich-content sub {
    bottom: -0.25em;
}
.etilize-rich-content img {
    border: 0;
}
.etilize-rich-content svg:not(:root) {
    overflow: hidden;
}
.etilize-rich-content figure {
    margin: 1em 40px;
}
.etilize-rich-content hr {
    box-sizing: content-box;
    height: 0;
}
.etilize-rich-content pre {
    overflow: auto;
}
.etilize-rich-content code, .etilize-rich-content kbd, .etilize-rich-content pre, .etilize-rich-content samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
.etilize-rich-content button, .etilize-rich-content input, .etilize-rich-content optgroup, .etilize-rich-content select, .etilize-rich-content textarea {
    /*     color: inherit; */
    /*   font: inherit; */
    margin: 0;
}
.etilize-rich-content button {
    overflow: visible;
}
.etilize-rich-content button, .etilize-rich-content select {
    text-transform: none;
}
.etilize-rich-content button, .etilize-rich-content html input[type="button"], .etilize-rich-content input[type="reset"], .etilize-rich-content input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}
.etilize-rich-content button[disabled], .etilize-rich-content html input[disabled] {
    cursor: default;
}
.etilize-rich-content button::-moz-focus-inner, .etilize-rich-content input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
.etilize-rich-content input {
    line-height: normal;
}
.etilize-rich-content input[type="checkbox"], .etilize-rich-content input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
.etilize-rich-content input[type="number"]::-webkit-inner-spin-button, .etilize-rich-content input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
.etilize-rich-content input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}
.etilize-rich-content input[type="search"]::-webkit-search-cancel-button, .etilize-rich-content input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
.etilize-rich-content fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
.etilize-rich-content legend {
    border: 0;
    padding: 0;
}
.etilize-rich-content textarea {
    overflow: auto;
}
.etilize-rich-content optgroup {
    font-weight: bold;
}
.etilize-rich-content table {
    border-collapse: collapse;
    border-spacing: 0;
}
.etilize-rich-content td, .etilize-rich-content th {
    padding: 0;
}
.etilize-rich-content * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.etilize-rich-content *:before, .etilize-rich-content *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.etilize-rich-content html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent;
}
.etilize-rich-content body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857;
    color: #333333;
    background-color: #fff;
}
.etilize-rich-content input, .etilize-rich-content button, .etilize-rich-content select, .etilize-rich-content textarea {
    /*  font-family: inherit;
    font-size: inherit;
    line-height: inherit;  */
}
.etilize-rich-content a {
    /* color: #337ab7; */
    color: black;
    text-decoration: none;
}
.etilize-rich-content a:hover, .etilize-rich-content a:focus {
    /* color: #23527c; */
    text-decoration: underline;
}
.etilize-rich-content a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.etilize-rich-content figure {
    margin: 0;
}
.etilize-rich-content img {
    vertical-align: middle;
}
.etilize-rich-content .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.etilize-rich-content .img-rounded {
    border-radius: 6px;
}
.etilize-rich-content .img-thumbnail {
    padding: 4px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.etilize-rich-content .img-circle {
    border-radius: 50%;
}
.etilize-rich-content hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee;
}
.etilize-rich-content .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.etilize-rich-content .sr-only-focusable:active, .etilize-rich-content .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}
.etilize-rich-content [role="button"] {
    cursor: pointer;
}
.etilize-rich-content .rc-template .image-holder figcaption.editable {
    font-size: 80%;
    padding-left: 0.4em;
}
.etilize-rich-content .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 14px;
    padding-right: 14px;
}
.etilize-rich-content .container:before, .etilize-rich-content .container:after {
    content: " ";
    display: table;
}
.etilize-rich-content .container:after {
    clear: both;
}
@media (min-width: 528px) {
    .etilize-rich-content .container {
        width: 521px;
    }
}
@media (min-width: 645px) {
    .etilize-rich-content .container {
        width: 633px;
    }
}
@media (min-width: 780px) {
    .etilize-rich-content .container {
        width: 768px;
    }
}
.etilize-rich-content .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 14px;
    padding-right: 14px;
}
.etilize-rich-content .container-fluid:before, .etilize-rich-content .container-fluid:after {
    content: " ";
    display: table;
}
.etilize-rich-content .container-fluid:after {
    clear: both;
}
.etilize-rich-content .row {
    margin-left: -14px;
    margin-right: -14px;
}
.etilize-rich-content .row:before, .etilize-rich-content .row:after {
    content: " ";
    display: table;
}
.etilize-rich-content .row:after {
    clear: both;
}
.etilize-rich-content .col-xs-1, .etilize-rich-content .col-sm-1, .etilize-rich-content .col-md-1, .etilize-rich-content .col-lg-1, .etilize-rich-content .col-xs-2, .etilize-rich-content .col-sm-2, .etilize-rich-content .col-md-2, .etilize-rich-content .col-lg-2, .etilize-rich-content .col-xs-3, .etilize-rich-content .col-sm-3, .etilize-rich-content .col-md-3, .etilize-rich-content .col-lg-3, .etilize-rich-content .col-xs-4, .etilize-rich-content .col-sm-4, .etilize-rich-content .col-md-4, .etilize-rich-content .col-lg-4, .etilize-rich-content .col-xs-5, .etilize-rich-content .col-sm-5, .etilize-rich-content .col-md-5, .etilize-rich-content .col-lg-5, .etilize-rich-content .col-xs-6, .etilize-rich-content .col-sm-6, .etilize-rich-content .col-md-6, .etilize-rich-content .col-lg-6, .etilize-rich-content .col-xs-7, .etilize-rich-content .col-sm-7, .etilize-rich-content .col-md-7, .etilize-rich-content .col-lg-7, .etilize-rich-content .col-xs-8, .etilize-rich-content .col-sm-8, .etilize-rich-content .col-md-8, .etilize-rich-content .col-lg-8, .etilize-rich-content .col-xs-9, .etilize-rich-content .col-sm-9, .etilize-rich-content .col-md-9, .etilize-rich-content .col-lg-9, .etilize-rich-content .col-xs-10, .etilize-rich-content .col-sm-10, .etilize-rich-content .col-md-10, .etilize-rich-content .col-lg-10, .etilize-rich-content .col-xs-11, .etilize-rich-content .col-sm-11, .etilize-rich-content .col-md-11, .etilize-rich-content .col-lg-11, .etilize-rich-content .col-xs-12, .etilize-rich-content .col-sm-12, .etilize-rich-content .col-md-12, .etilize-rich-content .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 14px;
    padding-right: 14px;
}
.etilize-rich-content .col-xs-1, .etilize-rich-content .col-xs-2, .etilize-rich-content .col-xs-3, .etilize-rich-content .col-xs-4, .etilize-rich-content .col-xs-5, .etilize-rich-content .col-xs-6, .etilize-rich-content .col-xs-7, .etilize-rich-content .col-xs-8, .etilize-rich-content .col-xs-9, .etilize-rich-content .col-xs-10, .etilize-rich-content .col-xs-11, .etilize-rich-content .col-xs-12 {
    float: left;
}
.etilize-rich-content .col-xs-1 {
    width: 8.33333%;
}
.etilize-rich-content .col-xs-2 {
    width: 16.66667%;
}
.etilize-rich-content .col-xs-3 {
    width: 25%;
}
.etilize-rich-content .col-xs-4 {
    width: 33.33333%;
}
.etilize-rich-content .col-xs-5 {
    width: 41.66667%;
}
.etilize-rich-content .col-xs-6 {
    width: 50%;
}
.etilize-rich-content .col-xs-7 {
    width: 58.33333%;
}
.etilize-rich-content .col-xs-8 {
    width: 66.66667%;
}
.etilize-rich-content .col-xs-9 {
    width: 75%;
}
.etilize-rich-content .col-xs-10 {
    width: 83.33333%;
}
.etilize-rich-content .col-xs-11 {
    width: 91.66667%;
}
.etilize-rich-content .col-xs-12 {
    width: 100%;
}
.etilize-rich-content .col-xs-pull-0 {
    right: auto;
}
.etilize-rich-content .col-xs-pull-1 {
    right: 8.33333%;
}
.etilize-rich-content .col-xs-pull-2 {
    right: 16.66667%;
}
.etilize-rich-content .col-xs-pull-3 {
    right: 25%;
}
.etilize-rich-content .col-xs-pull-4 {
    right: 33.33333%;
}
.etilize-rich-content .col-xs-pull-5 {
    right: 41.66667%;
}
.etilize-rich-content .col-xs-pull-6 {
    right: 50%;
}
.etilize-rich-content .col-xs-pull-7 {
    right: 58.33333%;
}
.etilize-rich-content .col-xs-pull-8 {
    right: 66.66667%;
}
.etilize-rich-content .col-xs-pull-9 {
    right: 75%;
}
.etilize-rich-content .col-xs-pull-10 {
    right: 83.33333%;
}
.etilize-rich-content .col-xs-pull-11 {
    right: 91.66667%;
}
.etilize-rich-content .col-xs-pull-12 {
    right: 100%;
}
.etilize-rich-content .col-xs-push-0 {
    left: auto;
}
.etilize-rich-content .col-xs-push-1 {
    left: 8.33333%;
}
.etilize-rich-content .col-xs-push-2 {
    left: 16.66667%;
}
.etilize-rich-content .col-xs-push-3 {
    left: 25%;
}
.etilize-rich-content .col-xs-push-4 {
    left: 33.33333%;
}
.etilize-rich-content .col-xs-push-5 {
    left: 41.66667%;
}
.etilize-rich-content .col-xs-push-6 {
    left: 50%;
}
.etilize-rich-content .col-xs-push-7 {
    left: 58.33333%;
}
.etilize-rich-content .col-xs-push-8 {
    left: 66.66667%;
}
.etilize-rich-content .col-xs-push-9 {
    left: 75%;
}
.etilize-rich-content .col-xs-push-10 {
    left: 83.33333%;
}
.etilize-rich-content .col-xs-push-11 {
    left: 91.66667%;
}
.etilize-rich-content .col-xs-push-12 {
    left: 100%;
}
.etilize-rich-content .col-xs-offset-0 {
    margin-left: 0%;
}
.etilize-rich-content .col-xs-offset-1 {
    margin-left: 8.33333%;
}
.etilize-rich-content .col-xs-offset-2 {
    margin-left: 16.66667%;
}
.etilize-rich-content .col-xs-offset-3 {
    margin-left: 25%;
}
.etilize-rich-content .col-xs-offset-4 {
    margin-left: 33.33333%;
}
.etilize-rich-content .col-xs-offset-5 {
    margin-left: 41.66667%;
}
.etilize-rich-content .col-xs-offset-6 {
    margin-left: 50%;
}
.etilize-rich-content .col-xs-offset-7 {
    margin-left: 58.33333%;
}
.etilize-rich-content .col-xs-offset-8 {
    margin-left: 66.66667%;
}
.etilize-rich-content .col-xs-offset-9 {
    margin-left: 75%;
}
.etilize-rich-content .col-xs-offset-10 {
    margin-left: 83.33333%;
}
.etilize-rich-content .col-xs-offset-11 {
    margin-left: 91.66667%;
}
.etilize-rich-content .col-xs-offset-12 {
    margin-left: 100%;
}
@media (min-width: 528px) {
    .etilize-rich-content .col-sm-1, .etilize-rich-content .col-sm-2, .etilize-rich-content .col-sm-3, .etilize-rich-content .col-sm-4, .etilize-rich-content .col-sm-5, .etilize-rich-content .col-sm-6, .etilize-rich-content .col-sm-7, .etilize-rich-content .col-sm-8, .etilize-rich-content .col-sm-9, .etilize-rich-content .col-sm-10, .etilize-rich-content .col-sm-11, .etilize-rich-content .col-sm-12 {
        float: left;
    }
    .etilize-rich-content .col-sm-1 {
        width: 8.33333%;
    }
    .etilize-rich-content .col-sm-2 {
        width: 16.66667%;
    }
    .etilize-rich-content .col-sm-3 {
        width: 25%;
    }
    .etilize-rich-content .col-sm-4 {
        width: 33.33333%;
    }
    .etilize-rich-content .col-sm-5 {
        width: 41.66667%;
    }
    .etilize-rich-content .col-sm-6 {
        width: 50%;
    }
    .etilize-rich-content .col-sm-7 {
        width: 58.33333%;
    }
    .etilize-rich-content .col-sm-8 {
        width: 66.66667%;
    }
    .etilize-rich-content .col-sm-9 {
        width: 75%;
    }
    .etilize-rich-content .col-sm-10 {
        width: 83.33333%;
    }
    .etilize-rich-content .col-sm-11 {
        width: 91.66667%;
    }
    .etilize-rich-content .col-sm-12 {
        width: 100%;
    }
    .etilize-rich-content .col-sm-pull-0 {
        right: auto;
    }
    .etilize-rich-content .col-sm-pull-1 {
        right: 8.33333%;
    }
    .etilize-rich-content .col-sm-pull-2 {
        right: 16.66667%;
    }
    .etilize-rich-content .col-sm-pull-3 {
        right: 25%;
    }
    .etilize-rich-content .col-sm-pull-4 {
        right: 33.33333%;
    }
    .etilize-rich-content .col-sm-pull-5 {
        right: 41.66667%;
    }
    .etilize-rich-content .col-sm-pull-6 {
        right: 50%;
    }
    .etilize-rich-content .col-sm-pull-7 {
        right: 58.33333%;
    }
    .etilize-rich-content .col-sm-pull-8 {
        right: 66.66667%;
    }
    .etilize-rich-content .col-sm-pull-9 {
        right: 75%;
    }
    .etilize-rich-content .col-sm-pull-10 {
        right: 83.33333%;
    }
    .etilize-rich-content .col-sm-pull-11 {
        right: 91.66667%;
    }
    .etilize-rich-content .col-sm-pull-12 {
        right: 100%;
    }
    .etilize-rich-content .col-sm-push-0 {
        left: auto;
    }
    .etilize-rich-content .col-sm-push-1 {
        left: 8.33333%;
    }
    .etilize-rich-content .col-sm-push-2 {
        left: 16.66667%;
    }
    .etilize-rich-content .col-sm-push-3 {
        left: 25%;
    }
    .etilize-rich-content .col-sm-push-4 {
        left: 33.33333%;
    }
    .etilize-rich-content .col-sm-push-5 {
        left: 41.66667%;
    }
    .etilize-rich-content .col-sm-push-6 {
        left: 50%;
    }
    .etilize-rich-content .col-sm-push-7 {
        left: 58.33333%;
    }
    .etilize-rich-content .col-sm-push-8 {
        left: 66.66667%;
    }
    .etilize-rich-content .col-sm-push-9 {
        left: 75%;
    }
    .etilize-rich-content .col-sm-push-10 {
        left: 83.33333%;
    }
    .etilize-rich-content .col-sm-push-11 {
        left: 91.66667%;
    }
    .etilize-rich-content .col-sm-push-12 {
        left: 100%;
    }
    .etilize-rich-content .col-sm-offset-0 {
        margin-left: 0%;
    }
    .etilize-rich-content .col-sm-offset-1 {
        margin-left: 8.33333%;
    }
    .etilize-rich-content .col-sm-offset-2 {
        margin-left: 16.66667%;
    }
    .etilize-rich-content .col-sm-offset-3 {
        margin-left: 25%;
    }
    .etilize-rich-content .col-sm-offset-4 {
        margin-left: 33.33333%;
    }
    .etilize-rich-content .col-sm-offset-5 {
        margin-left: 41.66667%;
    }
    .etilize-rich-content .col-sm-offset-6 {
        margin-left: 50%;
    }
    .etilize-rich-content .col-sm-offset-7 {
        margin-left: 58.33333%;
    }
    .etilize-rich-content .col-sm-offset-8 {
        margin-left: 66.66667%;
    }
    .etilize-rich-content .col-sm-offset-9 {
        margin-left: 75%;
    }
    .etilize-rich-content .col-sm-offset-10 {
        margin-left: 83.33333%;
    }
    .etilize-rich-content .col-sm-offset-11 {
        margin-left: 91.66667%;
    }
    .etilize-rich-content .col-sm-offset-12 {
        margin-left: 100%;
    }
}
@media (max-width: 527px) {
    .etilize-rich-content .col-md-1,
    .etilize-rich-content .col-md-2,
    .etilize-rich-content .col-md-3,
    .etilize-rich-content .col-md-4,
    .etilize-rich-content .col-md-5,
    .etilize-rich-content .col-md-6,
    .etilize-rich-content .col-md-7,
    .etilize-rich-content .col-md-8,
    .etilize-rich-content .col-md-9,
    .etilize-rich-content .col-md-10,
    .etilize-rich-content .col-md-11,
    .etilize-rich-content .col-md-12 {
        width: 100%;
        float: none;
    }
}
@media (min-width: 528px) {
    .etilize-rich-content .col-md-1, .etilize-rich-content .col-md-2, .etilize-rich-content .col-md-3, .etilize-rich-content .col-md-4, .etilize-rich-content .col-md-5, .etilize-rich-content .col-md-6, .etilize-rich-content .col-md-7, .etilize-rich-content .col-md-8, .etilize-rich-content .col-md-9, .etilize-rich-content .col-md-10, .etilize-rich-content .col-md-11, .etilize-rich-content .col-md-12 {
        float: left;
    }
    .etilize-rich-content .col-md-1 {
        width: 8.33333%;
    }
    .etilize-rich-content .col-md-2 {
        width: 16.66667%;
    }
    .etilize-rich-content .col-md-3 {
        width: 25%;
    }
    .etilize-rich-content .col-md-4 {
        width: 33.33333%;
    }
    .etilize-rich-content .col-md-5 {
        width: 41.66667%;
    }
    .etilize-rich-content .col-md-6 {
        width: 50%;
    }
    .etilize-rich-content .col-md-7 {
        width: 58.33333%;
    }
    .etilize-rich-content .col-md-8 {
        width: 66.66667%;
    }
    .etilize-rich-content .col-md-9 {
        width: 75%;
    }
    .etilize-rich-content .col-md-10 {
        width: 83.33333%;
    }
    .etilize-rich-content .col-md-11 {
        width: 91.66667%;
    }
    .etilize-rich-content .col-md-12 {
        width: 100%;
    }
    .etilize-rich-content .col-md-pull-0 {
        right: auto;
    }
    .etilize-rich-content .col-md-pull-1 {
        right: 8.33333%;
    }
    .etilize-rich-content .col-md-pull-2 {
        right: 16.66667%;
    }
    .etilize-rich-content .col-md-pull-3 {
        right: 25%;
    }
    .etilize-rich-content .col-md-pull-4 {
        right: 33.33333%;
    }
    .etilize-rich-content .col-md-pull-5 {
        right: 41.66667%;
    }
    .etilize-rich-content .col-md-pull-6 {
        right: 50%;
    }
    .etilize-rich-content .col-md-pull-7 {
        right: 58.33333%;
    }
    .etilize-rich-content .col-md-pull-8 {
        right: 66.66667%;
    }
    .etilize-rich-content .col-md-pull-9 {
        right: 75%;
    }
    .etilize-rich-content .col-md-pull-10 {
        right: 83.33333%;
    }
    .etilize-rich-content .col-md-pull-11 {
        right: 91.66667%;
    }
    .etilize-rich-content .col-md-pull-12 {
        right: 100%;
    }
    .etilize-rich-content .col-md-push-0 {
        left: auto;
    }
    .etilize-rich-content .col-md-push-1 {
        left: 8.33333%;
    }
    .etilize-rich-content .col-md-push-2 {
        left: 16.66667%;
    }
    .etilize-rich-content .col-md-push-3 {
        left: 25%;
    }
    .etilize-rich-content .col-md-push-4 {
        left: 33.33333%;
    }
    .etilize-rich-content .col-md-push-5 {
        left: 41.66667%;
    }
    .etilize-rich-content .col-md-push-6 {
        left: 50%;
    }
    .etilize-rich-content .col-md-push-7 {
        left: 58.33333%;
    }
    .etilize-rich-content .col-md-push-8 {
        left: 66.66667%;
    }
    .etilize-rich-content .col-md-push-9 {
        left: 75%;
    }
    .etilize-rich-content .col-md-push-10 {
        left: 83.33333%;
    }
    .etilize-rich-content .col-md-push-11 {
        left: 91.66667%;
    }
    .etilize-rich-content .col-md-push-12 {
        left: 100%;
    }
    .etilize-rich-content .col-md-offset-0 {
        margin-left: 0%;
    }
    .etilize-rich-content .col-md-offset-1 {
        margin-left: 8.33333%;
    }
    .etilize-rich-content .col-md-offset-2 {
        margin-left: 16.66667%;
    }
    .etilize-rich-content .col-md-offset-3 {
        margin-left: 25%;
    }
    .etilize-rich-content .col-md-offset-4 {
        margin-left: 33.33333%;
    }
    .etilize-rich-content .col-md-offset-5 {
        margin-left: 41.66667%;
    }
    .etilize-rich-content .col-md-offset-6 {
        margin-left: 50%;
    }
    .etilize-rich-content .col-md-offset-7 {
        margin-left: 58.33333%;
    }
    .etilize-rich-content .col-md-offset-8 {
        margin-left: 66.66667%;
    }
    .etilize-rich-content .col-md-offset-9 {
        margin-left: 75%;
    }
    .etilize-rich-content .col-md-offset-10 {
        margin-left: 83.33333%;
    }
    .etilize-rich-content .col-md-offset-11 {
        margin-left: 91.66667%;
    }
    .etilize-rich-content .col-md-offset-12 {
        margin-left: 100%;
    }
}
@media (min-width: 780px) {
    .etilize-rich-content .col-lg-1, .etilize-rich-content .col-lg-2, .etilize-rich-content .col-lg-3, .etilize-rich-content .col-lg-4, .etilize-rich-content .col-lg-5, .etilize-rich-content .col-lg-6, .etilize-rich-content .col-lg-7, .etilize-rich-content .col-lg-8, .etilize-rich-content .col-lg-9, .etilize-rich-content .col-lg-10, .etilize-rich-content .col-lg-11, .etilize-rich-content .col-lg-12 {
        float: left;
    }
    .etilize-rich-content .col-lg-1 {
        width: 8.33333%;
    }
    .etilize-rich-content .col-lg-2 {
        width: 16.66667%;
    }
    .etilize-rich-content .col-lg-3 {
        width: 25%;
    }
    .etilize-rich-content .col-lg-4 {
        width: 33.33333%;
    }
    .etilize-rich-content .col-lg-5 {
        width: 41.66667%;
    }
    .etilize-rich-content .col-lg-6 {
        width: 50%;
    }
    .etilize-rich-content .col-lg-7 {
        width: 58.33333%;
    }
    .etilize-rich-content .col-lg-8 {
        width: 66.66667%;
    }
    .etilize-rich-content .col-lg-9 {
        width: 75%;
    }
    .etilize-rich-content .col-lg-10 {
        width: 83.33333%;
    }
    .etilize-rich-content .col-lg-11 {
        width: 91.66667%;
    }
    .etilize-rich-content .col-lg-12 {
        width: 100%;
    }
    .etilize-rich-content .col-lg-pull-0 {
        right: auto;
    }
    .etilize-rich-content .col-lg-pull-1 {
        right: 8.33333%;
    }
    .etilize-rich-content .col-lg-pull-2 {
        right: 16.66667%;
    }
    .etilize-rich-content .col-lg-pull-3 {
        right: 25%;
    }
    .etilize-rich-content .col-lg-pull-4 {
        right: 33.33333%;
    }
    .etilize-rich-content .col-lg-pull-5 {
        right: 41.66667%;
    }
    .etilize-rich-content .col-lg-pull-6 {
        right: 50%;
    }
    .etilize-rich-content .col-lg-pull-7 {
        right: 58.33333%;
    }
    .etilize-rich-content .col-lg-pull-8 {
        right: 66.66667%;
    }
    .etilize-rich-content .col-lg-pull-9 {
        right: 75%;
    }
    .etilize-rich-content .col-lg-pull-10 {
        right: 83.33333%;
    }
    .etilize-rich-content .col-lg-pull-11 {
        right: 91.66667%;
    }
    .etilize-rich-content .col-lg-pull-12 {
        right: 100%;
    }
    .etilize-rich-content .col-lg-push-0 {
        left: auto;
    }
    .etilize-rich-content .col-lg-push-1 {
        left: 8.33333%;
    }
    .etilize-rich-content .col-lg-push-2 {
        left: 16.66667%;
    }
    .etilize-rich-content .col-lg-push-3 {
        left: 25%;
    }
    .etilize-rich-content .col-lg-push-4 {
        left: 33.33333%;
    }
    .etilize-rich-content .col-lg-push-5 {
        left: 41.66667%;
    }
    .etilize-rich-content .col-lg-push-6 {
        left: 50%;
    }
    .etilize-rich-content .col-lg-push-7 {
        left: 58.33333%;
    }
    .etilize-rich-content .col-lg-push-8 {
        left: 66.66667%;
    }
    .etilize-rich-content .col-lg-push-9 {
        left: 75%;
    }
    .etilize-rich-content .col-lg-push-10 {
        left: 83.33333%;
    }
    .etilize-rich-content .col-lg-push-11 {
        left: 91.66667%;
    }
    .etilize-rich-content .col-lg-push-12 {
        left: 100%;
    }
    .etilize-rich-content .col-lg-offset-0 {
        margin-left: 0%;
    }
    .etilize-rich-content .col-lg-offset-1 {
        margin-left: 8.33333%;
    }
    .etilize-rich-content .col-lg-offset-2 {
        margin-left: 16.66667%;
    }
    .etilize-rich-content .col-lg-offset-3 {
        margin-left: 25%;
    }
    .etilize-rich-content .col-lg-offset-4 {
        margin-left: 33.33333%;
    }
    .etilize-rich-content .col-lg-offset-5 {
        margin-left: 41.66667%;
    }
    .etilize-rich-content .col-lg-offset-6 {
        margin-left: 50%;
    }
    .etilize-rich-content .col-lg-offset-7 {
        margin-left: 58.33333%;
    }
    .etilize-rich-content .col-lg-offset-8 {
        margin-left: 66.66667%;
    }
    .etilize-rich-content .col-lg-offset-9 {
        margin-left: 75%;
    }
    .etilize-rich-content .col-lg-offset-10 {
        margin-left: 83.33333%;
    }
    .etilize-rich-content .col-lg-offset-11 {
        margin-left: 91.66667%;
    }
    .etilize-rich-content .col-lg-offset-12 {
        margin-left: 100%;
    }
}
.etilize-rich-content .clearfix:before, .etilize-rich-content .clearfix:after {
    content: " ";
    display: table;
}
.etilize-rich-content .clearfix:after {
    clear: both;
}
.etilize-rich-content .center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.etilize-rich-content .pull-right {
    float: right !important;
}
.etilize-rich-content .pull-left {
    float: left !important;
}
.etilize-rich-content .hide {
    display: none !important;
}
.etilize-rich-content .show {
    display: block !important;
}
.etilize-rich-content .invisible {
    visibility: hidden;
}
.etilize-rich-content .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.etilize-rich-content .hidden {
    display: none !important;
}
.etilize-rich-content .affix {
    position: fixed;
}
@-ms-viewport {
    width: device-width;
}
.etilize-rich-content .visible-xs {
    display: none !important;
}
.etilize-rich-content .visible-sm {
    display: none !important;
}
.etilize-rich-content .visible-md {
    display: none !important;
}
.etilize-rich-content .visible-lg {
    display: none !important;
}
.etilize-rich-content .visible-xs-block, .etilize-rich-content .visible-xs-inline, .etilize-rich-content .visible-xs-inline-block, .etilize-rich-content .visible-sm-block, .etilize-rich-content .visible-sm-inline, .etilize-rich-content .visible-sm-inline-block, .etilize-rich-content .visible-md-block, .etilize-rich-content .visible-md-inline, .etilize-rich-content .visible-md-inline-block, .etilize-rich-content .visible-lg-block, .etilize-rich-content .visible-lg-inline, .etilize-rich-content .visible-lg-inline-block {
    display: none !important;
}
@media (max-width: 527px) {
    .etilize-rich-content .visible-xs {
        display: block !important;
    }
    .etilize-rich-content table.visible-xs {
        display: table !important;
    }
    .etilize-rich-content tr.visible-xs {
        display: table-row !important;
    }
    .etilize-rich-content th.visible-xs, .etilize-rich-content td.visible-xs {
        display: table-cell !important;
    }
}
@media (max-width: 527px) {
    .etilize-rich-content .visible-xs-block {
        display: block !important;
    }
}
@media (max-width: 527px) {
    .etilize-rich-content .visible-xs-inline {
        display: inline !important;
    }
}
@media (max-width: 527px) {
    .etilize-rich-content .visible-xs-inline-block {
        display: inline-block !important;
    }
}
@media (min-width: 528px) and (max-width: 644px) {
    .etilize-rich-content .visible-sm {
        display: block !important;
    }
    .etilize-rich-content table.visible-sm {
        display: table !important;
    }
    .etilize-rich-content tr.visible-sm {
        display: table-row !important;
    }
    .etilize-rich-content th.visible-sm, .etilize-rich-content td.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 528px) and (max-width: 644px) {
    .etilize-rich-content .visible-sm-block {
        display: block !important;
    }
}
@media (min-width: 528px) and (max-width: 644px) {
    .etilize-rich-content .visible-sm-inline {
        display: inline !important;
    }
}
@media (min-width: 528px) and (max-width: 644px) {
    .etilize-rich-content .visible-sm-inline-block {
        display: inline-block !important;
    }
}
@media (min-width: 645px) and (max-width: 779px) {
    .etilize-rich-content .visible-md {
        display: block !important;
    }
    .etilize-rich-content table.visible-md {
        display: table !important;
    }
    .etilize-rich-content tr.visible-md {
        display: table-row !important;
    }
    .etilize-rich-content th.visible-md, .etilize-rich-content td.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 645px) and (max-width: 779px) {
    .etilize-rich-content .visible-md-block {
        display: block !important;
    }
}
@media (min-width: 645px) and (max-width: 779px) {
    .etilize-rich-content .visible-md-inline {
        display: inline !important;
    }
}
@media (min-width: 645px) and (max-width: 779px) {
    .etilize-rich-content .visible-md-inline-block {
        display: inline-block !important;
    }
}
@media (min-width: 780px) {
    .etilize-rich-content .visible-lg {
        display: block !important;
    }
    .etilize-rich-content table.visible-lg {
        display: table !important;
    }
    .etilize-rich-content tr.visible-lg {
        display: table-row !important;
    }
    .etilize-rich-content th.visible-lg, .etilize-rich-content td.visible-lg {
        display: table-cell !important;
    }
}
@media (min-width: 780px) {
    .etilize-rich-content .visible-lg-block {
        display: block !important;
    }
}
@media (min-width: 780px) {
    .etilize-rich-content .visible-lg-inline {
        display: inline !important;
    }
}
@media (min-width: 780px) {
    .etilize-rich-content .visible-lg-inline-block {
        display: inline-block !important;
    }
}
@media (max-width: 527px) {
    .etilize-rich-content .hidden-xs {
        display: none !important;
    }
}
@media (min-width: 528px) and (max-width: 644px) {
    .etilize-rich-content .hidden-sm {
        display: none !important;
    }
}
@media (min-width: 645px) and (max-width: 779px) {
    .etilize-rich-content .hidden-md {
        display: none !important;
    }
}
@media (min-width: 780px) {
    .etilize-rich-content .hidden-lg {
        display: none !important;
    }
}
.etilize-rich-content .visible-print {
    display: none !important;
}
@media print {
    .etilize-rich-content .visible-print {
        display: block !important;
    }
    .etilize-rich-content table.visible-print {
        display: table !important;
    }
    .etilize-rich-content tr.visible-print {
        display: table-row !important;
    }
    .etilize-rich-content th.visible-print, .etilize-rich-content td.visible-print {
        display: table-cell !important;
    }
}
.etilize-rich-content .visible-print-block {
    display: none !important;
}
@media print {
    .etilize-rich-content .visible-print-block {
        display: block !important;
    }
}
.etilize-rich-content .visible-print-inline {
    display: none !important;
}
@media print {
    .etilize-rich-content .visible-print-inline {
        display: inline !important;
    }
}
.etilize-rich-content .visible-print-inline-block {
    display: none !important;
}
@media print {
    .etilize-rich-content .visible-print-inline-block {
        display: inline-block !important;
    }
}
@media print {
    .etilize-rich-content .hidden-print {
        display: none !important;
    }
}
.etilize-rich-content .h1, .etilize-rich-content .h2, .etilize-rich-content .h3, .etilize-rich-content h1, .etilize-rich-content h2, .etilize-rich-content h3, .etilize-rich-content p, .etilize-rich-content footer {
    margin-top: 0.8em;
    display: block;
}
.etilize-rich-content .image-holder {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
}
.etilize-rich-content .image-holder img {
    width: 100%;
    height: auto;
}

.etilize-rich-content .auto-width .banners,
.etilize-rich-content .auto-width .slide .bg-image-container {
    width: 100%;
    height: auto;
}

.etilize-rich-content .full-width .banners,
.etilize-rich-content .full-width .bg-image-container {
    width: 100%;
    height: auto;
}
/* banners height need to be specified from js
  Reason: because parent with relative position does not get height from its children which are absolute positioned
*/
.etilize-rich-content .rc-template.auto-width .banners {
    position: relative;
    margin: auto;
}

.etilize-rich-content .rc-template.full-width .banners.visible {
    /*,
    .etilize-rich-content .rc-template.full-width .banners > div {*/
    display: flex;
    width: 100%;
}

.etilize-rich-content .rc-template.full-width .banners {
    margin-left: 0;
    margin-right: 0;
    display: none;
}

.etilize-rich-content .rc-template.full-width .banners > div {
    padding-left: 0;
    padding-right: 0;

    display: grid;
    grid-template-columns: 1fr;
}

.etilize-rich-content .rc-template.full-width .bg-image-container .bg-image-holder {
    text-align: center;
    height: auto;
}

.etilize-rich-content .rc-template.auto-width .bg-image-container .bg-image-holder {
    text-align: center;
    height: auto;
}

.etilize-rich-content .rc-template.auto-width .bg-image-container .bg-image-holder.bg-no-image {
    height: 100%;
}

.etilize-rich-content .rc-template.full-width .bg-image-container .bg-image-holder img {
    width: 100%;
    height: auto;
}

.etilize-rich-content .rc-template.auto-width .bg-image-container .bg-image-holder img {
    width: auto;
    height: auto;
    max-height: 600px;
    max-width: 100%;
}

.etilize-rich-content .image-text .editable {
    padding: 10px 20px;
}

/*
@media (max-width: 779px) {
  .etilize-rich-content .image-text .editable {
    padding: 0px;
  }
}
*/

.etilize-rich-content .image-text .editable.content-empty {
    padding: 0;
}

.etilize-rich-content .image-text {
    position: absolute;
    margin: 10px;
}
.etilize-rich-content .image-text.bottom-left {
    bottom: 0px;
    left: 14px;
    max-width: 50%; /*to limit the text width */
}
.etilize-rich-content .image-text.bottom-right {
    bottom: 0px;
    right: 14px;
    max-width: 50%; /*to limit the text width */
}
.etilize-rich-content .image-text.bottom-center {
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0%);
}
.etilize-rich-content .image-text.top-left {
    top: 0px;
    left: 14px;
    max-width: 50%; /*to limit the text width */
    transform: translate(0%, 0%);
}
.etilize-rich-content .image-text.top-right {
    top: 0px;
    right: 14px;
    max-width: 50%; /*to limit the text width */
    transform: translate(0%, 0%);
}
.etilize-rich-content .image-text.top-center {
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0%);
}
.etilize-rich-content .image-text.middle-left {
    top: 50%;
    left: 14px;
    max-width: 50%; /*to limit the text width */
    transform: translate(0%, -50%);
}
.etilize-rich-content .image-text.middle-right {
    top: 50%;
    right: 14px;
    max-width: 50%; /*to limit the text width */
    transform: translate(0%, -50%);
}
.etilize-rich-content .image-text.middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* image text color properties */
.etilize-rich-content .bg-fill-black {
    background-color: black;
    color: white;
}
.etilize-rich-content .bg-fill-transparent {
    background-color: transparent;
    color: black;
}
.etilize-rich-content .bg-fill-white {
    background-color: white;
    color: black;
}
.etilize-rich-content .bg-fill-dark-grey {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}
.etilize-rich-content .bg-fill-light-grey {
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
}

@media (min-width: 940px) {
    .etilize-rich-content > .rc-template .image-text {
        font-size: 16px;
    }
}

@media (min-width: 700px) and (max-width: 940px) {
    .etilize-rich-content > .rc-template .image-text {
        font-size: 14px;
    }
}

@media (min-width: 560px) and (max-width: 700px) {
    .etilize-rich-content > .rc-template .image-text {
        font-size: 12px;
    }
}

@media (min-width: 350px) and (max-width: 560px) {
    .etilize-rich-content > .rc-template .image-text {
        font-size: 10px;
    }
}

.etilize-rich-content .image-text .h1, .etilize-rich-content .image-text .h2, .etilize-rich-content .image-text .h3, .etilize-rich-content .image-text h1, .etilize-rich-content .image-text h2, .etilize-rich-content .image-text h3, .etilize-rich-content .image-text p, .etilize-rich-content .image-text footer {
    margin-top: 0;
    margin-bottom: 0;
}
.etilize-rich-content .rc-template.auto-width .banners .slide {
    position: absolute;
    top: 0;
    left: 0;
    margin-right: 10px;
    width: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

.etilize-rich-content .rc-template.full-width .banners > div {
    display: grid;
    grid-template-columns: 1fr;
}

.etilize-rich-content .rc-template.full-width .banners .slide {
    /* -- properties to use in case grid not be used--*/
    /*margin-left: -100%; *//*required*/
    /*text-align: center;*/
    /*width: 100%; *//*required*/
    /*flex: none; *//*required*/

    opacity: 0;
    /*visibility: hidden;*/

    grid-column-start: 1;
    grid-row-start: 1;
    z-index: 2;
}

.etilize-rich-content .rc-template .banners .slide.active {
    opacity: 1;
}
.etilize-rich-content .rc-template.full-width .banners .slide.active {
    /*margin-left: 0;*/
    /*visibility: visible;*/
    z-index: 10;
}

.etilize-rich-content .rc-template.full-width .banners .slide.animate_fadeOut {
    transition-property: visibility, opacity, margin-left;
    transition-duration: 0s, 2s, 0s;
    transition-timing-function: linear;
    transition-delay: 1s, 0s, 1s;
}

.etilize-rich-content .rc-template.full-width .banners .slide.animate_fadeIn {
    /*transition: visibility 1s ease-in-out 2s , opacity 2s ease-in-out 0s;*/
    /*transition: opacity 2s ease-in-out;*/

    /*transition: opacity 2s linear;*/

    transition-property: visibility, opacity, margin-left;
    transition-duration: 2s, 2s, 0s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s, 0s, 0s;
}

.etilize-rich-content .rc-template.auto-width .animate_fadeOut {
    /*  animation-name: fadeOut;
      animation-fill-mode: none;*/
    transition: all 2s ease-out;
}

/*
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
*/

.etilize-rich-content .rc-template.auto-width .animate_fadeIn {
    transition: opacity 2s ease-in-out;
}

/*
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
*/

/* -- SLIDER - NAVIGATION -- */

.etilize-rich-content .banner-nav-wrapper {
    min-width: fit-content;
    padding: 4px;
    text-align: center;
    margin: 0 0;
}
/* -- SLIDER - NAVIGATION ARROWS -- */

/* .etilize-rich-content .rc-template .banner-nav-arrows {
  display:inline-block;
  width: 20px;
  height: 20px;

  cursor: pointer;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);

  border: 4px solid white;
}

.etilize-rich-content .rc-template .banner-nav-arrows.prev {
  border-top: none;
  border-right: none;
}

.etilize-rich-content .rc-template .banner-nav-arrows.next {
  border-bottom: none;
  border-left: none;
} */

/* -- SLIDER - NAVEGATION DOTS -- */

.etilize-rich-content .banner-nav-dots {
    margin: 0px 8px;
    display: inline-block;
    text-align: justify;
}
.etilize-rich-content .banner-nav-dots::after {
    content: '';
    width: 100%;
    display: inline-block;
}
.etilize-rich-content .banner-nav-dots div {
    display: inline-block;
    width: 8px;
    height: 8px;
    cursor: pointer;
    border-radius: 50%;
    background: #b3b3b3;
}

.etilize-rich-content .banner-nav-dots .active:after {
    float: left;
    width: 8px;
    height: 8px;
    content: '';
    border-radius: 50%;
    background: white;
    mix-blend-mode: difference;
}

@media (min-width: 992px){
    .etilize-rich-content .banner-nav-dots .active:after {
        width: 14px;
        height: 14px;
    }
    .etilize-rich-content .banner-nav-dots div {
        width: 14px;
        height: 14px;
    }
}

@media (min-width: 200px){
    .etilize-rich-content .banner-nav-dots div {
        margin: 4px 0.5em;
    }
}
@media (min-width: 350px) {
    .etilize-rich-content .banner-nav-dots div {
        margin: 4px 1em;
    }
}
@media (min-width: 650px){
    .etilize-rich-content .banner-nav-dots div {
        margin: 4px 1.5em;
    }
}

.etilize-rich-content .grey-bg {
    background-color: #eee;
}
.etilize-rich-content .video-holder {
    width: 100%;
    position: relative;
}
.etilize-rich-content .video-holder:before {
    content: '';
    display: block;
    padding-top: 56.52%;
}
.etilize-rich-content .video-holder iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.etilize-rich-content .icon-cell {
    text-align: center;
}
.etilize-rich-content .icon-cell .image-holder {
    display: inline-block;
    width: 85px;
    height: auto;
    margin: 15px 20px;
}
.etilize-rich-content footer {
    text-align: center;
    font-style: italic;
}
.etilize-rich-content .hide-caption{
    display: none;
}

.etilize-rich-content .video-holder video {
    width:100%;
    height:100%;
    position: absolute;
    top: 0;
    bottom:0;
    left:0;
    right:0;
    object-fit: cover;
}
/*redactor dropdown height adjust*/

.redactor-body-fullscreen .redactor-context-toolbar, .redactor-body-fullscreen .redactor-dropdown {
    top: 54px !important;
}#spex-ct-preview-container {
     overflow: auto;
     width: 100%;
 }

.spex-ct-paginator {
    background-color: #F5F6FA;
    border-bottom: 1px solid #D9DDF2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: 0px;
    z-index: 999;
    justify-content: space-between;
    padding-inline: 24px;
    position: sticky;
}

.spex-ct-paginator a {
    text-decoration: none;
    display: inline-block;
    padding: 6px 7px;
}

.spex-ct-paginator a:hover {
    background-color: #e3591c;
    color: #000000 !important;
}

.spex-ct-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.spex-ct-paginator .spex-ct-previous {
    background-color: #00000000;
    color: #e3591c;
    position: sticky;
    right: 50px;
    font-size: 20px;
}

.spex-ct-paginator .next {
    background-color: #00000000;
    color: #e3591c;
    position: sticky;
    right: 16px;
    font-size: 20px;
}

.spex-ct-paginator .spex-ct-round {
    border-radius: 50%;
    border:none;
    font-size: 20px;
}

table.spex-ct-compare-table {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #646c9a;
    display: table;
    width: 100%;
    border-collapse: separate;
    margin-bottom: 20px;
    background-color: white;
    margin: 0;
}

table.spex-ct-compare-table tr th,
table.spex-ct-compare-table tr td {
    border-right: 1px solid #D9DDF2;
    padding: 12px;
    text-align: left;
    vertical-align: top;
    width:16.66% !important;
    line-height: 1.5;
}

table.spex-ct-compare-table tr th {
    background-color: #f2f2f2;
    position: sticky;
    top: 0;
    z-index: 2;
}

table.spex-ct-compare-table tr td {
    background-color: white;
}

table.spex-ct-compare-table tr:first-child td {
    background-color: #fff !important;
    border-top: 0;
    text-align: center !important;
    vertical-align: middle !important;
    width:16.66% !important;
}

table.spex-ct-compare-table tr td:first-child,
table.spex-ct-compare-table tr th:first-child {
    background-color: #f5f6fa;
    color: #4F5572;
    font-weight: 600;
    position: sticky;
    left: 0;
    z-index: 1;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

table.spex-ct-compare-table tbody tr:first-child {
    position: sticky;
    top: 56px;
    z-index: 2;
}

table.spex-ct-compare-table tbody:first-child tr {
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);

}

@media (min-width: 300px) and (max-width: 720px) {
    /* Responsive styles for tablets and phones */
    table.spex-ct-compare-table tr th,
    table.spex-ct-compare-table tr td {
        font-size: 10px;
        padding: 10px;
    }

    .img-responsive {
        width: 53% !important;
        min-width: 25% !important;
        height: 48%;
    }
}

@media (min-width: 721px) and (max-width: 1010px) {

    /* Responsive styles for small desktop screens */
    table.spex-ct-compare-table tr th,
    table.spex-ct-compare-table tr td {
        font-size: 12px;
    }

    .img-responsive {
        width: 75% !important;
        min-width: 47% !important;
        height: 50%;
    }
}

@media (min-width: 1011px) and (max-width: 2024px) {
    /* Larger desktop screens */
    table.spex-ct-compare-table tr th,
    table.spex-ct-compare-table tr td {
        font-size: 14px;
    }

    .img-responsive {
        /*display: block;*/
        width: 55% !important;
        min-width: 27% !important;
        height: 50%;
    }
}

ul.spex-ct-breadcrumb {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding: 0;
}

ul.spex-ct-breadcrumb li {display: inline;}

ul.spex-ct-breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "|";
}
.etilize-rich-content .image-holder:not(.icon-cell .image-holder) {
    margin-top: 0px !important;
    margin-bottom: 0px !important;

}

.etilize-rich-content p {
    font-size: 16px !important;
    font-family: Source Sans Pro, sans-serif !important;
    color: #3d3d3d !important;
    line-height: 20px;
    font-size: 100% !important;
    min-height: 24px;

}

.etilize-rich-content .col-xs-1:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-1):not(:has(.editable p)),
.etilize-rich-content .col-sm-1:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-1):not(:has(.editable p)),
.etilize-rich-content .col-md-1:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-1):not(:has(.editable p)),
.etilize-rich-content .col-lg-1:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-1):not(:has(.editable p)),
.etilize-rich-content .col-xs-2:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-2):not(:has(.editable p)),
.etilize-rich-content .col-sm-2:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-2):not(:has(.editable p)),
.etilize-rich-content .col-md-2:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-2):not(:has(.editable p)),
.etilize-rich-content .col-lg-2:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-2):not(:has(.editable p)),
.etilize-rich-content .col-xs-3:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-3):not(:has(.editable p)),
.etilize-rich-content .col-sm-3:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-3):not(:has(.editable p)),
.etilize-rich-content .col-md-3:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-3):not(:has(.editable p)),
.etilize-rich-content .col-lg-3:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-3):not(:has(.editable p)),
.etilize-rich-content .col-xs-4:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-4):not(:has(.editable p)),
.etilize-rich-content .col-sm-4:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-4):not(:has(.editable p)),
.etilize-rich-content .col-md-4:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-4):not(:has(.editable p)),
.etilize-rich-content .col-lg-4:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-4):not(:has(.editable p)),
.etilize-rich-content .col-xs-5:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-5):not(:has(.editable p)),
.etilize-rich-content .col-sm-5:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-5):not(:has(.editable p)),
.etilize-rich-content .col-md-5:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-5):not(:has(.editable p)),
.etilize-rich-content .col-lg-5:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-5):not(:has(.editable p)),
.etilize-rich-content .col-xs-6:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-6):not(:has(.editable p)),
.etilize-rich-content .col-sm-6:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-6):not(:has(.editable p)),
.etilize-rich-content .col-md-6:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-6):not(:has(.editable p)),
.etilize-rich-content .col-lg-6:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-6):not(:has(.editable p)),
.etilize-rich-content .col-xs-7:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-7):not(:has(.editable p)),
.etilize-rich-content .col-sm-7:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-7):not(:has(.editable p)),
.etilize-rich-content .col-md-7:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-7):not(:has(.editable p)),
.etilize-rich-content .col-lg-7:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-7):not(:has(.editable p)),
.etilize-rich-content .col-xs-8:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-8):not(:has(.editable p)),
.etilize-rich-content .col-sm-8:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-8):not(:has(.editable p)),
.etilize-rich-content .col-md-8:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-8):not(:has(.editable p)),
.etilize-rich-content .col-lg-8:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-8):not(:has(.editable p)),
.etilize-rich-content .col-xs-9:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-9):not(:has(.editable p)),
.etilize-rich-content .col-sm-9:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-9):not(:has(.editable p)),
.etilize-rich-content .col-md-9:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-9):not(:has(.editable p)),
.etilize-rich-content .col-lg-9:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-9):not(:has(.editable p)),
.etilize-rich-content .col-xs-10:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-10):not(:has(.editable p)),
.etilize-rich-content .col-sm-10:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-10):not(:has(.editable p)),
.etilize-rich-content .col-md-10:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-10):not(:has(.editable p)),
.etilize-rich-content .col-lg-10:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-10):not(:has(.editable p)),
.etilize-rich-content .col-xs-11:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-11):not(:has(.editable p)),
.etilize-rich-content .col-sm-11:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-11):not(:has(.editable p)),
.etilize-rich-content .col-md-11:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-11):not(:has(.editable p)),
.etilize-rich-content .col-lg-11:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-11):not(:has(.editable p)),
.etilize-rich-content .col-xs-12:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-12):not(:has(.editable p)),
.etilize-rich-content .col-sm-12:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-12):not(:has(.editable p)),
.etilize-rich-content .col-md-12:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-12):not(:has(.editable p)),
.etilize-rich-content .col-lg-12:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-12):not(:has(.editable p)) {
    padding-left: 0px !important;
    padding-right: 0px !important;
}


/* // Large Desktop */
@media (min-width: 1200px) {
    .etilize-rich-content .container:not(.template-toolbar .container):not(.editor .container){
        width: 1130px;
    }
}
@media (min-width: 528px) {
    .etilize-rich-content .template-toolbar .container,
    .etilize-rich-content .editor .container{
        width: 100%;
    }
}
@media (min-width: 645px) {
    .etilize-rich-content .template-toolbar .container,
    .etilize-rich-content .editor .container {
        width: 100%;
    }
}
@media (min-width: 780px) {
    .etilize-rich-content .template-toolbar .container,
    .etilize-rich-content .editor .container{
        width: 100%;
    }
}

@media (min-width: 979px) {
    .
    .etilize-rich-content .col-xs-1:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-1):not(:has(.editable p)),
    .etilize-rich-content .col-sm-1:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-1):not(:has(.editable p)),
    .etilize-rich-content .col-md-1:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-1):not(:has(.editable p)),
    .etilize-rich-content .col-lg-1:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-1):not(:has(.editable p)),
    .etilize-rich-content .col-xs-2:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-2):not(:has(.editable p)),
    .etilize-rich-content .col-sm-2:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-2):not(:has(.editable p)),
    .etilize-rich-content .col-md-2:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-2):not(:has(.editable p)),
    .etilize-rich-content .col-lg-2:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-2):not(:has(.editable p)),
    .etilize-rich-content .col-xs-3:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-3):not(:has(.editable p)),
    .etilize-rich-content .col-sm-3:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-3):not(:has(.editable p)),
    .etilize-rich-content .col-md-3:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-3):not(:has(.editable p)),
    .etilize-rich-content .col-lg-3:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-3):not(:has(.editable p)),
    .etilize-rich-content .col-xs-4:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-4):not(:has(.editable p)),
    .etilize-rich-content .col-sm-4:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-4):not(:has(.editable p)),
    .etilize-rich-content .col-md-4:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-4):not(:has(.editable p)),
    .etilize-rich-content .col-lg-4:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-4):not(:has(.editable p)),
    .etilize-rich-content .col-xs-5:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-5):not(:has(.editable p)),
    .etilize-rich-content .col-sm-5:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-5):not(:has(.editable p)),
    .etilize-rich-content .col-md-5:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-5):not(:has(.editable p)),
    .etilize-rich-content .col-lg-5:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-5):not(:has(.editable p)),
    .etilize-rich-content .col-xs-6:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-6):not(:has(.editable p)),
    .etilize-rich-content .col-sm-6:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-6):not(:has(.editable p)),
    .etilize-rich-content .col-md-6:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-6):not(:has(.editable p)),
    .etilize-rich-content .col-lg-6:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-6):not(:has(.editable p)),
    .etilize-rich-content .col-xs-7:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-7):not(:has(.editable p)),
    .etilize-rich-content .col-sm-7:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-7):not(:has(.editable p)),
    .etilize-rich-content .col-md-7:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-7):not(:has(.editable p)),
    .etilize-rich-content .col-lg-7:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-7):not(:has(.editable p)),
    .etilize-rich-content .col-xs-8:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-8):not(:has(.editable p)),
    .etilize-rich-content .col-sm-8:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-8):not(:has(.editable p)),
    .etilize-rich-content .col-md-8:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-8):not(:has(.editable p)),
    .etilize-rich-content .col-lg-8:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-8):not(:has(.editable p)),
    .etilize-rich-content .col-xs-9:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-9):not(:has(.editable p)),
    .etilize-rich-content .col-sm-9:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-9):not(:has(.editable p)),
    .etilize-rich-content .col-md-9:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-9):not(:has(.editable p)),
    .etilize-rich-content .col-lg-9:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-9):not(:has(.editable p)),
    .etilize-rich-content .col-xs-10:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-10):not(:has(.editable p)),
    .etilize-rich-content .col-sm-10:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-10):not(:has(.editable p)),
    .etilize-rich-content .col-md-10:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-10):not(:has(.editable p)),
    .etilize-rich-content .col-lg-10:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-10):not(:has(.editable p)),
    .etilize-rich-content .col-xs-11:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-11):not(:has(.editable p)),
    .etilize-rich-content .col-sm-11:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-11):not(:has(.editable p)),
    .etilize-rich-content .col-md-11:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-11):not(:has(.editable p)),
    .etilize-rich-content .col-lg-11:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-11):not(:has(.editable p)),
    .etilize-rich-content .col-xs-12:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-xs-12):not(:has(.editable p)),
    .etilize-rich-content .col-sm-12:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-sm-12):not(:has(.editable p)),
    .etilize-rich-content .col-md-12:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-md-12):not(:has(.editable p)),
    .etilize-rich-content .col-lg-12:not(.template-toolbar .col-md-12):not(.rc-template-rotating-banner .col-md-12):not(#upload .col-lg-12):not(:has(.editable p)) {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

}

.etilize-rich-content .editor .video-container .click-blocker {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    cursor: pointer;
    color: white;
    font-size: 20px;
    font-weight: bold;
    opacity: 0.1;
    text-align: center;
    margin-top: 5%;
}

.etilize-rich-content .editor .video-container .video-placeholder {
    background: url("../../img/video-placeholder-bb.png") no-repeat center center;
    padding-top: 205px;
    margin-top: 12px;
    width: 100%;
}

.etilize-rich-content .template-toolbar-holder .template-toolbar .tool:hover .image-holder {
    filter: invert(1) !important;
}
.etilize-rich-content .template-toolbar-holder .template-toolbar .tool:hover .bg-image-holder{
    filter: invert(1) !important;
}
.etilize-rich-content .template-toolbar .content-container {
    height: 100%;
}
.etilize-rich-content .template-toolbar-holder .template-toolbar .tool .image-holder {
    height: 100%;
}
.etilize-rich-content .image-holder img {
    height: 100%;
}
.icon-grey {
    color: grey;
}

.loader-overlay {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1050;
}

.overlay-background {
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1049;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.etilize-rich-content .video-container iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.etilize-rich-content .video-container {
    width: 100%;
    position: relative;
}

.etilize-rich-content .video-container:has(iframe):before {
    content: '';
    display: block;
    padding-top:  56.52%;
}

.etilize-rich-content .template-toolbar-holder .template-toolbar .tool footer {
    margin-top: 2.5em;
    margin-bottom: 2.5em;
    font-size: 2em;
}
