.white{
    color: #fff;
}

.height-card {
    height: calc(100% - 25px);
}

.pointer {
    cursor: pointer !important;
}
.form-otp {
    display: block;
    height: 55px;
    margin-right: 0.5rem;
    text-align: center;
    font-size: 1.25rem;
    min-width: 0;
}

.form-control-otp {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 5px;
    color: #495057;
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.6rem 0.85rem;
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    width: 100%;
}

.card-hover{
    transition: all 0.2s
}
.card-hover:hover{
    border-color: #ccc!important;
    background-color: #fafafa;
}

div.dt-container .dt-paging .dt-paging-button.current{
    color: #fff !important;
    background: #1a6fa3!important;
    border-color: #1a6fa3!important;
}
div.dt-container .dt-paging .dt-paging-button{
    color: #333 !important;
    background-color: #fff;
    border-color: #edf1f5!important;
    margin-left: 0!important;
}
div.dt-container .dt-paging .dt-paging-button:hover:not(.current){
    color: #1a6fa3 !important;
    background: #f7f7f7;
}
div.dt-container .dt-paging .dt-paging-button:hover:is(.current){
    color: #fff !important;
}
.previous {
    border-top-left-radius: 5px!important;
    border-bottom-left-radius: 5px!important;
  }

.next {
    border-top-right-radius: 5px!important;
    border-bottom-right-radius: 5px!important;
  }

.dt-paging-button.disabled{
  color: var(--default-text-color);
  background-color: #fff!important;
  border: 1px solid var(--default-border);
}

.dt-paging{
    margin-top:20px
}

.dt-paging > nav {
    display: flex;
    justify-content: end;
}

.dt-empty{
    padding-top: 13px !important;
    padding-bottom: 13px !important;
}
div.dt-container.dt-empty-footer tbody>tr:last-child>*{
    border-bottom: 1px solid var(--default-border) !important;
}
.required-input{
    color: rgb(240, 23, 85);
    font-weight: 600;
}

/* Loader */
.box-loader{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999;
}
.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #FFF #FFF transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  z-index: 999999999999999;
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #1a6fa3 #1a6fa3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.loader::before {
  width: 32px;
  height: 32px;
  border-color: #FFF #FFF transparent transparent;
  animation: rotation 1.5s linear infinite;
}
    
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
    
/* Loader */


@media screen and (min-width: 1399px){

}

@media screen and (max-width: 1199px){

}

@media screen and (max-width: 991px){

}

@media screen and (max-width: 767px) {

}

@media screen and (max-width: 575px) {
  .authentication .authentication-cover .aunthentication-cover-content {
    width: 100%;
    padding: 1rem;
  }
}