#root.theme-loaded {
    display: none;
}
@-webkit-keyframes loadingIndicatorDelay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes loadingIndicatorDelay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ellipsis-anim span {
    opacity: 0;
    -webkit-animation: ellipsis-dot 1s infinite;
    animation: ellipsis-dot 1s infinite;
}

.ellipsis-anim span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.ellipsis-anim span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.ellipsis-anim span:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes ellipsis-dot {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes ellipsis-dot {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.custom-notes {
    overflow-wrap: anywhere;
    justify-content: center;
    margin: 0px auto;
    width: 70%;
}

.loading-app-icon {
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .loading-app-icon {
        width: 70%;
    }
    .w-md-75 {
        width: 75%;
    }
}

@media (min-width: 992px) {
    .loading-app-icon {
        width: 40%;
    }
}

@-webkit-keyframes animateAppLoadingIcon {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes animateAppLoadingIcon {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.animateAppLoadingIcon {
    -webkit-animation-name: animateAppLoadingIcon;
    animation-name: animateAppLoadingIcon;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* Main Nav */
.br-wizard {
    height: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.br-wizard .wizard-progress {
    background-color: var(--background-alternative);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: 164px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: var(--spacing-scale-7x);
    width: 100%;
}

.br-wizard .wizard-progress .wizard-progress-btn {
    background-color: transparent;
    border: 0;
    box-shadow: none !important;
    color: var(--interactive);
    font-size: var(--font-size-scale-up-01, 16.8px);
    line-height: 19px;
    max-height: 90px;
    padding-bottom: 0;
    padding-top: var(--spacing-scale-2x);
    position: relative;
    text-indent: 0;
    transition-delay: 0s;
    transition-duration: 0.15s;
    transition-property: all;
    transition-timing-function: linear;
}

.wizardBorder {
    border: 1px solid #f2f2f2;
    margin-top: -30px;
    margin-bottom: -50px;
}

.cirle-wizard {
    z-index: 1;
    margin: 5px;
    position: relative;
    display: block;
    width: 100%;
    padding-right: 18px;
}

.cirle-wizard > ul {
    align-content: center;
    align-items: center;
    counter-reset: stepCount;
    display: flex;
    justify-content: space-around;
    margin: 15vh auto 5vh;
}

@media (max-width: 767px) {
    .cirle-wizard > ul {
        /* margin: 5vh auto 5vh; */
        margin: 13vh -4vh 5vh;
    }
}
@media only screen and (max-width: 1024px) and (min-width: 1024px) {
    .cirle-wizard > ul {
        align-items: unset;
        padding-top: 15px;
    }
}

@media (max-width: 330px) {
    .cirle-wizard > ul {
        /* margin: 5vh auto 5vh; */
        margin: 3vh -2vh 5vh;
    }
}

/* @keyframes slidein { 0% { left: 0%; } 100% { left: 100%; }  } */

.cirle-wizard > ul > li {
    background: #32508c;
    color: white;
    content: ' ';
    transition: all 1.1s ease-out;
    display: flex;
    flex-grow: 1;
    height: 0.3em;
    line-height: 1em;
    margin: 0;
    position: relative;
    text-align: right;
    z-index: -1;
    margin-top: -20px;
    margin-bottom: -30px;
    /* animation: slidein 3s infinite content; */
}

.cirle-wizard > ul > li::before {
    color: white;
    transition-delay: 1.2s;
    background: #32508c;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    content: '\2713';
    height: 2.2em;
    left: -2em;
    line-height: 2em;
    position: absolute;
    text-align: center;
    top: -1em;
    width: 2.2em;
    border: 4.5px solid white;
}

.cirle-wizard > ul > li.active {
    background-color: #c4c4c4;
    /* border: 1px solid #C4C4C4; */
    content: '';
}

.cirle-wizard > ul > li.active ~ li {
    background-color: #c4c4c4;
    /* border: 1px solid #C4C4C4; */
    content: '';
}

.cirle-wizard > ul > li.active ~ li::before {
    background-color: #eeeeee;
    border: 4.5px solid white;
    content: '';
}

.cirle-wizard > ul > li:last-child {
    flex-basis: 0;
    flex-grow: 0;
    flex-shrink: 1;
    background-color: white !important;

    /* Shorthand: flex: 0 1 0; */
}

.cirle-wizard > ul.bigger {
    font-size: 1.3em;
}

.cirle-wizard > ul.highlight-active .cirle-wizard > ul > li.active::before {
    font-size: 1.6em;
    background: maroon;
}

.cirle-wizard > ul > li .content {
    /* position: relative;
    left: -25px !important;
    bottom: 40px !important;
    color: #808080;
    padding-left: 13px;
    width: 69px;
    margin: -28px;
    text-align: center; */
    position: relative;
    left: -80px !important;
    bottom: 60px !important;
    color: #808080;
    width: 140px;
    margin: 0px -100px 0 0;
    text-align: center;
}

@media (max-width: 998px) {
    .cirle-wizard > ul > li .content {
        display: none;
    }

    .cirle-wizard > ul {
        align-content: start;
        align-items: start;
    }

    .cirle-wizard > ul > li {
        margin-top: -18px;
    }
}

.cirle-wizard > ul > li.done .content {
    color: #32508c;
}

@media (max-width: 767px) {
    .cirle-wizard > ul > li .content {
        /* display: none; */
        font-size: 10px;
    }
}

@media (max-width: 330px) {
    .cirle-wizard > ul > li .content {
        display: none;
        /* font-size: 8px; */
    }
}

/* Main Nav */

/* left Nav */
.line {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
}

@media only screen and (max-width: 1400px) and (min-width: 769px) {
    .line:after {
        content: ' ';
        width: 1px;
        border: 1px dashed #a4a5b2;
        position: absolute;
        z-index: 1;
        top: 73px;
        bottom: 53px;
        left: 15%;
        display: none;
    }
}

@media only screen and (max-width: 2400px) and (min-width: 1400px) {
    .line:after {
        content: ' ';
        width: 1px;
        border: 1px dashed #a4a5b2;
        position: absolute;
        z-index: 1;
        top: 73px;
        bottom: 53px;
        left: 21%;
        display: none;
    }
}

.fr {
    float: right;
}

.cf:after {
    clear: both;
}
.cf:before,
.cf:after {
    content: ' ';
    display: table;
}

.block {
    width: 50%;
    position: relative;
    padding: 0 50px 0 0;
    clear: both;
}

.fr {
    padding: 39px 0 0 50px;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px dashed #a4a5b2;
    content: '1';
    float: right;
    margin-right: -85px;
    margin-top: -1em;
    color: #808080;
    position: relative;
    text-align: center;
    padding-top: 15px;
    background-color: white;
    z-index: 2;
}

.fr .active {
    background-color: #eeeeee;
    color: #32508c;
}

.fr .circle {
    float: left;
    margin-left: -159px;
}
.circle.first:before,
.circle.last:before {
    content: ' ';
    position: absolute;
    width: 4px;
    left: 50%;
    margin: 0 0 0 -2px;
    background: #000;
    bottom: 100%;
    height: 99em;
    z-index: 3;
    background: #000;
}
.circle.last:before {
    bottom: auto;
    top: 100%;
}

.frContent {
    margin-left: -95px;
    font-size: 18px;
    line-height: 20px;
}

.requiredSteps {
    margin-top: 5px;
    padding-left: 60px;
}

/* .fileUploadContainer .containerDisplay .containerDisplayItem {
    border-style: solid;
    border-color: #c6c9df;
    background: #ffffff;
    width: 100% !important;
    border-radius: 5px;
} */

.fileUploadContainer .dropzone {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0px 0 0px !important;
    border-width: 2px;
    border-radius: 2px;
    border-style: none !important;
    background-color: white !important;
    color: #808080;
    outline: none;
    margin: 5px 5% 10px;
    transition: 0.2s;
}

.fileUploadContainer .containerDisplay .containerDisplayItem {
    border-style: solid;
    border-color: #c6c9df;
    background: #ffffff;
    width: 44% !important;
    border-radius: 5px;
}

.fileUploadContainer .containerDisplay .containerDisplayItem i {
    font-size: 0em !important;
    width: 100%;
}

.fileUploadContainer section {
    margin-left: -25px;
}

.searchMatched {
    font-style: italic;
}

/* Right Nav */
/* Custom CSS for export buttons */
.pull-right .ux-btn-align-horizontal .my-0.border-success,
.pull-right .ux-btn-align-horizontal .my-0.border-danger {
    background-color: #0076a8 !important;
    color: #ffffff !important;
    border: 2px solid #0076a8 !important;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.24) !important;
    float: right !important;
    min-width: 120px !important;
    margin-bottom: 15px !important;
}
.pull-right .ux-btn-align-horizontal .ux-btn-pre-icon-wrapper {
    display: none !important;
}
.d-block.mb-2 .pull-right {
    margin-right: 1.75rem;
    float: right;
    padding-right: 0.5rem;
}
.my-task-card-corner {
    border-radius: 6px !important;
    border: 1.5px solid #006f9e !important;
}
/* Custom CSS for export buttons */
.loading-app {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 49.9%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #25272d;
    /* -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.2s;
    -webkit-animation-name: loadingIndicatorDelay;
    animation-name: loadingIndicatorDelay;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; */
}

.bar-load .outerWrapper-load {
    position: relative;
    width: 100px;
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    background-color: transparent;
    background-clip: padding-box;
}
.bar-load .outerWrapperBaseBar-load {
    position: absolute;
    width: 100px;
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    background-color: #fff;
    opacity: 0.2;
    background-clip: padding-box;
}
.bar-load .barStyle1-load {
    position: absolute;
    height: 4px;
    width: 100px;
    overflow: hidden;
    background-color: #fff;
    background-clip: padding-box;
    display: block;
    border-radius: 2px;
    will-change: left, right;
    animation-fill-mode: forwards;
    animation: long-load 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}
.bar-load .barStyle2-load {
    position: absolute;
    height: 4px;
    width: 100px;
    overflow: hidden;
    background-color: #fff;
    background-clip: padding-box;
    display: block;
    border-radius: 2px;
    will-change: left, right;
    animation-fill-mode: forwards;
    animation: short-load 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}
.bar .outerWrapperBaseBar {
    background-color: #fff !important;
}
.bar .barStyle1 {
    background-color: #fff !important;
}
.bar .barStyle2 {
    background-color: #fff !important;
}
.text-white-load {
    color: #ffffff !important;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.ux-modal-overlay-load {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(50, 50, 50, 0.8);
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
@keyframes short-load {
    0% {
        left: -200%;
        right: 100%;
    }
    60% {
        left: 107%;
        right: -8%;
    }
    100% {
        left: 107%;
        right: -8%;
    }
}
@keyframes long-load {
    0% {
        left: -35%;
        right: 100%;
    }
    60% {
        left: 100%;
        right: -90%;
    }
    100% {
        left: 100%;
        right: -90%;
    }
}
.ux-simple-accordian .ux-panel .ux-panel-body .icms-green span {
    color: #43b02a !important;
    font-weight: bold;
}

/* Chat bot integration changes start*/
.lex-web-ui-iframe {
    display: none;
}

@media (min-width: 768px) {
    .lex-web-ui-iframe:not(.lex-web-ui-iframe--minimize) {
        min-width: 25vw !important;
    }

    .lex-web-ui-iframe {
        /* top: 8px; */
        bottom: 6.8rem !important;
        margin-right: 5px;
        height: 70vh;
    }
    #lex-web-ui-fullpage {
        max-height: 70vh !important;
    }
}
@media (max-width: 768px) {
    .lex-web-ui-iframe {
        top: 0px;
        left: -2px;
        min-width: 100vw !important;
        right: 0px;
        height: calc(100vh - 45px);
    }
}
.min-button {
    text-transform: none !important;
}
/* Chat bot integration changes end*/
