﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300,400,700&display=swap');

@import url('responsive.css');
@import url('XX_Base.css');
@import url('XX_Fonts.css');
@import url('XX_Colors.css');
@import url('XX_Utilities.css');
@import url('XX_Tables.css');
@import url('XX_Menus.css');
@import url('XX_Bootstrap_Custom.css');

/*#region ================================ GENERAL ================================ */
.NormalBody {
    background-color: var(--b_Body) !important;
    color: var(--c_Normal) !important;
    background-image: url(/images/image/Bg_Body.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.BlankBody {
    background-color: #fff !important;
    color: var(--c_Normal) !important;
}

.InputS {
    padding: 4px !important;
    font-size: 11px !important;
}
​.CursorPointer {
    cursor: pointer;
}
.btnpadder {
    padding-right: 50px !important;
    padding-left: 50px !important;
}

.Underline, .UnderLine {
    text-decoration: underline !important;
}
.NoUnderline, a.NoUnderline:hover {
    text-decoration: none;
}
.NoWrap {
    white-space: nowrap;
}
.btnPadder1 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}
.btnPadder2 {
    padding-left: 70px !important;
    padding-right: 70px !important;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
    background: rgba(0,0,0,.2);
}

.overlay_wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.overlay_spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner2 {
    width: 80px;
    height: 80px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: none;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 9999;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} 
/*#endregion */

/*#region ================================ FORM OBJECT ================================ */
.select2 {
    width: 100% !important;
}
.select2-container--default .select2-selection--single {
   
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 34px !important;
    }
.select2-container--default .select2-selection--multiple {
}
.SetReadOnly {
    cursor: no-drop;
    user-select: none;
    pointer-events: none;
    opacity: 0.6;
}

    .SetReadOnly select option {
        display: none;
    }
/*    .SetReadOnly +span +.selection {
        display: none;
    }*/
/*#endregion */

/*#region ================================ VALIDATIONS ================================ */
.RFVTitle {
    font-size: 11px;
    color: var(--c_Danger) !important;
    font-weight: bold;
    margin-left: 4px;
}

.RFVW {
    font-size: 10px;
    color: #ffffff !important;
    background-color: var(--c_Danger);
    padding: 0px 4px;
}

.RFVBorder {
    border: 1px solid var(--c_Danger) !important;
}

.validation-summary-errors {
    color: #ff2e42;
    font-weight: bold;
    font-size: 0.875rem;
}

.validation-summary-valid {
    display: none;
}
.field-validation-error {
    color: #ff2e42 !important;
    font-weight: bold;
    font-size: 0.75rem;
}

input.input-validation-error, select.input-validation-error, textarea.input-validation-error {
    border: 1px solid #ff2e42 !important;
}

[data-type='validator-error'] {
    font-size: 10px;
    position: absolute;
    z-index: 10;
    margin-top: 2px;
    color: #ffffff;
    background: rgb(200, 53, 53);
    box-shadow: 0 3px 2px -2px rgba(211, 77, 77, 0.47);
    padding: 3px 7px;
    border-radius: 1px;
    pointer-events: none;
}

    [data-type='validator-error']:before {
        content: '';
        width: 0;
        height: 0;
        top: -5px;
        position: absolute;
        left: 6px;
        border-left: 5px solid rgba(0, 0, 0, 0);
        border-right: 5px solid rgba(0, 0, 0, 0);
        border-bottom: 5px solid #c83535;
    }

.no-left-rounded {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    margin-top: 1px;
}

/*#endregion */
