html, body {
    font-size: 14px;
    color: #FFF;
    color: rgb(var(--text-rgb));
}

/*Small devices (landscape phones, less than 768px)*/
@media(max-width: 767px) {
    html, body {
        font-size: 13px;
    }
}

.only-print {display: none;}

body {
    background-color: #3d4952;
    background-color: rgb(var(--background-rgb));
}

h1 {
    font-size: 2.4em;
    font-weight: 200;
}
h2 {
    font-size: 1.9em;
    font-weight: 200;
}
h3 {
    font-size: 1.4em;
    font-weight: 200;
}
h4 {
    font-size: 1.2em;
    font-weight: 200;
}
p {
    font-size: 1em;
    line-height: 1.3;
}

.title {
    font-size: 4em;
    font-weight: 200;
    overflow-wrap: break-word;
}

h2.title {
    font-size: 3.5em;
}

h3.title {
    font-size: 3em;
}

@media(max-width: 767px) {
    .title {
        font-size: 2.5em;
    }
    h2.title {
        font-size: 2.25em;
    }
    h3.title {
        font-size: 2em;
    }
}

p.title {
    margin: 10px 0 5px;
    font-size: 1.3em;
    text-align:left;
}
.title:empty {display: none;}

.subtitle {    
    font-size: 1.1em;
    margin-top: -10px;
    font-weight: 200;
}

.one-liner {
    white-space: nowrap;
    overflow: hidden;
}

.clickable {
    cursor: pointer;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a, a:hover {color: inherit;}

b {font-weight: 700;}

p a, .text-link {
    text-decoration: underline;
    text-underline-offset: 2px;
    -webkit-text-decoration-color: rgba(var(--text-link-rgb), 0.75);
    text-decoration-color: rgba(var(--text-link-rgb), 0.75);
    color: inherit;
    color: rgb(var(--text-link-rgb));
}
p a:hover, .text-link:hover {
    text-decoration-thickness: 1.3px;
    color: inherit;
    color: rgb(var(--text-link-rgb));
}

a.no-underline:hover {
    text-decoration: none !important;
}

p:last-child {margin-bottom: 0;} /* remove margin-bottom on last paragraph in boxes */

pre {color: rgb(var(--text-rgb))}

.text-primary-rgb {color: rgb(var(--primary-rgb)) !important;}
.text-error-rgb {color: rgb(var(--error-rgb)) !important;}
.text-success-rgb {color: rgb(var(--question-success-rgb)) !important;}
.text-fail-rgb {color: rgb(var(--question-fail-rgb)) !important;}
.text-yellow {color: rgb(252,163,51);}
.text-red {color: rgb(255,93,166);}
.text-blue {color: rgb(33,188,195);}
.text-green {color: rgb(118,209,57);}
.text-purple {color: rgb(160,68,255);}
.text-gold {color: rgb(255,221,0);}

.bg-primary-rgb {background-color: rgba(var(--primary-rgb), 0.5) !important; border-color: rgba(var(--primary-rgb), 0.5) !important;}

.text-quote {
    position: relative;
    padding: 15px 15px 15px 60px !important;
    background: rgba(255,255,255,0.05);
    background: rgba(var(--graphic-rgb),0.05);
    border-radius: 0.2rem;
    font-style: italic;
}
.text-quote:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f10d";
    font-size: 30px;
    font-style: normal;
    position: absolute;
    top: 5px;
    left: 15px;
    font-weight: 900;
}

.error {
    color: rgb(255,75,75);
    color: rgb(var(--question-fail-rgb));
}


img {
    max-width: 100%;
}

.page-height {
    height: calc(96vh - 100px);
}
.page-height-footer {
    height: 98vh;
}

.page-minheight {
    min-height: calc(96vh - 100px);
}

.full-width {
    margin-left: min(-15px,(100vw - 200px - 900px) / -2);
    margin-right: min(-15px,(100vw - 200px - 900px) / -2);
}

.no-scroll {
    position:relative;
    overflow:hidden;
}

.separate {
    height: 100px;
    position: relative;
}
.separate:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    border-top: 1px solid rgba(var(--graphic-rgb),0.1);
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.separate:after {
    content: "\f5fd";
    display: inline-block;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 1em;
    color: rgba(var(--graphic-rgb),0.15);
    left: 0;
    top: 50%;
    text-align: center;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

hr {visibility: hidden;border-top: 1px solid rgba(255,255,255,0.5);margin-top:1.6vw;margin-bottom: 1.75vw;}

textarea {
    min-height: calc(2.25rem + 2px);
}


.block-right {
    display: inline-block;
    position: relative;
    left: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.block-center {
    display: inline-block;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*******************************************************************************
MOBILE
********************************************************************************/
.mobile-hide {
    display: none !important;
}

.mobile-show {
    display: block;
}

@media (min-width: 576px) {
    .mobile-hide {
        display: block!important;
    }
    .mobile-show {
        display: none;
    }
}

/*******************************************************************************
HEADER
********************************************************************************/

.cd-hero-slider>li.selected:not(.is-moving-to) .page-header-wrapper {
    position: fixed;
    left: 200px;
}

.page-header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--page-header-background-rgb), .95);
    -webkit-box-shadow: 0 5px 5px rgba(var(--page-header-rgb), .9);
    box-shadow: 0 5px 5px rgba(var(--page-header-rgb), .9);
    color: rgb(var(--page-header-text-rgb));
    z-index: 3;
    margin-left: -1000px;
    margin-right: -1000px;
    padding-left: 1000px;
    padding-right: 1000px;
}

.page-header-wrapper > .page-header {
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: auto;
    margin-left: auto;
    max-width: 900px;
    min-height: 75px;
}

.page-header-wrapper .button {
    color: rgb(var(--page-header-text-rgb));
}

.cd-hero-slider>li .page-header-wrapper + *::before  {
    content: "";
    height: 75px;
    width: 100%;
    display: block;
}

@media (max-width: 869px) {
    .cd-hero-slider>li.selected:not(.is-moving-to) .page-header-wrapper  {
        left: 30px;
    }
}


