/* THEME */
:root {
    --primary: #0275d8;
    --info: #5bc0de;
    --warning: #f0ad4e;
    --danger: #d9534f;
    --success: #5cb85c;
  
    --grad-primary: linear-gradient(135deg, #3b8be7 0%,#00e9ff 100%);
    --grad-info: linear-gradient(135deg, #64fdef 0%,#1d6fa3 100%);
    --grad-warning: linear-gradient(135deg, #ffa8a8 0%,#fcff00 100%);
    --grad-danger: linear-gradient(135deg, #ff9a8b 0%,#ff6987 100%); 
    --grad-success: linear-gradient(135deg, #6ff56f 0%,#48c628 100%);
  }
  
  a {
    cursor: pointer;
  }
  
  i.load::before {
    content:'Loading data....... please wait!';
    color: red;
    font-size: 14px;
    margin: 20px;
  }
 
  /* CURSOR */
  .hand {
    cursor:pointer;
  }
  
  /* FLEX-BOX */
  .flex-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
  }
  .flex-column {
    display: flex;
    flex-direction: column;
  }
  .flex-rsv {
    flex-direction: row-reverse!important;
  }
  .flex-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
  }
  .flex-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
  }
  .flex-around {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
  }
  .flex-between {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .item-center {
    align-items: center;
  }
  .flex1 {
    flex: 1;
  }
  .flex2 {
    flex: 2;
  }
  .flex3 {
    flex: 3;
  }
  .flex4 {
    flex: 4;
  }
  .flex5 {
    flex: 5;
  }
  .flex6 {
    flex: 6;
  }
  .flex7 {
    flex: 7;
  }
  .flex8 {
    flex: 8;
  }
  
  /* BORDER  */
  .rad5 {
    border-radius: 5px;
  }
  .rad8 {
    border-radius: 8px;
  }
  .rad10 {
    border-radius: 10px;
  }
  .rad15 {
    border-radius: 15px;
  }
  .rad20 {
    border-radius: 20px;
  }
  .rad50 {
    border-radius: 50% !important;
  }
  
  /* BACKGROUND */
  .bgw {
    background-color: white;
  }
  .bgtes {
    background-color: #ccc;
  }
  .bg-salmon {
    background-color: salmon;
    color: white;
  }
  .bg-alice {
    background-color: aliceblue;
  }
  .bg-cornsilk {
    background-color: cornsilk;
  }
  .bg-lavender {
    background-color: lavender;
  }
  .bg-gold {
    background-color: gold;
  }
  .bg-orange {
    background-color: orange;
    color: white;
  }
  .bg-skyblue {
    background-color: deepskyblue;
    color: white;
  }
  .bgshadow {
    box-shadow: 1px 5px 8px rgba(0,0,0,0.7);
  }
  .bgshadow1 {
    box-shadow: 1px 5px 8px rgba(0,0,0,0.1);
  }
  .bgshadow4 {
    box-shadow: 1px 5px 8px rgba(0,0,0,0.4);
  }
  .bg-blur {
    backdrop-filter: blur(3px);
  }
  .bg-danger,
  .bg-success,
  .bg-dark,
  .bg-secondary,
  .bg-info,
  .bg-primary {
    color: white !important;
  }
  .bg-warning {
    color: black !important;
  }
  .bs-success {
    background:var(--bs-success-bg-subtle);
  }
  .bs-warning {
    background:var(--bs-warning-bg-subtle);
  }
  .bs-info {
    background:var(--bs-info-bg-subtle);
  }
  .bs-danger {
    background:var(--bs-danger-bg-subtle);
  }
  .bs-primary {
    background:var(--bs-primary-bg-subtle);
  }
  /* ALERT */
  .alert-danger {
    text-align: center;
    background-color: pink;
    color: red;
    border: 1px solid red;
    padding: 8px;
  }
  .alert-warning {
    text-align: center;
    background-color: cornsilk;
    color: red;
    border: 1px solid red;
    padding: 8px;
  }
  .alert-info {
    text-align: center;
    background-color: #bfefff;
    color: blue;
    border: 1px solid blue;
    padding: 8px;
  }
  /* Height */
  .h100 {
    min-height: 100px;
  }
  .h80 {
    min-height: 80px;
  }
  .h50 {
    min-height: 50px;
  }
  .h-max {
    min-height:100vh;
  }
  /* Width */
  .w-max {
    width: 100%;
  }
  
  /* FONT STYLE */
  .f10 {
    font-size: 10px;
  }
  .f12 {
    font-size: 12px;
  }
  .f14 {
    font-size: 14px;
  }
  .f16 {
    font-size: 16px;
  }
  .f18 {
    font-size: 18px;
  }
  .f20 {
    font-size: 20px;
  }
  .f22 {
    font-size: 22px;
  }
  .f25 {
    font-size: 25px;
  }
  .f30 {
    font-size: 30px;
  }
  .f45 {
    font-size: 45px;
  }
  .f50 {
    font-size: 50px;
  }
  .f72 {
    font-size: 72px;
  }
  .fb {
    font-weight: bold;
  }
  .fi {
    font-style: italic;
  }
  .fdark {
    color: var(--dark);
  }
  .flight {
    color: var(--light);
  }
  .fblack {
    color: black;
  }
  .fr {
    color: red;
  }
  .fw {
    color: white;
  }
  .ftes {
    color: #888;
  }
  .fblue {
    color: blue;
  }
  .fgreen {
    color: #006600;
  }
  .fyellow {
    color: yellow;
  }
  .fshadow {
    text-shadow: 1px 5px 8px rgba(0,0,0,0.7);
  }
  
  /* SPACE */
  .line-1 {
    line-height: 1.1;
  }
  .line-2 {
    line-height: 1.2;
  }
  .line-3 {
    line-height: 1.3;
  }
  .line-4 {
    line-height: 1.4;
  }
  .line-5 {
    line-height: 1.5;
  }
  
  /* ANIMATION */
  .anim {
    transform: translate(0,0) scale(1);
    transition: 1s;
    opacity: 1;
  }
  .anim.fade-in {
    transform: scale(0.1);
    transition: 1s;
    opacity: 0;
  }
  .anim.from-top {
    transform: translateY(-500px);
    transition: 1s;
    opacity: 0;
  }
  .anim.from-bottom {
    transform: translateY(500px);
    transition: 1s;
    opacity: 0;
  }
  .anim.from-left {
    transform: translateX(-500px);
    transition: 1s;
    opacity: 0;
  }
  .anim.from-right {
    transform: translateX(500px);
    transition: 1s;
    opacity: 0;
  }
  .anim.spiral {
    transform: rotate(180deg);
    transition: 1s;
    opacity: 0;
  }
  .anim.zoom {
    transform: scale(1.15);
    transition: 1s;
    opacity: 1;
  }
  .anim.splash {
    transition: 1s;
    opacity: 0;
  }
  .anim.hide {
    display: none;
  }
  
  /* scroll bar */
  ::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .scroll-show::-webkit-scrollbar {
    width: 6px;
    height: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  ::-webkit-scrollbar-thumb {
    background: black;
  }
  
  /* Table */
  .table thead {
    position: sticky;
    top: 0;
    left: 0;
    z-index:10;
  }
  .table thead th, .table th {
    text-align: center;
  }
  
  /* FORM  */
  .form-grup {
    margin-top:10px;
  }
  .form-grup label {
    font-weight: bold;
    font-size: 11px;
    margin-bottom: 0;
    padding-left:10px;
  }
  .form-grup .form-control::placeholder{
    font-size: 12px;
    color: #AAA;
  }
  .form-grup label i {color:red;}
 
  /* action */
  .action {
    position:absolute;
    background-color: white;
    border-radius: 15px 15px 0 0;
    border-top: 5px solid var(--dark);
    padding: 10px;
    top:105vh;
    opacity: 0;
    left:0;
    width:100%;
    height: 100vh;
    z-index:12000;
    transition: 0.3s;
    display:none;
  }
  .action.active {
    transition: 0.3s;
    top: 20vh;
    opacity: 1;
    display:block;
  }
  .action.full {
    top: 0vh;
    transition: 0.3s;
    border-radius: 0;
    opacity: 1;
    height: 100vh;
    overflow:auto;
  }
  .action div.div-close {
    position:relative;
    margin-top:-30px
  }
  .action.full div.div-close {
    margin-top:0 !important;
  }
   /* list counter */
  .list-counter {
    display: none;
  }
  /* overflow */
  .over-flow-auto {
    overflow: auto;
    padding-bottom: 80px;
    padding-right: 10px;
  }
  .over-flow-hide {
    overflow: hide;
  }
  /* Zoom */
  .zoom9 {
    zoom: 0.9;
  }
  .zoom8 {
    zoom: 0.8;
  }
  .zoom7 {
    zoom: 0.7;
  }
  .zoom6 {
    zoom: 0.6;
  }
  .zoom5 {
    zoom: 0.5;
  }
  /* swal alert */
  .swal2-container {
    z-index: 20000!important;
  }
  /* INPUT TEXT EDITOR */
  .text-editor > div {
    background-color: #efefef;
    height: 200px;
    overflow:auto;
    border: 1px dashed #888;
    cursor: pointer;
    border-radius: 3px;
    padding: 8px;
  }    
    /* ANIMATION */
  .flip {
    animation: anim_flip 1s infinite;
  }
  .flip15 {
    animation: anim_flip 1.5s infinite;
  }
  .flip2 {
    animation: anim_flip 2s infinite;
  }
  .flip25 {
    animation: anim_flip 2.5s infinite;
  }
  .flip3 {
    animation: anim_flip 3s infinite;
  }
  
  @keyframes anim_flip {
      from { opacity: 1}
      to { opacity: 0}
  }
  
  /* FLAG */
  .badge.flag {
    font-size: 10px;
    transform: translate(-12px, -10px);
    margin-right: -8px;
  }

/* LAYER */
.layer, .layer-page {
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
}
.layer {
  background: black;
}
.layer-page {
  padding: 5px;
  overflow: auto;
}
/* MODAL */
.modal {
  z-index: 2000;
}
/* TOASTER */
.toaster {
  top: -20vh;
  right: 5px;
  left: 59%;
  width: 40%;
  font-size: 1em;
  opacity: 0.9;
  line-height: 1.2;
  transition: 0.5s;
  z-index: 10000;
}  
.toaster.show {
  top: 3vh;
}
@media (max-width:600px){
  .toaster {
    left: 2%;
    right: 2%;
    width: 96%;
  }
}
/* DISPLAY */
.hide {
  display: none;
}

/* UPLON THEMES *************************** */

/* height element */
.vh-100 { height: 100vh; }
.vh-95 { height: 95vh; }
.vh-90 { height: 90vh; }
.vh-85 { height: 85vh; }
.vh-80 { height: 80vh; }
.vh-75 { height: 75vh; }
.vh-70 { height: 70vh; }
.vh-65 { height: 65vh; }
.vh-60 { height: 60vh; }
.vh-55 { height: 55vh; }
.vh-50 { height: 50vh; }
 
/* form-grup */
.form-grup { padding: 0.2em; }
.form-control { background: aliceblue; border:1px solid #888 }

/* element tab */
.tab {
  display: flex;
  padding: 0.1em;
}
.tab div {
  flex:1;
  padding: 0.3em;
  text-align: center;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #888;
  cursor: pointer;
  color: #c5b9b9;
}
.tab div.active {
  border: 1px solid #888;
  border-top: 3px solid rgb(76, 76, 241);
  border-bottom: none;
  color: rgb(76, 76, 241);
}
/* Tab 2 */
.tab-2 {
  display: flex;
  padding: 0.1em;
}
.tab-2 div {
  flex:1;
  padding: 0.3em;
  text-align: center;
  border: none;
  border-bottom: 1px solid #888;
  cursor: pointer;
  color: #c5b9b9;
}
.tab-2 div.active {
  border: none;
  border-bottom: 3px solid rgb(76, 76, 241);
  color: rgb(76, 76, 241);
}
/* BUTTON */
.btn.btn-left { text-align: left!important; }
.btn.btn-right { text-align: right!important; }
/* TOP PANEL BUTTON */
.top-panel .btn:hover {
  color: blue;
  font-weight: bold;
}
.top-panel .btn.active {
  color: blue;
  font-weight: bold;
  border: 1px solid blue;
}
