/* Shadows*/

.nav-shadow {
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .15);
}

.dropdown-shadow .children.open {
    box-shadow: 0 .5rem 1rem -.25rem rgba(0, 0, 0, .15);
}

/* Outline Text */

.outline-text-white,
.outline-text-white--select strong {
    font-weight: inherit;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
}

.outline-text-white-thick,
.outline-text-white-thick--select strong {
    font-weight: inherit;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 2px;
}

/* Background Blend Mode */

.blend-multiply {
    mix-blend-mode: multiply;
}

.blend-overlay {
    mix-blend-mode: overlay;
}

.blend-screen {
    mix-blend-mode: screen;
}

/* Accordion */

.down-caret, 
.creative-accordion, 
.creative-accordion .color-mask {
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    cursor: pointer;
}

.down-caret p:before {
    content:'\E012';
    font-family:'kohtello';
    transform: rotate(0deg);
}

.creative-accordion:hover .color-mask {
    opacity:0.2!important;
}

.rotated .down-caret {
    transform: rotate(180deg);
}