/*******************************************************************************
FOOTER
********************************************************************************/
footer {
    background: rgb(var(--footer-background-rgb));
    border-top: 1px solid rgba(var(--graphic-rgb),0.1);
    color: rgb(var(--footer-text-rgb)) !important;
} 

footer .row {
    height: 99px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .row > div {
    text-align: center;
}

footer p {
    font-size: 0.8em;
    margin-bottom: 0;
}

footer p a {
    color: inherit !important;
    text-decoration: none;
}


/*******************************************************************************
BRANDING
********************************************************************************/
#branding {
    text-align: center;
    overflow: hidden;
}

#branding > a {
    display: block;
    margin: 1px;
}

/*******************************************************************************
LEGAL MENU
********************************************************************************/
#legalMenu {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 7px;
}

#legalMenu a {
    color: rgba(var(--nav-text-rgb),0.5);
    font-size: 0.8em;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/*******************************************************************************
GLOABAL LOADING OVERLAY
********************************************************************************/
#loading-overlay {
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0s ease;
    transition: opacity 0s ease;
}
#loading-overlay.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
    -webkit-transition-delay: 750ms;
    transition-delay: 750ms; /* the delay before loading icon is visible */

}
#loading-symbol {
    border-radius: 50%;
    position: absolute;
    left: calc(50% + 11px);
    top: calc(50% - 25px);
    background: rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.5);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
@media(max-width: 869px) {
    #loading-symbol {
        left: calc(50% - 21px);
    }
}

#loading-symbol img {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    width: 50px;
    height: 50px;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}


/*******************************************************************************
LOADING CHART
********************************************************************************/
.lds-ripple {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 10;
    overflow: hidden;
}
.lds-ripple div {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 40%;
    padding-bottom: 40%;
    border: 3px solid #fff;
    border: 3px solid rgba(var(--graphic-rgb), 1);
    opacity: 0;
    border-radius: 50%;
    -webkit-animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.lds-ripple div:nth-child(2) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}


@-webkit-keyframes lds-ripple {
    0% {
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%) scale(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%) scale(1);
        opacity: 0;
    }
}
@keyframes lds-ripple {
    0% {
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%) scale(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%) scale(1);
        opacity: 0;
    }
}




/*******************************************************************************
BUTTONS NEW
********************************************************************************/
.button {
    position: relative;
    border-radius: 4px;
    display: inline-block;
    padding: 0.75em;
    font-size: 1.2em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    text-align: center;
    -webkit-print-color-adjust: exact;
    text-decoration: none !important; 
    cursor: pointer;
    white-space: normal;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    font-weight: 200;
    color: rgb(var(--text-rgb));
    background:rgba(0,0,0,0.5); 
    border: 2px solid rgba(0,0,0,0.5);
}

.button.small {
    padding: 0.25em;
    font-size: 0.8em;
    border-width: 1px;
}
.button.medium {
    padding: 0.5em;
    font-size: 1em;
}

.btn-group>.button:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0;
    border-left:0;
}
.btn-group>.button:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

.input-group-append .button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-width: 1px !important;
    border-left:0;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    letter-spacing: normal;
}

.colorInputWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.colorInputWrapper button {
    padding: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: 1px solid #ced4da;
    border-right: 1px solid rgba(0,0,0,0.1);
}
.colorInputWrapper input {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.primary-rgb.button {background: rgba(var(--primary-rgb),0.6); border-color: rgb(var(--primary-rgb));color: rgb(var(--button-text-rgb));}
.error-rgb.button {background: rgba(var(--error-rgb),0.6); border-color: rgb(var(--error-rgb));}
.white.button {background:rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5);}
.gold.button {background: rgba(255,221,0,0.4); border: 2px solid rgb(255,221,0);}
.purple.button {background: rgba(106,48,147,0.4) ;border: 2px solid rgba(106,48,147,1);}
.yellow.button {background: rgba(252,163,51,0.4) ;border: 2px solid rgb(252,163,51);}
.blue.button {background: rgba(59,187,210,0.4); border: 2px solid #3bbbd2;}
.red.button {background: rgba(253,63,136,0.4); border: 2px solid rgb(253,63,136);}
.green.button {background:rgba(118,209,57,0.4) ; border: 2px solid rgb(118,209,57);}
.black.button {background:rgba(0,0,0,0.5); border: 2px solid rgba(0,0,0,0.5);color:#FFF;}

.button:hover {text-decoration: none; color: rgb(var(--text-rgb));}
.primary-rgb.button:hover {background: rgba(var(--primary-rgb),0.8); color: rgb(var(--button-text-rgb));}
.white.button:hover {background: rgba(255,255,255,0.3)}
.gold.button:hover {background: rgba(255,221,0,0.7) ;}
.blue.button:hover {background: #3bbbd2;} 
.red.button:hover {background: rgb(253,63,136);}
.green.button:hover {background: rgb(118,209,57);}
.yellow.button:hover {background: rgb(252,163,51);}
.black.button:hover {background:rgba(0,0,0,0.85); color: #FFF;}
.purple.button:hover {background: rgba(106,48,147,1);}

.button .subText {font-size: 0.7em;margin-top:5px;}
.button .subText:empty {display:none;}

.centerBtn {
    display: inline-block;
    position: relative;
    left:50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}


/**********************************************
HELPER CLASSES
**********************************************/
.right-top {
    position: absolute;
    right: 0%;
    top: 0%;
}
.right-bottom {
    position: absolute;
    right: 0%;
    bottom: 0%;
}
.left-bottom {
    position: absolute;
    left: 0%;
    bottom: 0%;
}
.left-top {
    position: absolute;
    left: 0%;
    top: 0%;
}
.center-bottom {
    position: absolute;
    left: 50%;
    bottom: 0%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.center-center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.center-top {
    position: absolute;
    left: 50%;
    top: 0%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}


.offset-center-top {
    position: absolute;
    left: 50%;
    top: 0%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}


.background-rgb {
    background: rgb(61,73,82) !important;
    background: rgb(var(--background-rgb)) !important;
}


.o-100 {opacity: 1;}
.o-75 {opacity: .75;}
.o-50 {opacity: .5;}
.o-25 {opacity: .25;}
.o-0 {opacity: 0;}


/**********************************************
BOXES
**********************************************/
.box {
    padding: 1.25vw 15px;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.1);
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border: 1px solid rgba(var(--graphic-rgb),0.15);
    background: rgba(var(--graphic-rgb),0.05);
    border-radius: 0.25vw;
    position: relative;
    -webkit-print-color-adjust: exact;
    page-break-inside:avoid;
}

.wide.box  {
    margin-left: -1000px;
    margin-right: -1000px;
    padding-right: calc(1000px + 1.25vw);
    padding-left: calc(1000px + 1.25vw);
}
.hover.box:hover {
    border: 1px solid rgba(var(--graphic-rgb),0.2);
    background: rgba(var(--graphic-rgb),0.09);
}

.primary-rgb.box {
    border: 1px solid rgba(255,255,255,0.1);
    border: 1px solid rgba(var(--primary-rgb),0.5);
    background: rgba(255,255,255,0.04);
    background: rgba(var(--primary-rgb),0.1);
}
.white.box {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
}
.black.box {
    border: 1px solid rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.1);
}
.blue.box {
    border: 1px solid rgba(33,188,195,0.5);
    background: rgba(33,188,195,0.1) !important;
}
.yellow.box {
    border: 1px solid rgba(252,163,51,0.5);
    background: rgba(252,163,51,0.15) !important;
}
.red.box {
    border: 1px solid rgba(253,63,136,0.5);
    background: rgba(253,63,136,0.1) !important;
}
.green.box {
    border: 1px solid rgba(118,209,57,0.5);
    background: rgba(118,209,57,0.05) !important;
}
.purple.box {
    border: 1px solid rgba(160,68,255,0.5);
    background: rgba(160,68,255,0.08) !important;
}
.gold.box {
    border: 1px solid rgba(255,210,0,0.5);
    background: rgba(255,210,0,0.1) !important;
}

.blue.box.intense {
    border: 1px solid rgba(33,188,195,1);
    background: rgba(33,188,195,0.35) !important;
}
.yellow.box.intense {
    border: 1px solid rgba(252,163,51,1);
    background: rgba(252,163,51,0.3) !important;
}
.red.box.intense {
    border: 1px solid rgba(253,63,136,1);
    background: rgba(253,63,136,0.35) !important;
}
.green.box.intense {
    border: 1px solid rgba(118,209,57,1);
    background: rgba(118,209,57,0.35) !important;
}
.purple.box.intense {
    border: 1px solid rgba(106,48,147,1);
    background: rgba(160,68,255,0.18) !important;
}
.gold.box.intense {
    border: 1px solid rgba(255,210,0,1);
    background: rgba(255,210,0,0.3) !important;
}

.box .border {
    border: inherit !important; 
}






/***************************
    POSTS GENEREL 
***************************/
/*
:root {
    --post-background-rgb: 255,255,255;
    --post-text-rgb: 33,33,33;
}
*/


.post + .post {
    margin-top: 30px;
}


.post-resourcetype-container {
    margin-bottom: 15px;
}

.post-resourcetype-title {}

.post-resourcetype-desc {}

.post-hover-grow {
    -webkit-transition: 500ms -webkit-transform;
    transition: 500ms -webkit-transform;
    transition: 500ms transform;
    transition: 500ms transform, 500ms -webkit-transform;
}

.post-hover-grow:hover {
    text-decoration: none;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.post-item {
    background: rgb(var(--post-background-rgb));
    color: rgb(var( --post-text-rgb));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    -webkit-print-color-adjust: exact;
    page-break-inside:avoid;
    height: 100%;
}


.post-content {
    position: relative;
    z-index: 1;
}

.post-desc {
    opacity: 0.75;
    font-size: 90%;
}

.post-color {
    color: var(--post-inline-rgb);
}

.post-color-background {
    background: var(--post-inline-rgb);
}

.post-gradient-background {
    background: var(--post-inline-gradient);
}

.post-competence-selector {
    margin: 15px auto;
}


.post-icon-container {
    position: relative;
    height: 25px;
    width: 25px;
}

.post-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 3%;
    border-radius: 100%;
    border: 2px solid rgb(var(--post-background-rgb));
    height: 100%;
    width: 100%;
}

.post-icon {
    position: relative;
    top: 50%;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgb(var(--post-background-rgb));
    border-radius: 100%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    height: 100%;
    width: 100%;
    color: var(--post-inline-rgb);
    font-weight: bold;
    font-size: 2em;
}

.post-header img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background: rgb(var(--post-background-rgb));
}

.post-content-wrapper {
    padding: 5%;
}

.post-action {
    display: inline-block;
    text-align: center;
    min-width: 10%;
}

.post-background-chart {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 45%;
    z-index: 0;
}


/**************************
    POST BOX 
**************************/

.post-layout-box .post-item {
    padding: 0;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.75);
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
}

.post-layout-box .post-header {
    height: 100px;
    background: var(--post-inline-gradient);
}

.post-layout-box .post-icon-container {
    height: 80px;
    width: 80px;
    margin: 0 auto;
    top: -40px;
}

.post-layout-box .post-content-wrapper {
    text-align: center;
    margin-top: -40px;
}


/***************************
    POST ACCORDION 
***************************/
.post-layout-accordion .accordion {
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.75);
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
    border-radius: 15px;
}

.post-layout-accordion .post-item {
    overflow: visible;
}

.post-layout-accordion .post-item:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.post-layout-accordion .post-item:not(:last-of-type) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom: 1px solid rgba(var( --post-text-rgb), 1);

}

.post-layout-accordion .post-icon-background {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    margin: 7px 0 7px;
    padding: 5px 20px;
    -webkit-box-shadow: 2px 2px 5px rgba(var( --post-text-rgb), 0.7);
    box-shadow: 2px 2px 6px rgba(var( --post-text-rgb), 0.7);
    border: 1px solid rgba(var( --post-text-rgb), .5);
    border-left: 1px solid rgba(var( --post-text-rgb), 1);
/*    border-left: 0;*/
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
    -webkit-transition: 500ms -webkit-transform;
    transition: 500ms -webkit-transform;
    transition: 500ms transform;
    transition: 500ms transform, 500ms -webkit-transform;
}

