﻿.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid white;
    border-top: 3px solid #1B5A1E;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#overlay {
    height: 100%;
    width: 100%;
    background: #e9ecef;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

body {
    /*padding-top: 50px;*/
    /*padding-bottom: 20px;*/
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* 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,
.amsify-suggestags-area,
.amsify-suggestags-list {
    max-width: 420px;
}

/* width */
::-webkit-scrollbar {
    width: 14px;
}

/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #1B5A1E;
    border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #858796;
}

/* For ISDS Alert Helper*/
.alert-float-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.alert-inner-message {
    width: 75%;
    margin: 0 auto;
}
/* For ISDS Alert Helper*/