﻿body {
    font-size: .85em;
    font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
    color: #232323;
    background-color: #fff;
}

header, footer, nav, section {
    display: block;
}

/* Styles for basic forms
-----------------------------------------------------------*/
fieldset {
    border: 1px solid #ddd;
    padding: 0 1.4em 1.4em 1.4em;
    margin: 0 0 1.5em 0;
}

legend {
    font-size: 1.2em;
    font-weight: bold;
}

textarea {
    min-height: 75px;
}

.editor-label {
    margin: 1em 0 0 0;
}

.editor-field {
    margin: 0.5em 0 0 0;
}


/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #f00;
}

.field-validation-valid {
    display: none;
}

/*.input-validation-error {
    border: 1px solid #f00;
    background-color: #fee;
}*/

.validation-summary-errors {
    font-weight: bold;
    color: #f00;
}

.validation-summary-valid {
    display: none;
}

/*
    loadmask
*/
.loadmask {
    z-index: 100;
    position: absolute;
    top:0;
    left:0;
    -moz-opacity: 0.5;
    opacity: .50;
    filter: alpha(opacity=50);
    background-color: #CCC;
    width: 100%;
    height: 100%;
    zoom: 1;
}
.loadmask-msg {
    z-index: 20001;
    position: absolute;
    top: 0;
    left: 0;
    border:1px solid #6593cf;
    background: #c3daf9;
    padding:2px;
}
.loadmask-msg div {
    padding:5px 10px 5px 25px;
    background: #fbfbfb url('../images/loadmask.gif') no-repeat 5px 5px;
    line-height: 16px;
	border:1px solid #a3bad9;
    color:#222;
    font:normal 11px tahoma, arial, helvetica, sans-serif;
    cursor:wait;
}
.masked {
    overflow: hidden !important;
}
.masked-relative {
    position: relative !important;
}
.masked-hidden {
    visibility: hidden !important;
}


    .custom-checkbox input {
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .custom-checkbox .checkmark {
        position: absolute;
        top: 0;
        left: 0; 
        height: 20px;
        width: 20px;
        background-color: #eee;
        border-radius: 4px;
        transition: background-color 200ms;
    }

        .custom-checkbox .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 37%;
            top: 10%;
            transform: translate(-50%, -50%) rotate(45deg);
            width: 3px;
            height: 11px;
            border: solid white;
            border-width: 0 3px 3px 0;
        }

    .custom-checkbox input:checked + .checkmark {
        background-color: #2196F3;
    }

        .custom-checkbox input:checked + .checkmark:after {
            display: block;
        }

        .custom-checkbox input:checked + .checkmark:after {
            animation: checkmark-expand 200ms ease-out forwards;
        }

@keyframes checkmark-expand {
    0% {
        transform: scale(0) rotate(45deg);
    }

    100% {
        transform: scale(1) rotate(45deg);
    }
}

.show_void_tr {
    opacity: .35;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ff4d4f;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-size: 14px;
    cursor: pointer;
    z-index: 9999;
    animation: fadeInUp 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 250px;
}

.toast-close {
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
}

.hidden {
    display: none;
}
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}