.post-layout-accordion .post-icon-wrapper {
    padding: 2px;
    border: 1px solid rgb(var(--post-background-rgb));
}

.post-layout-accordion .post-icon {
    font-size: 0.9em;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.75);
}

.post-layout-accordion .post-hover-grow:hover {
    -webkit-transform:none;
    transform:none;
}

.post-layout-accordion .post-hover-grow:hover .post-icon-background  {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
}

.post-layout-accordion .post-single-link {
    padding-bottom: 10px;
    opacity: 0.5;
    float: right;
    min-width: 10%;
    text-align: center;
}


/***************************
POST SIDE-BY-SIDE 
***************************/
.post-layout-side-by-side .post-item {
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.75);
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
}

.post-layout-side-by-side .post-item:not(:last-of-type) {
    margin-bottom: 30px;;
}

.post-layout-side-by-side .post-header {
    background:  var(--post-inline-gradient);
}

.post-layout-side-by-side .post-icon-container {
    width: 70%;
    padding-bottom: 70%;
}

.post-layout-side-by-side .post-icon-wrapper {
    height: 70%;
    width: 70%;
}

.post-layout-side-by-side .post-icon {
    font-size: 6em;
}

.post-layout-side-by-side .post-desc {
    opacity: 1;
}


/***************************
    POST SINGLE 
***************************/

.post-layout-single .post-item {
    display: block;
    padding: 15px;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.75);
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
}

.post-layout-single .post-item:not(:last-of-type) {
    margin-bottom: 30px;
}

.post-layout-single .post-image-container {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
    float: right;
    width: 50%;
    margin: 2%;
    clear: right;
}

.post-layout-single .post-icon-container {
    background:  var(--post-inline-gradient);
    border-radius: 7px;
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
    z-index: 3;
    float: right; 
    width: 25%; 
    padding-bottom: 25%;
    margin: 1%;
}

.post-layout-single .post-icon-wrapper {
    top: 50%;
    width: 50%;
    height: 50%;
}

.post-layout-single .post-icon {
    font-size: 3em;
    min-width: 50px;
    min-height: 50px;
}


/**********************************************
TOS
**********************************************/

ol.legal-list,  ol.legal-list ol {
    counter-reset: item;
    font-size: 1em;
}

ol.legal-list > li {
    counter-increment: item;
    font-size: 1em;
    font-weight: 200;
    margin-bottom: 0.5em;
}



ol.legal-list ol > li {
    display: block;
    margin-left: -15px;
    counter-increment: item;
    font-size: 1em;
    font-weight: 400;
}

ol.legal-list ol > li:before {
    content: counters(item, ".") ". ";
    margin-left: -1.8em;
}




/**********************************************
CIRCLE
**********************************************/
.circle {
    border-radius: 50%;
    width: 100%;
    position: relative;
}
.circle:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.circle .circleContent {
    position: absolute;
    text-align: center;
    left: 13%;
    right: 13%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: auto;
    max-height: 70%;
}
.circle .title, .circle p {
    text-align: center;
    margin: 0.25em 0;
    font-size: 0.9em;
}

.circle .title {
    font-size: 1.1em;
}


.circle .marker {
    position: absolute;
    z-index: 10;
    text-align: center;
    border-radius: 999px;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    height: 22%;
    width: 22%;
    -webkit-print-color-adjust: exact;
}

.circle .marker.mark0 {
    top: -1%;
    left: -1%;
}

.circle .marker.mark1 {
    top: -13%;
    left: 19%;
}

