
    /* ScrollBar Settings */
    
*::-webkit-scrollbar {
width: 6px;
height: 3px;
}
  *::-webkit-scrollbar-track {
  background: #212529;
  }
  *::-webkit-scrollbar-thumb {
  background-color: #5f5c60;
  border-radius: 10px;
  }

  /* All Settings */

body{
  overflow-x: hidden;
  background-color:white !important;
}
.center{
  padding-top: 59px;
  min-height:calc(100vh);
}

/* Color Filter */

.ik_bg_blue_one{
  background-color: #313D48;
}
.ik_bg_blue_two{
  background-color: #26333E;
}
.ik_bg_blue_three{
  background-color: #030D18;
}
.ik_bg_blue_four{
  background-color: hwb(211deg 2% 85% / 70%)!important;
}
.ik_clr_secondary{
  color: #dfdfdf;
}

 /* Includes */

.IKalert{
  display: none;
  position:fixed;
  bottom:-350px;
  right:-350px;
  width:60%; 
  border-radius:5px;
  transition: all 0.5s;
  padding: 15px;
  box-shadow: 0px 0px 5px white;
  z-index: 9999;
}
  @media only screen and (min-width:768px){ /* L */
    .IKalert{
        width: 400px; 
      }
  }
  @media only screen and (max-width:767px){ /* S */
    .IKalert{
        width:60%; 
      }
  }

.IKalertTopBar{
  display: none;
  position:fixed;
  width: 70%;
  padding: 15px;
  padding-left: 100px;
  padding-right: 100px;
  font-size: 20px;
  top: -100px;
  right: 15%;
  border-radius:5px;
  transition: all 0.5s;
  box-shadow: 0px 0px 5px white;
  z-index: 9999;
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items:center;
  justify-content:center;
  background-color: white;
  z-index: 999999999;
} 
  .loadingCenter{
    position: absolute;
    width: 200px;
    height: 200px;
    top: calc(50%- 100px);
    left: calc(50% - 100px);
    padding: 10px;
  }

#rightBottom{
  display: none;
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  right: 10px;
  background-color: #fff;
  border-radius: 10px;
  color: #182958;
  padding: 10px;
  max-width: 50px;
  z-index: 101;
  font-size: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transform: translateY(-50%);
}
#rightBottom:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
  transform: translateY(-50%) scale(1.05);
}
#leftBottom{
  width: 50px;
  height:50px;
  line-height: 50px;
  text-align: center;
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  font-size: 20px;
  border-radius: 50%;
  color: azure;
  z-index: 101;
}
  #leftBottom > i{
    background-color: #25D366;
  }

  /* ToolTips */

.tooltips {
  position: relative;
  }
  
.tooltips .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 1px 0;
  position: absolute;
  top: 0px;
  left: 110%;
  z-index: 1;
  }
  
.tooltips:hover .tooltiptext {
  visibility: visible;
}
.tooltips .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 100%; /* To the left of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
  }

  /* Display Important */

.importantNone{
  display: none!important;
}
.importantFlex{
  display: flex!important;
}
.importantBlock{
  display: block!important;
}

  /* Button Width */

.buttonWidth{
  position: relative;
  width: 87px;
}
.buttonWidth > .buttonTopIcon{
  position: absolute;
  top:-20px;
  left:calc(50% - 7px)
}

  /* Btn outline  */

.btn-outline-success-select{
  background-color:#198754;
  color:white;
}
.btn-outline-success-select:hover{
  background-color: transparent;
  color: #198754;
}
.btn-outline-primary-select{
  background-color:#0D6EFD;
  color:white;
}
.btn-outline-primary-select:hover{
  background-color: transparent;
  color: #0D6EFD;
}
.btn-outline-secondary-select{
  background-color:#6C757D;
  color:white;
}
.btn-outline-secondary-select:hover{
  background-color: transparent;
  color: #6C757D;
}

  /* Radius */

.borderRadiusTop{
  border-left: 20px solid white!important;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 36px 138px;
  border-right: 20px solid white!important;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 36px 138px;
}
.borderRadiusBottom{
  border-left: 20px solid white!important;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 36px 138px;
  border-right: 20px solid white!important;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 36px 138px;
}

 /* Extra Button */

.extraButton{
  cursor: pointer;
  min-width: 20%;
  width: auto;
  max-width: 200px;
  text-align: center;
  text-decoration: none;
  color: black;
  font-size: 10px;
  border: 1px solid grey;
  border-radius: 10px;
  padding: 4px;
  margin-top: 4px;
  margin-right: 2px;
}
.extraButton:hover{
  border: 1px solid black;
  background-color: #212529!important;
  color: white;
}
.extraButtonClosed{
  cursor: default;
  min-width: 100px;
  width: auto;
  max-width: 200px;
  text-align: center;
  text-decoration: none;
  background-color: #212529!important;
  color: white;
  font-size: 10px;
  border: 1px solid black;
  border-radius: 5px;
  padding: 4px;
  margin-top: 4px;
  margin-right: 2px;
}
.extraButtonClosed:hover{
  box-shadow: inset 0px 0px 10px #a19494;
  background-color: #212529!important;
  color: white;
}

  /* Rotating */

@keyframes rotating {
from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
@keyframes hourSpin {
  from {transform: rotate(0deg);}
  to {transform: rotate(-360deg);}
}
.hourSpin:hover{
    animation: hourSpin infinite; animation-duration: 700ms;
}

  /* col 1,5 */

@media only screen and (max-width:767px){ /* S */
  .col-1-5{
    width: calc(100%/8);
  }
}
