﻿/* Set width on the form input elements since they're 100% wide by default */
.limitWidth {
    max-width: 1000px;
}

.pointercursor {
    cursor: pointer !important;
}

.defaultcursor {
    cursor: default !important;
}

/* Breadcrumbs */
.breadcrumb {
    border-bottom: 1px solid #ccc;
    background-color: transparent;
    border-radius: 0px;
}

.datePicker {
    background-color: white !important;
}

textarea[readonly="readonly"].readonly-proper, textarea[readonly].readonly-proper {
    background-color: white !important;
    resize: vertical !important;
    padding: 2px 5px !important;
}

/* Spinning loader */
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #337ab7; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