.circle .marker .markerContent {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* DETAILS FOR A RESOUCE */
.resourceDetailsContent ul {
    list-style: disc;
    padding-left: 3vw;
}



.datatype {
    margin: 0;
    margin: 0px -1em 10px -1em;
    border-left: 0 !important;
    border-right: 0 !important;
    text-align: center;
    padding: 1vw;
}

/* YOUTUBE VIDEOS */
.youtube {
    background-color: #000;
    margin-bottom: 10px;
    position: relative;
    padding-top: 56.25%; /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
    overflow: hidden;
    cursor: pointer;
}

.youtube img {
    position: absolute;
    width: 100%;
    top: -16.60%;
    left: 0;
    opacity: 0.7;
}

.youtube iframe {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube .play-button {
    width: 90px;
    height: 60px;
    background-color: #222;
    -webkit-box-shadow: 0 0 30px rgba( 0,0,0,0.7 );
    box-shadow: 0 0 30px rgba( 0,0,0,0.7 );
    z-index: 1;
    opacity: 0.9;
    border-radius: 6px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}

.youtube .play-button,
.youtube .play-button:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate( -50%, -50%);
    transform: translate( -50%, -50%);
}

.youtube:hover .play-button {
    -webkit-transform: scale(1.1) translate( -50%, -50%);
    transform: scale(1.1) translate( -50%, -50%);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    opacity: 1;
}

.youtube:hover .play-button:before {
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent red;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

.youtube-caption {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
    background: rgba(30,30,30,0.75);
    opacity: 1;
    border: 1px solid rgba(20,20,20,0.3);
    z-index: 10;
    text-align: center;
    padding: 0.5vw 15px;
    border-right: 0;
    border-left: 0;
    color: #FFF;
}

.youtube-caption:empty {
    display: none;
}

input[type=submit]:disabled, button:disabled {
    cursor: not-allowed !important;
    opacity: 0.25;
}

.avoidwrap { display:inline-block; font-size:1em;}

.disabled, button.disabled, a.disabled {
    opacity: 0.5;
    cursor:not-allowed;
    pointer-events: none;
}

label.toggleInputDisplay {
    cursor: pointer;
}
label.toggleInputDisplay:before {
    content: "\f0d7";
    display: inline-block;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 1em;
    width: 1em;
}

.labelHelpText {
    font-size: 0.9em;
    font-weight: 100;
    display:inline-block; /* helps to avoid line break */
}

.specialCircle.box {
    border-radius: 50%;
    width: 60%;
    height: 60%;
    text-align: center;
    position: absolute;
    margin:0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-width: 3px;
    text-transform: uppercase;
    font-size: 1.1em;
}


/*************************************
DEBUG
*************************************/

table.xdebug-error td, table.xdebug-error th {
    color: #333;
}

pre.xdebug-var-dump {
    background: rgba(255,255,255,0.93);
    color: #333;
}


/*************************************
TABLE: CROSS TAB 
*************************************/
.table-crosstab {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255, 0.05);
    -webkit-box-shadow: 0 0 12px rgba(0,0,0,0.1);
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    border-radius: 0.25vw;
    color: rgb(var(--text-rgb));
}

.table-crosstab td {
    vertical-align: middle;
    text-align: center;
    font-weight: 300;
}
.table-crosstab tr:nth-child(1) td {
    border-top: 0;
}
.table-crosstab .row-title, .table-crosstab .column-title {
    font-size: 1.4em;
}

/*TYPE: rowQuestion_columnQuestion*/
.table-crosstab.rowQuestion_columnQuestion td:nth-child(1) {
    text-align: left;
    border-right: 1px solid #dee2e6;
}
.table-crosstab.rowQuestion_columnQuestion tr:not(:nth-child(1)) td:last-child, .table-crosstab.rowQuestion_columnQuestion tr:last-child td     {
    font-weight: 600;
}

/*TYPE: rowQuestion*/
.table-crosstab.rowQuestion tr:not(:nth-child(1)) td:nth-child(1) {
    text-align: left;
    border-right: 1px solid #dee2e6;
}

/*************************************
PYRAMID DIAGRAM
*************************************/

.pyramid-container {
    position:relative;
    height:0; 
    width: 100%; 
    padding: 0;
    padding-bottom:100%;
    margin: 10px 0;
}

.pyramid-container > svg {
    position: absolute; 
    height: 100%; 
    width: 100%; 
    left: 0; 
    top:0;
}

.pyramid-shape {
    fill-opacity: 0.01;
    fill: none;
    stroke: #ddd;
    stroke-opacity: 0.7;
    stroke-width: 0.33;
}

.pyramid-shape:nth-child(1) {fill-opacity: 0.20;}
.pyramid-shape:nth-child(2) {fill-opacity: 0.16;}
.pyramid-shape:nth-child(3) {fill-opacity: 0.12;}
.pyramid-shape:nth-child(4) {fill-opacity: 0.09;}
.pyramid-shape:nth-child(5) {fill-opacity: 0.06;}
.pyramid-shape:nth-child(6) {fill-opacity: 0.03;}
.pyramid-shape:nth-child(7) {fill-opacity: 0.02;}
.pyramid-shape.active {fill-opacity: 0.95;}


.pyramid-title-group {
    position:absolute;
    width:100%; 
    height:100%;
}

.pyramid-title {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
}


.pyramid-title-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}


.pyramid-title .title {
    text-align: center;
    line-height: 0.9em;
    border: 0;
    margin: 0;
    font-size: 0.9em;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: 0 0 3px rgba(var(--background-rgb), .1);
}

.list-group .pyramid-title .title {
    font-size: 0.55em;
    line-height: 0.8em;
}

.pyramid-title .subtitle {
    text-align: center;
    font-size: 0.75em;
    border: 0;
    margin: 0;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: normal;
    margin-top: 0.3em;
}

.pyramid-title .title.active, .pyramid-title .subtitle.active {
    text-shadow: 0 0 3px rgba(var(--background-rgb), .2);
    font-weight: 400;
}

.pyramid-title .subtitle .fa {font-size: 1.7em;}

.pyramid-description-group {
    left: 15px;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
}

.pyramid-description {
    position: absolute;
    height: 15%;
    width: 100%;
    overflow: hidden;
}

.pyramid-description p {
    line-height: 1.1em;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
}



/**************************************
CHANGES TO BOOTSTRAP - LIST GROUPS 
*************************************/
.list-group-item {
    border: 1px solid rgba(255,255,255,0.1);
    border: 1px solid rgba(var(--graphic-rgb),0.1);
    background-color: transparent;
    padding: 0;
    margin-bottom: 0.3em;
}

.list-group-item a, .list-group-item .datalink {
    display: block;
    text-decoration: none;
    padding: 10px;
    background-color: rgba(255,255,255,0.05);
    background-color: rgba(var(--graphic-rgb),0.05);
    -webkit-transition: 500ms;
    transition: 500ms;
    cursor: pointer;
}

.list-group-item .datalink .title .normal {
    text-transform: none;
    letter-spacing: normal;
}

.list-group-item a:hover, .list-group-item .datalink:hover {
    background-color: rgba(255,255,255,0.2);
    background-color: rgba(var(--graphic-rgb),0.2);
}

.badge {
    background: rgba(0,0,0,0.2);
    background: rgba(var(--graphic-rgb),0.1);
}

.badge.dark {
    background: rgba(0,0,0,0.4);
    color: #FFF;
    text-shadow: 0 0 1px #000
}

.border {border: 1px solid  rgb(var(--graphic-rgb)) !important}

.list-group-item .title {
    border:0;
}

.list-group-item p {
    margin: 2px 0;
}

.list-group-item p:empty {
    display: none;
}

.list-group-item.inactive p {
    text-decoration: line-through;
    opacity: 0.5;
}


/**************************************
CHANGES TO BOOTSTRAP - TABS 
*************************************/
.nav-tabs {
    border: 0;
}

.nav-tabs .nav-link {
    border-color: rgba(var(--graphic-rgb),0.3);
    background-color: rgba(var(--graphic-rgb),0.1);
    border-bottom-color: transparent;
}


/**************************************
CHANGES TO BOOTSTRAP - FORMS
*************************************/
.form-group {
    margin-bottom: 0.65rem;
}

.custom-switch > * {
    cursor: pointer;
}

.custom-switch .form-control:disabled, .custom-switch .form-control[readonly] {
    opacity: 0;
}

.custom-switch .custom-control-label::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.custom-switch .custom-control-label::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    top: 50%;
    -webkit-transform: translate(0.75rem, -50%);
    transform: translate(0.75rem, -50%);
}

