@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* font-size: 13px; */
}

input::placeholder {
    font-size: 12px;
}

.bordercustom{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.app-main{
        background: url(../images/regal.png) repeat;
}

.app-theme-white .app-page-title {
    background:none;
}

@media (max-width: 991.98px){
.popover, .dropdown-menu {
    position: fixed !important;
    z-index: 50;
    left: 5% !important;
    /*top: 28% !important;*/
    top: 175px !important;
    width: 90% !important;
    transform: translateY(-50%) !important;
    min-width: 10px !important;
    border-radius: 10px;
   /* border-style: dashed;*/
}

.app-header .app-header__content {
    position: absolute;
    left: 5%;
    width: 90%;
    border-radius: 10px;
    padding: 0 10px;

}

.app-header .app-header__content.header-mobile-open {
    visibility: visible;
    opacity: 1;
    top: 60px;
}
}

.tr { cursor: pointer; }

.fa.fa-trash{
    color: #d92550;
}

/*.fa.fa-edit{
    color: #f7b924;
}*/

/* label:has(+ [class*='form-control'] [required])::after, */
/* label:has(+ [required])::after, */
.required::after,
label:has(+ div > input[required])::after {
  content: '*';
  color: red;
  font-size: 80%;
  vertical-align: super;
}