﻿.wizard.customwzrd > .content {
    background-color: #FFF;
}

.form-control.inputerror {
    border-color: #fa0000 !important;
    box-shadow: 0 0 0 0.2rem rgba(241, 0, 0, 0.25);
}

.wizard.customwzrd > .steps > ul > li {
    width: 25%;
}
.wizard.customwzrd.customwzrd-3steps > .steps > ul > li {
    width: 33%;
}

.form-group-multiselect .multiselect-container.dropdown-menu {
    max-height: 300px;
    overflow-y: scroll;
    width: 100%;
    font-size: 12px;
}
.form-check label{
    margin-left:4px;
}
.mt-3 {
    margin-top: 30px;
}
.removetitle {
    color: red;
    cursor: pointer;
    font-size: 12px;
}
.select2-container {
    width: 100% !important;
}

.notif {
    font-size: 11px;
    color: red;
    margin-bottom: 0;
    line-height: 22px;
    display: block;
    position: relative;
    height: 22px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #fabb08 !important;
    border: 1px solid #cca406 !important;
    color: #373737;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #000 !important;
}

.resultData {
    font-size: 16px;
    font-style: italic;
}

    .resultData span {
        font-weight: 600;
        font-style: normal;
        color: #000;
    }

    .resultData .trtotal {
        background: #015c90;
        color: #FFF !important;
    }

        .resultData .trtotal span {
            color: #FFF !important;
        }

.loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #ffffffba;
    z-index: 999999;
}

.loader {
    left: 50%;
    margin-left: -4em;
    font-size: 10px;
    border: .8em solid rgba(218, 219, 223, 1);
    border-left: .8em solid rgb(250, 187, 8);
    animation: spin 1.1s infinite linear;
}

    .loader, .loader:after {
        border-radius: 50%;
        width: 8em;
        height: 8em;
        display: block;
        position: absolute;
        top: 50%;
        margin-top: -4.05em;
    }

@keyframes spin {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}