﻿

/* @@@@@@@@@@@@@@@ DEFINING A ROUNDED-CORNER PANE @@@@@@@@@@@@@@@ */
/* instead of using this consider bootstrap panels */
/*.div-outline-rounded {
    position: relative;
    margin: 0 0;
    padding: 14px 19px 14px 19px;
    background-color: white;
    border: 1px solid #DDD;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}*/





/*body {
    padding-bottom: 20px;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}*/

input,
select,
textarea {
    max-width: 280px;
}

fieldset.traditional {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
}

legend.traditional {
    font-size: 1.2em !important;
    font-weight: bold !important;
    text-align: left !important;
    width: auto;
    padding: 0 10px;
    border-bottom: none;
}



/* @@@@@@@@@@@@@@ DEFINING SUMMARY MESSAGES FOR LOGIN @@@@@@@@@@@@@ */
/*
    Message styling beside a submit button.
    This is my alternative to boostrap alerts
*/

.summary-danger {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.3em;
    font-size: 13px;
    color: #C04848;
    font-weight: bold;
    padding-left: 10px;
    display: inline-flex;
}

.summary-success {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.3em;
    font-size: 13px;
    color: #5cb85c;
    font-weight: bold;
    padding-left: 10px;
    display: inline-flex;
}

.summary-warning {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.3em;
    font-size: 13px;
    color: #f0ad4e;
    font-weight: bold;
    padding-left: 10px;
    display: inline-flex;
}


/* example: <div class="error-summary">@Html.ValidationMessage("RequestAccessException")</div> */
.error-summary .field-validation-error {
    color: #a94442;
    font-weight: bold;
    padding-bottom: 15px;
}

/* example: <span class="element-error" asp-validation-for="Entity"></span> */
.element-error {
    font-size: smaller;
    color: #a94442;
}


/*.pure-css-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 16px solid #f3f3f3; 
    border-top: 16px solid #3498db; 
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px; 
    -webkit-animation: pure-css-loader-spin 1s linear infinite;
    animation: pure-css-loader-spin 1s linear infinite;
}

@keyframes pure-css-loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes pure-css-loader-spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}*/