﻿body {
}

#floatingRectangle {
    z-index: 1;
    position: fixed;
    left: 0;
    right: 0;
    width: 300px;
    bottom: 15px;
    height: 35px;
    padding: 4px;
    margin: auto;
    background-color: azure;
    opacity: 1;
    border: 1px;
    border-color: darkgrey;
    border-style: solid;
    text-align: center;
    box-shadow: 0px 0px 4px 4px Lightgrey;
}

#floatingRectangleTop {
    z-index: var(--zindex);
    position: fixed;
    left: 0;
    right: 0;
    width: 300px;
    bottom: 15px;
    height: 35px;
    padding: 4px;
    margin: auto;
    background-color: azure;
    opacity: 1;
    border: 1px;
    border-color: darkgrey;
    border-style: solid;
    text-align: center;
    box-shadow: 0px 0px 4px 4px Lightgrey;
}