body {
    position: unset !important;
}

/*jQuery Validation*/
.form-control.error {
    border-color: #e3342f !important;
    padding-right: calc(1.6em + 0.75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right calc(0.4em + 0.1875rem) center !important;
    background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) !important;
}

.form-control.error:focus {
    border-color: #e3342f;
    box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #a1cbef;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
}

label.error,
label.valid {
    color: #e3342f;
    margin-bottom: 0px;
    margin-top: 0.25rem;
    font-size: 100%;
    font-style: italic;
    width: 100%;
}

.control-label {
    text-align: left !important;
}

/*End jQuery Validation*/

/*Customized Button Size btn-md*/
.btn-md {
    padding: 0.2rem 0.6rem 0.2rem 0.6rem;
    font-size: 0.8rem;
    line-height: 1.60;
    border-radius: 0.3rem;
}

/*Customized Button Size btn-md*/

/*Page Hedaer <2021-03-16 JANAKA>*/
.page-title-bar {
    width: 100%;
    float: left;
    margin: 0px;
    text-decoration: none;
    box-shadow: 0px 1px 1px 0px rgb(0 0 0 / 20%);
    color: #FFF;
    min-height: 70px;
    margin-bottom: 10px;
}

.page-title-bar .icon-left {
    height: 100%;
    padding: 5px 10px 5px 0px;
    float: left;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: 10px;
}

.page-title-bar .icon-left span {
    color: black;
    font-size: 60px;
    text-align: center;
}

.page-title-bar .page-title-area {
    margin-top: auto;
}

.page-title-bar .page-title-cus {
    color: black;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 20px;
    text-transform: uppercase;
}

.page-title-bar .page-subtitle {
    color: gray;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 15px;
}

/*Page Hedaer*/

/*Readonly input fields <2021-03-16 JANAKA>*/
.form-control[disabled], .form-control[readonly] {
    color: #de6f6f !important;
}

/*Readonly input fields*/

/*Blinking*/
.blink-me {
    animation: blinker 3s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.5;
    }
}

/*Colorpicker dropdown menu*/
.colorpicker.dropdown-menu {
    z-index: 1000000;
}

/*Table Profile Images*/
td .td-prof-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/*Navigation Bottom Margin Because Of Footer*/
.page-sidebar .x-navigation {
    padding-bottom: 50px !important;
}

/*Sroll To Topup*/
#topcontrol {
    z-index: 1000000;
}

/*Page Content*/
.page-content {
    height: 500px;
}

@media (min-height: 500px) {
    .page-content {
        height: unset !important;
    }
}

.page-content-wrap{
    padding-bottom: 50px;
}

/*Footer*/
.footer {
    position: fixed !important;
}

/*Smart Wizard*/
.sw .tab-content .tab-pane {
    visibility: unset !important;
    min-height: 300px !important;
}

.sw .tab-content {
    overflow-y: unset !important;
}

.sw .nav .nav-link {
    font-size: 20px !important;
}

/*.sw ul li a small[width < 100] {*/
/*    display: none;*/
/*}*/

/*Modal Back-Drop*/
.modal-backdrop{
    pointer-events: none !important;
}

#viewContent .form-group, .viewContent .form-group {
    margin-bottom: unset !important;
}

.form-horizontal-customized .form-group{
    margin-bottom: 5px !important;
}

/*COMMENT NOTIFICATION*/
/* http://jsfiddle.net/rahilsondhi/FdmHf/4/ */
/*  http://www.cssportal.com/blog/create-css-notification-badge/ */
.badge1 {
    position: relative;
    z-index: 1;
}

.badge1[data-badge]:after {
    content: attr(data-badge);
    position: absolute;
    top: -10px;
    /*right: -10px;*/
    font-size: .7em;
    background: red; /*green*/
    color: white;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    /*border-radius:50%;*/
    border-radius: 3px;
    box-shadow: 0 0 1px #333;
}
/* END COMMENT NOTIFICATION*/

/* width */
.custom-scroll-bar{
    overflow-y: auto;
}
.custom-scroll-bar::-webkit-scrollbar {
    width: 4px;
    cursor: pointer;
}

/* Track */
.custom-scroll-bar::-webkit-scrollbar-track {
    box-shadow: transparent;
    /* border-radius: 10px; */
    cursor: pointer;
}

/* Handle */
.custom-scroll-bar::-webkit-scrollbar-thumb {
    background-color: transparent;
    /* border-radius: 10px; */
    cursor: pointer;
    opacity: 0;
}

/* Handle on hover */
.custom-scroll-bar::-webkit-scrollbar-thumb:hover {
    background-color: #333; background-color: rgba(0,0,0,0.5);
    cursor: pointer;
    transition: width 0.5s ease-in-out !important;
}

.custom-scroll-bar:hover::-webkit-scrollbar-thumb{
    background-color: #333; background-color: rgba(0,0,0,0.5);
    cursor: pointer;
    transition: width 0.5s ease-in-out !important;
}

.custom-scroll-bar:hover::-webkit-scrollbar-track{
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.123);
    cursor: pointer;
    transition: width 0.5s ease-in-out !important;
}

/*Other*/
.text-title{
    border-bottom-color: lightgrey;
}

.inner-informer{
    position: absolute; /* Position the badge within the relatively positioned button */
    top: -10px;
    right: -5px;
    font-size: .8em;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    /*border-radius:50%;*/
    border-radius: 3px;
    box-shadow: 0 0 1px #333;
}

.inner-informer-danger{
    background: red; /*green*/
    color: white;
}

.inner-informer-info{
    background: dodgerblue; /*green*/
    color: white;
}

.inner-informer-warning{
    background: goldenrod; /*green*/
    color: white;
}

.inner-informer-success{
    background: green; /*green*/
    color: white;
}