/*Flip Vertical, Flip Horizontal, Rotate Left, Rotate Right buttons*/
#flip-X,
#flip-Y,
#rotate-left,
#rotate-right {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#flip-X svg,
#flip-Y svg,
#rotate-left svg,
#rotate-right svg {
    width: 25px;
    height: 25px;
    fill: #000;
}


/*Input range type----------------------------------------*/
#rotateSlider {
    width: 100%;
}

.rotateRangeInput {
    -moz-appearance: none;
    appearance: none;
    margin: 5px;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    height: 4px;
    background: linear-gradient(to right, rgba(202, 59, 171, 1) 0%, #ccc 0%);
    transition: background 0.3s ease;
}


.rotateRangeInput::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 25px;
    width: 25px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    border: 3px solid #ccc;
    transition: .2s ease-in-out;
}

.rotateRangeInput::-moz-range-thumb {
    -moz-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    border: 3px solid #ccc;
    transition: .2s ease-in-out;
}

.rotateRangeInput::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px rgba(202, 59, 171, .2);
}

.rotateRangeInput:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(202, 59, 171, .2);
    border: 2px solid #8B3DFF;
}

.rotateRangeInput:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(202, 59, 171, .2);
    border: 2px solid #8B3DFF;
}

.rotateRangeInput::-moz-range-thumb:hover {
    box-shadow: 0 0 0 10px rgba(202, 59, 171, .2);
}

.rotateRangeInput:active::-moz-range-thumb {
    box-shadow: 0 0 0 10px rgba(202, 59, 171, .2);
    border: 2px solid #8B3DFF;
}

.rotateRangeInput:focus::-moz-range-thumb {
    box-shadow: 0 0 0 10px rgba(202, 59, 171, .2);
    border: 2px solid #8B3DFF;
}

#image-rotate-menu-title {
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 4px;
}