.blend {
    mix-blend-mode: multiply;
}

.hardblend path {
    mix-blend-mode: multiply;
}

.templateViewer{
    border-radius: 0.25rem;
    border: 3px solid #add8e657;
    transition: transform .2s;
    z-index: 1;
    position: relative;
}
#templateCollapse{
    max-height: 35vh;
}
.templateViewer:hover{
    border-radius: 0.25rem;
    border: 6px solid #642833;
    position: relative;
    z-index: 2;
    transform: scale(1.25);
    cursor: pointer;
}
.templateViewer.selected{
    border-radius: 0.25rem;
    border: 6px solid #642833;
    cursor: pointer;
}

.patternViewer{
    border-radius: 25px;
    border: 3px solid #add8e657;
    transition: transform .2s;
    z-index: 1;
    position: relative;
}
.patternViewer:hover{
    border-radius: 5px;
    border: 6px solid #add8e6ff;
    position: relative;
    z-index: 2;
    transform: scale(1.25);
    cursor: pointer;
}
.patternViewer.selected{
    border-radius: 5px;
    border: 6px solid #44606e;
    cursor: pointer;
}
.editorRight{
    height: 40vh;
}
.showYScroll{
    overflow-x: hidden;
    overflow-y: scroll;
}
#editorCard{
    border-radius: 25px;
    border: 5px solid rgba(12, 0, 16, 0.67);
    height: 85vh
}

svg.offscreen{
    top: 0;
    position: absolute;
    pointer-events: none;
}
.editorCardHeader{
    padding: 0.5rem 1.25rem;
    margin-bottom: 0.5rem;
    width: 100%;
    background: rgba(0,0,0,0.03);
    height: 4vh;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0.125);
}
.btn.btn-sm.btn-success.undraggable{
    z-index: 10;
    position:relative;
}
.editorCardFooter{
    padding: 0.5rem 1.25rem;
    margin-bottom: 0.5rem;
    width: 100%;
    background: rgba(0,0,0,0.03);
    margin-top: -5vh;
    height: 4vh;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(0, 0, 0, 0.125);
}
.editorCardHeaderBtnSm{
    padding: 0.3rem 1.25rem;
    margin-bottom: 0.5rem;
    width: 100%;
    background: rgba(0,0,0,0.03);
    height: 4vh;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0.125);
}

@keyframes changeColor {
    0% {
        fill: #77339a;
    }

    50% {
        fill: #ff6ff6;
    }

    100% {
        fill: #77339a;
    }
}

.blinkColor {
    animation: changeColor ease;
    animation-iteration-count: infinite;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}
