html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.container {
    margin-top: 80px;
}

.footer {
    line-height: 30px !important;
}

.form-group {
    margin-bottom: 15px;
}

.control-label, .field-validation-error {
    color: #6c757d;
    font-size: 85%;
}

p {
    margin-bottom: 0px;
}

.table, .table tr, .table th, .table td {
    border-collapse: unset;
    border: none !important;
}
    /*.table tr:hover {
        background-color: #0d6efd0d;
    }*/

    .table thead {
        color: #343a40;
        background-color: #f8f9fa;
    }

        .table thead th {
            font-weight: 600;
        }

    .table tbody td {
        border-bottom: solid 0.5px #dee2e6 !important;
    }

.nav-link:hover {
    color: #0d6efd !important;
    transition: all 0.2s linear;
}

.DiabledIndication {
    filter: grayscale(25%);
    opacity: 0.6;
    pointer-events: none;
}


.bg-orange {
    background-color: #fd7e14;
}

.bg-primary-transperent {
    background-color: #0d6efd0d;
}

.bg-success-transperent {
    background-color: #1987540d;
}

.bg-danger-transperent {
    background-color: #dc35450d;
}

.bg-warning-transperent {
    background-color: #ffc1070d;
}

.bg-orange-transperent {
    background-color: #fd7e140d;
}

.bg-teal-transperent {
    background-color: #20c9970d;
}

.bg-info-transperent {
    background-color: #0dcaf00d;
}

.bg-indigo-transperent {
    background-color: #6610f20d;
}

.text-indigo {
    --bs-text-opacity: 1;
    color: var(--bs-indigo) !important;
}

.text-orange {
    --bs-text-opacity: 1;
    color: var(--bs-orange) !important;
}

.text-teal {
    --bs-text-opacity: 1;
    color: var(--bs-teal) !important;
}

.text-pink {
    --bs-text-opacity: 1;
    color: var(--bs-pink) !important;
}


.border-orange {
    border-color: var(--bs-orange) !important;
}

.border-indigo {
    border-color: var(--bs-indigo) !important;
}

.border-teal {
    border-color: var(--bs-teal) !important;
}


.bg-primary-transperent-hover:hover {
    background-color: #0d6efd0d;
}

.bg-success-transperent-hover:hover {
    background-color: #1987540d;
}

.bg-danger-transperent-hover:hover {
    background-color: #dc35450d;
}
/* ----------- Home page : background image --------------*/
.FadeIn {
    animation: 1s linear 0s 1 FadeIn;
}

@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* ------ Home Page : text --------------------------*/
.lineUp {
    position: relative;
    text-transform: uppercase;
    font-size: 2em;
    letter-spacing: 4px;
    overflow: hidden;
    background: linear-gradient(90deg, #000, #fff, #000);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
    0% {
        background-position: -500%;
    }

    100% {
        background-position: 500%;
    }
}

/* ------ Rotate 0-360 image --------------------------*/

.Spin {
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.IconButton {
    width: 33px;
    height: 33px;
    cursor: pointer;
    padding: 4px;
    margin-left: 4px;
    margin-right: 4px;
    filter: drop-shadow(1px 1px 2px #6c757d1c);
}

    .IconButton:hover {
        padding: 0px;
        transition: all linear 0.2s;
        filter: drop-shadow(2px 2px 5px #6c757d5d);
    }
/*------------------------------ Detail Report Page -----------------------------*/

.DetailReportSectionTitle {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb),var(--bs-text-opacity)) !important;
    padding: 1rem !important;
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    border-left: solid 3px #6c757d !important;
}

/*------------------------------ Scrutiny Report Page -----------------------------*/

#ReportContainer .table td,
#ReportContainer .table th
#ReportContainer .table tr td,
#ReportContainer .table tr th
#ReportContainer .table tbody td,
#ReportContainer .table thead th {
    /*.table td,
.table th
.table tr td,
.table tr th
.table tbody td,
.table thead th {*/
    border-collapse: unset;
    border: none !important;
    border-right: solid 0.02px #dee2e6 !important;
    border-bottom: solid 0.02px #dee2e6 !important;
}


.SectionTitle {
    /*background-color: #0d6efd0d !important;*/
    background-color: #0d6efd42 !important;
}

.DividerRow {
    visibility: hidden;
}

.TableCellTitle {
    /*background-color: #6c757d0d !important;*/
    background-color: #e9ecef66 !important;
    font-weight: 600;
    color: #343a40 !important;
    padding: 5px !important;
}

.CellSuccess {
    /*    font-weight: 600;
    --bs-text-opacity: 1;
    color: var(--bs-teal) !important;*/
}

.CellFail {
    font-weight: 600;
    --bs-text-opacity: 1;
    color: var(--bs-red) !important;
}

.CellCompare {
    /*    font-weight: 600;
    --bs-text-opacity: 1;
    color: var(--bs-blue) !important;*/
}

.PreWrapText {
    white-space: pre-wrap;
}

.RuleSuccess {
    background: url("../success.png") no-repeat;
    background-size: 20px;
    background-position: center;
    content: 'success';
}

.RuleFail {
    background: url("../Failure.png") no-repeat;
    background-size: 20px;
    background-position: center;
    content: 'failed';
}

#ToolBox {
    position: fixed;
    top: 0px;
    right: 10px;
    width: 150px;
    transition: all linear 0.5s;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    justify-content: space-evenly;
}

.TextDecorationNone {
    text-decoration: none
}

.ml-0 {
    margin-right: 0rem !important;
}

.ml-05 {
    margin-left: 0.5rem !important;
}

.ml-1 {
    margin-left: 1rem !important;
}

.mr-0 {
    margin-right: 0rem !important;
}

.mr-05 {
    margin-right: 0.5rem !important;
}

.mr-1 {
    margin-right: 1rem !important;
}

.bgTablehead {
    background-color: #86bbd8;
}

.borderBottom {
    border-bottom: solid 1px #86bbd8;
}

.NavShadow {
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .05);
}

.bgSection {
    box-shadow: -10px 10px 10px -6px #86bbd8;
    -moz-box-shadow: -10px 10px 10px -6px #86bbd8;
    -webkit-box-shadow: -10px 10px 10px -6px #86bbd8;
}

.bgTablebodyRow:hover {
    box-shadow: 0px 0px 15px 0px #86bbd8;
    -moz-box-shadow: 0px 0px 15px 0px #86bbd8;
    -webkit-box-shadow: 0px 0px 15px 0px #86bbd8;
}

.NonPointerEvent {
    pointer-events: none;
}
.hideElement {
    display: none;
}

.showElement {
    display: block;
}

.cursorPointer {
    cursor: pointer !important;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        cursor: inherit;
        display: none;
    }
@-webkit-keyframes modal-animation {
    from {
        top: -100px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

@keyframes modal-animation {
    from {
        top: -100px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}
