/* 
 * Custom Measurement Button - Absolute Positioning
 * ================================================
 */

#custom-measurement-button {
    position: absolute;
    right: 20px;
    /* 20px from the right edge */
    bottom: 300px;
    /* 270px from the bottom */
}

/* Mobile Vertical Centering */
@media (hover: none) and (pointer: coarse) {
    #custom-measurement-button {
        bottom: calc(50% + 67.5px);
    }
}