.form-group ::-webkit-input-placeholder {
    opacity: 0.5;
}
.form-group :-ms-input-placeholder {
    opacity: 0.5;
}
.form-group ::placeholder {
    opacity: 0.5;
}

.input-group {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
/*    overflow: hidden;*/
}

/**************************************
CHANGES TO BOOTSTRAP - CARDS 
*************************************/
.card {
    background-color: rgba(0,0,0,0.15);
    background-color: rgba(var(--graphic-rgb),0.04);
    border: 1px solid rgba(0,0,0,.2);
    border: 1px solid rgba(var(--graphic-rgb),.2);
}
.card-header, .card-footer {padding: .3rem 1.25rem;}
.card-header:empty, .card-footer:empty, .card-title:empty {display: none !important;}
.card.resourcetype .card-header {text-align: right;}
.card-title {font-weight: 300;}
.card a.resourceDetails {font-weight: 600;}

@media only screen and (min-width: 768px) { /* Masonry on medium-sized screens */
    .card-columns {
        -webkit-column-count: 3;
        column-count: 3;
    }
    .card-columns-2 {
        -webkit-column-count: 2;
        column-count: 2;
    }
}
@media only screen and (max-width: 767px) and (min-width: 540px) { /* Masonry on small screens */
    .card-columns {
        -webkit-column-count: 2;
        column-count: 2;
    }
    .card-columns-2 {
        -webkit-column-count: 2;
        column-count: 2;
    }
}


/**************************************
CHANGES TO BOOTSTRAP - TABLE 
*************************************/
.table {
    color: rgb(var(--text-rgb));
}


.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(var(--graphic-rgb), .05);
}

/**************************************
CHANGES TO BOOTSTRAP - MODAL 
*************************************/

.modal { overflow: auto !important; }

.modal-content {
    background-color: rgba(var(--background-rgb),0.97);
    -webkit-box-shadow: 0 0px 10px #000;
    box-shadow: 0 0px 15px rgba(0,0,0,0.5);
    overflow: hidden;
}

.admin-section .modal-content, .builder-section .modal-content {
    overflow: visible;
}

button.close {
    position: absolute;
    right: 0.3em;
    top: 0.3em;
    z-index: 100;
    color: rgb(var(--graphic-rgb));
    opacity: 0.85;
}

button.close:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
}


/**************************************
CHANGES TO BOOTSTRAP - DROPDOWNS 
*************************************/
.dropdown-menu {
    max-height: 500px;
    overflow-y: auto;
}

.dropdown-menu label {
    color: #212529;
}


/**************************************
CHANGES TO BOOTSTRAP - BORDER-CLASS 
*************************************/
.border-top, .border-bottom, .border-left, .border-right {
    border-color: rgba(var(--graphic-rgb), 0.5) !important;
}


