/* 
    Made by JACodes
*/
.color-changer-container{
    position: fixed;
    top: 0; right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 100;
    background-color: white;
    border: 1px solid black;
    max-height: 90%;
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
         -o-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(.37,1.05,.85,1.01);
    transition: -webkit-transform 1s cubic-bezier(.37,1.05,.85,1.01);
    -o-transition: -o-transform 1s cubic-bezier(.37,1.05,.85,1.01);
    -moz-transition: transform 1s cubic-bezier(.37,1.05,.85,1.01), -moz-transform 1s cubic-bezier(.37,1.05,.85,1.01);
    transition: transform 1s cubic-bezier(.37,1.05,.85,1.01);
    transition: transform 1s cubic-bezier(.37,1.05,.85,1.01), -webkit-transform 1s cubic-bezier(.37,1.05,.85,1.01), -moz-transform 1s cubic-bezier(.37,1.05,.85,1.01), -o-transform 1s cubic-bezier(.37,1.05,.85,1.01);
}
.color-changer-container span,
.color-changer-container p,
.color-changer-container textarea,
.color-changer-container i{
    color: black !important;
}
.color-changer-container.active{
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
}
.color-changer-container > i{
    position: absolute;
    background-color: inherit;
    padding: 10px;
    border: 1px solid black;
    border-right: none;
    top: 50%; left: 0;
    cursor: pointer;
    -webkit-transform: translate(-webkit-calc(-100% + 1px), -50%);
       -moz-transform: translate(-moz-calc(-100% + 1px), -50%);
        -ms-transform: translate(calc(-100% + 1px), -50%);
         -o-transform: translate(calc(-100% + 1px), -50%);
            transform: translate(calc(-100% + 1px), -50%);
}
.color-changer{
    display: block;
    padding: 10px;
    font-size: var(--pTextSize);
    overflow: auto;
    max-height: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.color-changer > div{
    margin: 10px 0 10px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.color-changer > textarea{
    resize: none;
    width: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    font-size: inherit;
}