.popup-outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #969191b3;
    z-index: 1;
}

.popup-outer-container .popup-inner-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 40%;
    box-shadow: 3px 4px 8px 3px #f6f3f333;
}

.popup-header {
    width: 100%;
    height: 50px;
    background-color: #f2f2f2;
    border-radius: 5px 5px 0px 0px;
}

.popup-header-title {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 10px;
    color: #000;
}

.popup-header-close-icon {
    float: right;
    width: 25px;
    height: 25px;
    margin-top: 12px;
    margin-right: 10px;
    text-align: center;
    color: #ffffff;
    background: #ff0000;
    line-height: 25px;
    border-radius: 30px;
    cursor: pointer;
}

.popup-form-element {
    margin-top: 10px;
}

.popup-btn {
    height: 30px;
    width: 100px;
    margin-right: 10px;
    border-radius: 3px;
    color: white;
    border: none;
}

.popup-btn-save {
    background-color: #00bc6d;
}

.popup-btn-cancel {
    background-color: #f64e60;
}

.popup-btn-save:hover {
    color: black;
}

.popup-btn-cancel:hover {
    color: black;
}

.confirm-popup-inner-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color:white;
    padding: 20px;
    box-shadow: 0px 0px 10px #00000080;
    z-index: 2;
    border-radius: 10px;
    width: 40%;
}

.confirm-popup-action-container {
    display: flex;
    justify-content: end;
    text-align: center;
    margin-top: 20px;
    width: 100%;

    .btn-ok {
        background-color: var(--cr-red);
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
    }

}

.confirm-bv-label {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.confirm-popup-heading {
    font-size: 16px;
    font-weight: 700;
    text-align: start;
    margin-bottom: 10px !important;
}

.confirm-popup-content {
    margin-bottom: 10px;
    font-size: 15px;
}


/*loader Style*/
.loader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 20px;
    border-radius: 5px;
    z-index: 3;
}

.loader-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    padding: 20px;
    z-index: 2;
}

.custom-loader {
    width: 50px;
    height: 50px;
    display: grid;
    border-radius: 50%;
    -webkit-mask: radial-gradient(farthest-side, #0000 40%, #000 41%);
    background: linear-gradient(0deg, #00000080 50%, rgb(0, 0, 0) 0) center/4px 100%,
        linear-gradient(90deg, #00000040 50%, #000000bf 0) center/100% 4px;
    background-repeat: no-repeat;
    animation: s3 1s infinite steps(12);
}

.custom-loader::before,
.custom-loader::after {
    content: "";
    grid-area: 1/1;
    border-radius: 50%;
    background: inherit;
    opacity: 0.915;
    transform: rotate(30deg);
}

.custom-loader::after {
    opacity: 0.83;
    transform: rotate(60deg);
}

@keyframes s3 {
    100% {
        transform: rotate(1turn)
    }
}

.image-div,
.image-div .row .col {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*end of loader Style*/

/*Form scroll*/
.scroll_container {
    overflow-y: auto;
    /* scrollbar-width: thin; */
}

.scroll_container::-webkit-scrollbar {
    width: 8px;
}

.scroll_container::-webkit-scrollbar-thumb {
    border-radius: 15px;
}

/*End of Form scroll*/