﻿body {
    padding-top: 0px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges, and min-width to keep from wrapping columns */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    /*min-width: 1500px;*/
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 600px;
}

.default-hide {
    display: none !important;
}

    .default-hide.unhide {
        display: block !important;
    }

.floatfix:after { 
   content: "."; 
   visibility: hidden; 
   display: block; 
   height: 0; 
   clear: both;
}

/* styles for validation helpers */
/* Commented out by Mehrzad, I am not sure where this has been used. */
/*.field-validation-error {
    color: #b94a48;
}*/

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

/* DMS styles */
.flip-container .back,
.flip-container .front {
    border: 5px solid #00bcf2;
    padding-bottom: 30px;
    padding-top: 30px;
}

#content {
    position: relative;
    background: #fff;
    padding: 50px 0 0 0;
}

.option {
    width: 140px;
    margin: 5px;
}

div.correct p {
    color: green;
}

div.incorrect p {
    color: red;
}

.btn {
    border-radius: 0;
}

.flip-container div.front, .flip-container div.back.flip {
    display: block;
}

.flip-container div.front.flip, .flip-container div.back {
    display: none;
}

.k-dialog-titlebar {
    border-color: inherit;
    /*background-color: #3276b1;*/
    background-color: #269abc;
    color: #fafafa;
}
 .k-window-titlebar {
    border-color: inherit;
    background-color: #269abc;
    color: #fafafa;
}

.k-i-loading::before,
.k-loading-image::before {
    margin-top: -1.5em;
    margin-left: -1.5em;
    width: 3em;
    height: 3em;
    animation: k-loading-animation 0.7s linear infinite;
}

.k-i-loading::after,
.k-loading-image::after {
    margin-top: -0.75em;
    margin-left: -0.75em;
    width: 1.5em;
    height: 1.5em;
    animation: k-loading-animation reverse 1.4s linear infinite;
}

.k-loading-mask {
    position: fixed; /* Ensures the mask stays in the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000; /* Ensure it's above other elements */
}

.k-loading-indicator {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.k-checkbox{
    border-color: rgba(0,0,0,.2);
    border-width: 2px;
}
.k-separator {
    border-top: 1px solid #ccc;
    margin: 4px 0;
    height: 2px;
    padding: 0;
    pointer-events: none;
}
.blurred {
    filter: blur(6px);
    pointer-events: none; /* Optional: prevent interaction while blurred */
    user-select: none; /* Optional: prevent text selection */
    transition: filter 0.3s ease;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


