html {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    height: 100%;
    background: #fff;
    scroll-behavior: smooth;
}
/* html {
    font-size: calc(1em + 1vw);
}
*/
body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: "Poppins", arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #4D4D4D;
}
body.fixed{
    overflow: hidden;
}

.container-custom{
    width: 100%;
    padding:0 20px;
}



.bx{
    font-size: 1.25rem;
}







/************* loader ball pulse ************************/
@-webkit-keyframes scale {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1; 
    }
    45% {
      -webkit-transform: scale(0.1);
              transform: scale(0.1);
      opacity: 0.7; 
    }
    80% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1; 
    } 
}
@keyframes scale {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1; 
    }
    45% {
      -webkit-transform: scale(0.1);
              transform: scale(0.1);
      opacity: 0.7; 
    }
    80% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1; 
    } 
}
  
.ball-pulse > div:nth-child(1) {
    -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
        animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); 
    }
  
.ball-pulse > div:nth-child(2) {
    -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
        animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); 
}
  
.ball-pulse > div:nth-child(3) {
    -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
        animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); 
}
  
.ball-pulse > div {
    background-color: #FF524D;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block; 
}





/***************** circular progress ************************/
.circular-progress-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow:hidden;
}
.counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*cursor:pointer;*/
    width:180px;
    height:180px;;
    /*max-width:100%;*/
    /*justify-content: flex-start;    */
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    /*font-size: calc(1em + 1vmin);*/
    -webkit-transition: height .2s ease-in-out;
    -o-transition: height .2s ease-in-out;
    transition: height .2s ease-in-out;
    background: #fafafa;
    border-radius:50%;
    /*box-shadow:0px 1px 10px 2px rgba(0,0,0,0.2);
    margin:1em 0;*/
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}
.percentage {
    position:absolute;
    text-align:center;
    top:50%;
    left:0;
    right:0;
    vertical-align:middle;
    font-size: 3rem;
    font-weight: bold;
    color: #4F5B6B;
    -webkit-transform:translate3d(0,-50%,0);
            transform:translate3d(0,-50%,0);
}
.counter-percent-text{
    margin-left: 4px;
    font-size: 1.8rem;
}
.counter canvas {
    position:absolute;
    top:0;
    left:0;
}









/****************** tooltips ******************/
.btn-tooltip{
    width: 20px; height: 20px;
    border-radius: 50%;
    color:#4D4D4D;
    padding:0;
    border:none;
}






/*********************** modal ****************************/
.modal-main-btns-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
}












/*********************************** main styles ************************/
.main-page-wrapper {
    position: relative;
    background: #F4F6F7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
}
.main-content-wrapper {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.container-v-center-outer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.container-v-center-inner{
    margin: auto;
}






/****************** others ****************************/
.main-logo{
    max-width: 360px;
    margin:0 auto;
}
.main-logo img{
    width: 100%;
}
.information-wrapper{
    text-align: center;
}


/************* data table **********************/
.data-table-wrapper{
    display: flex;
    flex-direction: column;
    gap:20px;
}
.data-table-header,
.data-table-row{
    display: flex;
    flex-direction: column;
    gap:10px;
}
.data-table-header{
    display: none;
    border-bottom: 1px solid #a3a3a3;
}
.data-table-row{
    text-align: center;
    border-bottom: 1px solid #a3a3a3;
}
.badge-status{
    min-width: 115px;
    font-size: 1rem;
  }












/**************************************** responsive breakpoints *********************************/
@media (min-width: 400px) {
    
}

@media (min-width: 480px) {
    
}


@media (min-width: 600px) {
    .information-wrapper{
        text-align: left;
    }
    .data-table-header,
    .data-table-row{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap:20px;
        text-align: left;
    }
    
}

@media (min-width: 640px) {
    
}

@media (min-width: 700px){
}

@media (min-width: 767px){
}

@media (min-width: 768px){
    
}

@media (min-width: 769px){
    

}

@media (min-width: 800px) {    

}

@media (min-width: 1000px) {
    
    
}

@media (min-width: 1200px) {

}

@media (min-width: 1366px) {

}


@media (min-width: 1400px) {
    
}

@media (min-width: 1800px) {
 
}

