html,
body,
.dx-viewport {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    /* Disables pull-to-refresh but allows overscroll glow effects. */
    overscroll-behavior-y: contain;
}

.sx-page {
    height: 100%;
    width: 100%;
}

.sx-page-error {
    background-color: red;
}

.sx-messageBox {
    text-align: center;
    font-family: Roboto,Noto,sans-serif;
    box-shadow: 3px -2px 7px -1px rgba(0,0,0,0.75);
    margin: 2px;
    padding: 5px;
    /*border: 2px ridge rgba(0,38,53,0.1);*/
    display: none;
}
    .sx-messageBox h1 {
        margin-top: 2px;
        margin-bottom: 2px;
    }
    .sx-messageBox h2 {
        margin-top: 2px;
        margin-bottom: 2px;
    }
    .sx-messageBox h3 {
        margin-top: 2px;
        margin-bottom: 2px;
        font-size: 20px;
    }
    .sx-messageBox h4 {
        margin-top: 1px;
        margin-bottom: 1px;
    }
    .sx-messageBox p {
        font-size: 14px;
    }
    .sx-messageBox .sx-close-button {
        float: right;
    }

.sx-messageBoxSmall {
    text-align: center;
    /* font-family: Roboto,Noto,sans-serif; */
    /* border-radius: unset; */
    /* box-shadow: 3px -2px 7px -1px rgba(0,0,0,0.75); */
    /* margin: 2px; */
    padding: 5px;
    /* border: 2px ridge rgba(0,38,53,0.1); */
    display: none;
    /* background-color: white; */
     z-index: 2; 
    /* margin: 0px; */
}


.delete-button {
    text-align: center;
}

    .delete-button div {
        width: 98%;
    }

.msg {
    width: 100%;
    padding-bottom: 10px;
}

.dx-theme-ios .msg-button-left {
    width: 44%;
    margin: 0 4% 0 0;
    float: left;
}

.dx-theme-ios .msg-button-right {
    width: 44%;
    margin: 0 0 0 4%;
    float: left;
}

.dx-theme-ios #deleteConfirmation {
    height: 135px !important;
}

.dx-theme-android .msg-button-left {
    width: 42%;
    margin: 0 3% 0 0;
    float: left;
}

.dx-theme-android .msg-button-right {
    width: 42%;
    margin: 0 0 0 3%;
    float: left;
}

.dx-theme-android #deleteConfirmation {
    height: 150px !important;
}


#floatBarsG {
    position: relative;
    width: 192px;
    height: 23px;
    margin: auto;
    margin-top: 25px;
}

.floatBarsG {
    position: absolute;
    top: 0;
    background-color: rgb(0,0,0);
    width: 23px;
    height: 23px;
    animation-name: bounce_floatBarsG;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    transform: scale(.3);
}

#floatBarsG_1 {
    left: 0;
    animation-delay: 0.6s;
}

#floatBarsG_2 {
    left: 24px;
    animation-delay: 0.75s;
}

#floatBarsG_3 {
    left: 48px;
    animation-delay: 0.9s;
}

#floatBarsG_4 {
    left: 72px;
    animation-delay: 1.05s;
}

#floatBarsG_5 {
    left: 96px;
    animation-delay: 1.2s;
}

#floatBarsG_6 {
    left: 120px;
    animation-delay: 1.35s;
}

#floatBarsG_7 {
    left: 144px;
    animation-delay: 1.5s;
}

#floatBarsG_8 {
    left: 168px;
    animation-delay: 1.64s;
}



@keyframes bounce_floatBarsG {
    0% {
        transform: scale(1);
        background-color: rgb(0,0,0);
    }

    100% {
        transform: scale(.3);
        background-color: rgb(255,255,255);
    }
}