﻿body {
    padding-top: 50px;
    padding-bottom: 70px;
}
@media (max-width: 1920px) {
    body {
        padding-top: 75px;
    }
}
@media (max-width: 960px) {
    body {
        padding-top: 75px;
    }
}
/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.footer {
    position: fixed;
    bottom: 0;
    height: 50px;
    left: 0;
    width: 100%;
    background-color: #b6ff00;
    border: 2px solid red;
    opacity: .5;
    z-index: 1;
}
/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
    resize: none;
}

/*PH13092017*/
.text-overflow-dynamic-container {
    position: relative;
    max-width: 100%;
    padding: 0 !important;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    vertical-align: text-bottom !important;
}
.text-overflow-dynamic-ellipsis {
    position: absolute;
    white-space: nowrap;
    overflow-y: visible;
    overflow-x: hidden;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    max-width: 100%;
    min-width: 0;
    width:100%;
    top: 0;
    left: 0;
}
.text-overflow-dynamic-container:after,
.text-overflow-dynamic-ellipsis:after {
    content: '-';
    display: inline;
    visibility: hidden;
    width: 0px;
}

.centerit{
    text-align: center;
}

.form-horizontal2 {
    margin: 0 25px;
    text-align: center;
}

.subjectwidth{
    width: 300px;
}

.noXButton::-ms-clear {
    width: 0;
    height: 0;
}

.NewTextbox {
    padding: 4px;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loaderitem {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid red; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: auto;
}


.loader {
    z-index: 1200;
    position: absolute;
    display: flex;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(100, 100, 100, 0.5);
}

/*PH04092023 - Loading animation using a gif file*/
#loadernew {
    position: fixed;
    left: 1px;
    top: 1px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('images/wait.gif') 50% 50% no-repeat;
    animation: cssAnimation 0s 0.5s forwards; /*PH04092023 - Set time before the animation appears on screen*/
    visibility: hidden; /*PH04092023 - Default to hidden*/
}

@keyframes cssAnimation {
    to {
        visibility: visible; /*PH04092023 - Becomes visible after the time has elapsed*/
    }
}