/* see README.md */
#bot-standpunkt-mobile button.maximize {
    opacity: 0;
    width: 100%;
    height: calc(100% + 20px);
}

/* button is otherwise misplaced under lg width and right and bottom 20px needs to be
replaced by 40px anyway to be placed like the fingerprint on the left side */
#bot button.maximize {
    right: 40px !important;
    position: fixed !important;
    bottom: 40px !important;
}

@media (max-width: 768px) {
    /* placement like fingerprint on the left */
    #bot button.maximize {
        width: 40px !important;
        height: 40px !important;
        right: 24px !important;
        bottom: 24px !important;
    }

    #bot button.maximize .ms-Icon {
        transform: scale(0.5) !important;
        position: absolute !important;
        top: 5px !important;
        left: 3px !important;
    }
}