/**************************************
CHANGES TO SIMPLEBAR  - (CUSTOM SCROLLBAR) 
*************************************/
.simplebar-scrollbar:before {background: #FFF !important;}

.cd-slider-nav .simplebar-track.vertical {right: auto !important;} /* move scrollbar to left side in menu */




/**************************
CHANGES TO SELECT2
***************************/
.select2-container * {
    color: #212529;
/*    font-weight: 300;*/
}

.select2-container--bootstrap .select2-results>.select2-results__options {
    max-height: 400px;
}

.select2-container--bootstrap .select2-results__option {
    padding-left: 0.5rem;
    padding-right: 2.5rem;
    position: relative;
}

.select2-container--bootstrap .select2-results__option .select2-results__option {
    padding-left: 2rem;
    padding-right: 3rem;
}

.select2-container--bootstrap .select2-results__option[aria-selected=true] {
    background-color: rgba(var(--primary-rgb),.2);
    color: #16181b;
}

.select2-selection--multiple:before {
    content: "";
    position: absolute;
    right: 7px;
    top: 42%;
    border-top: 5px solid #222;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
    border: 1px solid rgba(0,0,0,0.075);
}

.select2-results__option[aria-selected=true]:after {
    content: "\f00c";
    display: inline-block;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    font-size: 1.5em;
    right: 0.25em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}


.note-toolbar {
    z-index: auto;
}

.note-toolbar * {
    color: #222;
}

.select2-results__option .badge {
    background: rgba(0,0,0,0.1);
}

/*************************************
UL LISTS
*************************************/
.list1 {    
    margin-bottom: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.list1 .title {
    border-bottom: 0;
    font-size: 0.9em;
    padding-bottom: 2px;
    margin-top: 10px; 
    letter-spacing: 0;
}
.list1 li {position: relative;margin-bottom: 10px;}
.list1 li p {
    margin: 0 0 0 2rem; 
    padding-left: 10px; 
    border-left: 1px solid rgba(255,255,255,0.1); 
    border-left: 1px solid rgba(var(--graphic-rgb), 0.1);
}
.list1 li span {
    opacity: .75;
    position: absolute;
    font-size: 1em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.list2 {list-style: disc;}
.list2 li {margin-bottom: 7px;}



/*************************************
ANIMATION PRESETS
*************************************/

.showOnAnimation {
    opacity:0;
}
.hideOnAnimation {
    opacity:1;
}


/*************************************
Highcharts
*************************************/

.chartBox {
    width: 100%;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.chartWidthController {width: 100%;}

.chartHeightController {position:relative;}

.chart {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: visible !important;
}

.chartTitle {
    text-align: center;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.chartWrapper {
    position: relative;
}
.competenceArea {
    width: 18%;
    z-index: 5;
}




/* -------------------------------- 
CONTENT-EDITOR
-------------------------------- */
.content-view {
    /*
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    */
    background: rgba(255,255,255,1);
    /*    min-height: calc(-400px + 100vh);*/
    padding: 25px;
    color: #333;
    margin: 15px;
    border: 1px solid rgba(0,0,0,0.25);
    -webkit-box-shadow:
        /* The top layer shadow */
        0 -1px 1px rgba(0,0,0,0.15),
        /* The second layer */
        0 -10px 0 -5px #eee,
        /* The second layer shadow */
        0 -10px 1px -4px rgba(0,0,0,0.15),
        /* The third layer */
        0 -20px 0 -10px #eee,
        /* The third layer shadow */
        0 -20px 1px -9px rgba(0,0,0,0.15);
    box-shadow:
        /* The top layer shadow */
        0 -1px 1px rgba(0,0,0,0.15),
        /* The second layer */
        0 -10px 0 -5px #eee,
        /* The second layer shadow */
        0 -10px 1px -4px rgba(0,0,0,0.15),
        /* The third layer */
        0 -20px 0 -10px #eee,
        /* The third layer shadow */
        0 -20px 1px -9px rgba(0,0,0,0.15);
    /* Padding for demo purposes */
    padding: 30px;
}


/* -------------------------------- 
MESSAGE
-------------------------------- */
#msg-container {
    position: fixed;
    z-index: 1100; /* modal z-index is 1050 */
    right: 2vw;
    bottom: 1vh;
    width: 250px;
    max-height: 98vh;
    color: #FFF;
}

.msg-item {
    background: #222;
    padding: 1vw;
    width: 250px;
    border-radius: 0.25vw;
    margin-bottom: 1vh;
    -webkit-box-shadow: 0 0 5px rgba(255,255,255,0.2);
    box-shadow: 0 0 5px rgba(255,255,255,0.2);
    -webkit-transform: translateX(500%);
    transform: translateX(500%);
    font-size: 0.9em;
}

.msg-item.active {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.msg-closeBtn {
    position: absolute;
    top: 0;
    right: 0;
    background: #333;
    border: 0;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transform: translate(24%,-24%);
    transform: translate(24%,-24%);
    color: #FFF;
    padding: 2px 1px 0px 2px;
}

.msg-error {
    border-bottom: 0.4em solid rgb(255,50,50);
}
.msg-error i {
    color: rgb(255,50,50);
}

/*************************************
Slider
*************************************/
.cd-hero {
    position: relative;
    -webkit-margin-start: 200px;
    -moz-margin-start: 200px;
    margin-inline-start: 200px;
    overflow: hidden;
    min-height: 100%;
}
.cd-hero-slider {
    /*position: relative;*/
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}
.cd-hero-slider>li {
    display: block;
    position: absolute;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 150px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow: hidden;
    min-height: calc(100vh - 100px);
    padding-top: 2vh;
    padding-bottom: 2vh;
    padding-left: max(15px, (100vw - 200px - 900px) / 2); /* 15px is the minimum padding. 900px is the max content width. 200px is the space for Navigation menu */
    padding-right: max(15px, (100vw - 200px - 900px) / 2); 
    margin-right: auto;
    margin-left: auto;
}
.cd-hero-slider>li.selected {
    position: relative;
/* transform: translateX(0); transform break fixed element inside */
    -webkit-transform: unset;
    transform: unset;
}
.cd-hero-slider>li.move-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.cd-hero-slider>li.is-moving, .cd-hero-slider li.selected {
    visibility: visible;
    -webkit-transition: -webkit-transform 0.75s;
    transition: -webkit-transform 0.75s;
    transition: transform 0.75s;
    transition: transform 0.75s, -webkit-transform 0.75s;
}


.container-fluid {
    max-width: 900px;
}


/* -------------------------------- 
MENU
-------------------------------- */

.cd-slider-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 99;
    margin: 0;
    width: 200px;
    background: #222;
    background: rgb(var(--nav-background-rgb));
    -webkit-box-shadow: 0 0 7px rgba(0,0,0,0.5);
    box-shadow: 0 0 7px rgba(0,0,0,0.5);
    -webkit-transition: -webkit-transform 500ms;
    transition: -webkit-transform 500ms;
    transition: transform 500ms;
    transition: transform 500ms, -webkit-transform 500ms;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    color: rgb(var(--nav-text-rgb));
}


#adminTopmenu {
    z-index: 12;
    margin-bottom: 5px;
    min-height: 20px;
    padding: 5px;
}

#adminTopmenu button {
    cursor:pointer;
}

#langMenu {
    margin: 10px auto 0;
}

#langMenu .langBtn {
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0;
    border-width: 0;
    background: rgba(var(--nav-text-rgb),0.06);
    padding: 3px 10px;
    min-width: 100px;
    color: rgb(var(--nav-text-rgb));
}

#mapusLogoContainer {
    position: relative;
    z-index: 10;
    width: 90%;
    margin: 0 auto;
}
#mapusLogo {
    text-align: center;
    display: block;
    max-width: 100px;
    min-height: 100px;
    margin: 0 auto;
    -webkit-transition: -webkit-transform 750ms;    
    transition: -webkit-transform 750ms;    
    transition: transform 750ms;    
    transition: transform 750ms, -webkit-transform 750ms;
}

#logoTextContainer {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    left: 50%;
    width: 100%;
    z-index: 5;
    -webkit-transition: opacity 750ms;
    transition: opacity 750ms;    
    
    text-shadow: 0 0 10px rgb(var(--nav-background-rgb));
    background: rgba(var(--nav-background-rgb),0.7);
    font-size: 0.85em;
    width: 100%;
    padding: 0.1em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 200;
    pointer-events: none;
}



.cd-slider-nav .menuHeader {
    -webkit-transition: -webkit-transform 750ms;
    transition: -webkit-transform 750ms;
    transition: transform 750ms;
    transition: transform 750ms, -webkit-transform 750ms;
    text-align: center;
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 1px;
    font-size: 1.85em;
    margin: 25px 0 5px
}


.cd-slider-nav nav {;
    -webkit-box-flex: 1;;
    -ms-flex: 1;;
    flex: 1;
    overflow:hidden;
    margin-bottom: 40px;
}
.touch .cd-slider-nav nav {
    overflow-y: auto; /* on touch devices the custom scrollbar (simplebar) is disabled. So the "nav" has to be scrollable */
}

