/* here you can put your own css to customize and override the theme */

/***
Rounded Portlets
***/
/*
.portlet {
	border-radius: 4px !important;
}

.portlet .portlet-title {
	border-radius: 4px 4px 0px 0px !important;
}

.portlet .portlet-body,
.portlet .portlet-body .form-actions  {
	border-radius: 0px 0px 4px 4px !important;
}
*/


/*----------------- FCR Generate report loader -----------------*/
.flex-loader {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: hsl(210, 25%, 98%);
    text-align: center;
    font-family: serif;
    font-weight: 400;
    align-items: center;
}

#reportLoader {
    width: 3.25em;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
}

#reportLoader-circle {
    fill: none;
    stroke: hsl(210, 25%, 98%);
    stroke-width: 5;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}
/*----------------- FCR Generate report loader -----------------*/
/*------------------ image block --------------*/
.img-uploading-loading {
    background-color: #000000c9;
    width: 500px;
    padding: 7px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
/*------------------ image block --------------*/