ul.snip1217 {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.snip1217 li {
    display: inline-block;
    list-style: outside none none;
    padding: 0;
    width: 100%;
    margin-bottom: 0.5em;
}

.snip1217 li.header a {
    padding: 0;
    pointer-events: none;
    opacity: 1;
}

.snip1217 li.header .menuText {
    font-weight: 400;
    margin-left: 1em;
}

.snip1217 li.header .menuIcon {
    display: none !important;
}

.snip1217 a {
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.8);
    color: rgba(var(--nav-text-rgb), 0.8);
    position: relative;
    text-decoration: none;
    width: 100%;
    overflow: hidden;
    opacity: 0.8;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    font-size: 0.8em;
}
.snip1217 a:before,
.snip1217 a:after {
    height: 1px;
    position: absolute;
    content: '';
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: rgba(255,255,255,0.8);
    background-color: rgba(var(--nav-text-rgb), 0.8);
    width: 0;
}

.snip1217 a:before {
    top: 0;
    left: 0;
}
.snip1217 a:after {
    bottom: 0;
    right: 0;
}
.snip1217 .selected > a:before, .snip1217 .selected > a:after {
    width: 100%;
}
.snip1217 a:hover, .snip1217 .selected > a {
    color: #ffffff;
    color: rgb(var(--nav-text-rgb));
    opacity: 1;
}

.snip1217 .selected > a {
    background: rgba(255,255,255,0.075);
    background: rgba(var(--nav-text-rgb),0.075);
}

.snip1217 a .menuText {
    display: block;
    overflow: hidden;
    font-weight: 200;
    -webkit-transition: 500ms opacity;
    transition: 500ms opacity;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

.snip1217 a .menuIcon { /* the icon */
    width: 30px;
    -webkit-transition: 750ms -webkit-transform;
    transition: 750ms -webkit-transform;
    transition: 750ms transform;
    transition: 750ms transform, 750ms -webkit-transform;
}

/* submenu */
ul.snip1217 li.has-children ul {
    padding-left: 0px;
    background: rgba(var(--nav-text-rgb), 0.05);
    overflow: hidden;
    padding-top: 0.5em;
    display: none;
    font-size: 0.9em;
}


ul.snip1217 ul li {
    padding-left: 27px;
}



/* COLLAPSED MENU */
@media(max-width: 869px) {
    .cd-slider-nav {
        --shift-nav: -170px;
        --shift-nav-element: 85px;
    }
    
    html[dir="rtl"] .cd-slider-nav {
        --shift-nav: 170px;
        --shift-nav-element: -85px;
    }

    .cd-hero {-webkit-margin-start: 30px;-moz-margin-start: 30px;margin-inline-start: 30px;}
        
    .cd-slider-nav {-webkit-transform: translateX(var(--shift-nav));transform: translateX(var(--shift-nav)); will-change: transform;}
    .cd-slider-nav.expanded {-webkit-transform: translateX(0);transform: translateX(0);}
    
    .cd-slider-nav .snip1217 a .menuText {opacity: 0;}    
    .cd-slider-nav.expanded .snip1217 a .menuText {opacity: 1;}
    
    .cd-slider-nav .snip1217 a .menuIcon {-webkit-transform: translateX(calc(var(--shift-nav) * -1));transform: translateX(calc(var(--shift-nav) * -1));}
    .cd-slider-nav.expanded .snip1217 a .menuIcon {-webkit-transform: translateX(0);transform: translateX(0);}
    
    .cd-slider-nav a, .cd-slider-nav button {pointer-events: none;}
    .cd-slider-nav.expanded a, .cd-slider-nav.expanded button {pointer-events:auto;}
    
    .cd-slider-nav #mapusLogo {-webkit-transform: translateX(var(--shift-nav-element)) translateY(-30px) scale(0.25);transform: translateX(var(--shift-nav-element)) translateY(-30px) scale(0.25);}
    .cd-slider-nav.expanded #mapusLogo {-webkit-transform: translateY(0px) scale(1);transform: translateY(0px) scale(1);}
    
    .cd-slider-nav .menuHeader {-webkit-transform: rotate(-90deg) translateY(var(--shift-nav-element)) translateX(35px);transform: rotate(-90deg) translateY(var(--shift-nav-element)) translateX(35px);}
    .cd-slider-nav.expanded .menuHeader {-webkit-transform: rotate(0deg) translateY(0px);transform: rotate(0deg) translateY(0px);}

    .cd-slider-nav #logoTextContainer {opacity: 0;}
    .cd-slider-nav.expanded #logoTextContainer {opacity: 1;}
    
    .cd-slider-nav #langMenu {opacity: 0;}
    .cd-slider-nav.expanded #langMenu {opacity: 1;}
    
    .cd-slider-nav #legalMenu {opacity: 0;}
    .cd-slider-nav.expanded #legalMenu {opacity: 1;}
    
    .cd-slider-nav .toggle-submenu {opacity: 0;}
    .cd-slider-nav.expanded .toggle-submenu {opacity: 1;}
}


/* IN CASE OF ZOOM (which force a low screen height) */
@media(max-height: 350px) {
    #branding, #adminTopmenu, #legalMenu {display: none !important;}
    .cd-slider-nav nav {margin-bottom: 5px;}
    #mapusLogo {min-height: 40px; height: 40px; width: 40px;}
}





/*********** NEW MENU  ***************/
/* STYLES FOR BOTH TOP- AND SUB- MENU */

/* TOP-MENU ONLYE */
ul.verticalMenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.verticalMenu li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}
ul.verticalMenu li a:hover {
    background: #1d4f71;
    color: #fff;
}
ul.verticalMenu li a .fa {
    width: 16px;
    text-align: center;
    margin-right: 5px;
    float:right;
}

/* SUB-MENU ONLY */
ul.verticalMenu ul {
    background: rgba(0, 0, 0, 0.2);
    list-style: none;

}
ul.verticalMenu li ul li a {
    border-left: 4px solid transparent;
    padding: 10px 20px;
}
ul.verticalMenu li ul li a:hover {
    border-left: 4px solid #3498db;
}


/* RIGHT TO LEFT ORIENTATION (ARABIC LANGUAGE) ***********************/

html[dir="rtl"] body {
    text-align: right;
    direction: rtl;
}